-
Notifications
You must be signed in to change notification settings - Fork 0
/
11_decorators.ts
104 lines (80 loc) · 1.86 KB
/
11_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
// @Component
// @Selector
// @userState("dasdada")
// Factory
function Logger(prefix: string) {
return (target: any) => {
console.log(`${prefix} - ${target}`);
}
}
@Logger("awesome")
class Foo {}
//// Class decorator
function setAPIVersion(apiVersion: string) {
return (constructor: any) => {
return class extends constructor {
version = apiVersion;
}
}
}
// decorator - anorar a versão da API/
@setAPIVersion("2.0.0")
class API {}
console.log(new API());
//// Property decorator
function minLength(length: number) {
return (target: any, key: string) => {
let val = target[key]
const getter = () => val;
const setter = (value: string) => {
if(value.length < length) {
console.log(`Error: você não pode criar ${key} com tamanho menor que ${length}`)
} else {
val = value
}
}
Object.defineProperty(target, key, {
get: getter,
set: setter,
});
};
}
class Movie {
// validação - se for menor que 5 error
@minLength(50)
title: string;
constructor(t: string) {
this.title = t
}
}
const movie = new Movie("Interstellar");
console.log(movie);
//// Method decorator
function delay(ms: number) {
return (target: any, key: string, descriptor: PropertyDescriptor) => {
const originalMethod = descriptor.value;
descriptor.value = function (...args: any) {
console.log(`Esperando ${ms}...`);
setTimeout(() => {
originalMethod.apply(this, args)
}, ms);
return descriptor;
}
}
}
class Greeter {
greeting: string;
constructor(g: string) {
this.greeting = g;
}
// esperar um temoo e ai vai rodar o método ms
// @debounce(2000)
@delay(2000)
greet() {
console.log(`Hello ${this.greeting}`);
}
}
const pessoinha = new Greeter("Pessoainha");
pessoinha.greet();
//// Parameter decorator
//// Acessor decorator