-
Notifications
You must be signed in to change notification settings - Fork 0
/
decorators.ts
106 lines (78 loc) · 1.92 KB
/
decorators.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// @Component
// @Selector
// @useState("ola")
// types: class, property, method, parameter, acessor
// target is the class constructor
function Logger(prefix: string) {
return (target: any) => {
console.log(`${prefix} - ${target}`, );
}
}
@Logger("p")
class Foo {}
function setAPIVersion(apiVersion: string) {
return (target: any) => {
return class extends target {
version = apiVersion;
};
};
}
@setAPIVersion("3.0.0.0")
class API {}
console.log(new API());
// property decorator
function minLength(length: number) {
return (target: any, key: string | symbol) => {
let val = target[key]
const getter = () => val;
const setter = (value: string) => {
if (value.length < length) {
console.log("error");
} else {
val = value;
}
}
Object.defineProperty(target, key, {
get: getter,
set: setter
});
}
}
class Movie {
// validation for title with less than 5 words
@minLength(5)
title: string;
constructor(title: string) {
this.title = title;
}
}
const newMovie = new Movie("Interstellar");
console.log(newMovie.title);
// method decorator
// run every time the method is called, the class run in runtime
function delay(ms: number) {
return (target: any, key: string, descriptor: PropertyDescriptor) => {
// save the original method because after waiting we still using it
const originalMethod = descriptor.value;
descriptor.value = function (...args: any) {
console.log(`esperando ${ms} s ...`)
setTimeout(() => {
originalMethod.apply(this, args)
}, ms);
return descriptor;
}
}
}
class Greeter {
greeting: string;
constructor (greeting: string) {
this.greeting = greeting;
}
// the decorator wait for a time, then greets the person
@delay(1000)
greet() {
console.log(`Hello, ${this.greeting}`);
}
}
const person = new Greeter('person');
person.greet();