-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.ts
55 lines (50 loc) · 1.21 KB
/
index.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
import { forceUpdate } from '@stencil/core'
/**
* Extended version of https://gist.github.com/RomkeVdMeulen/e45ee89ce848e7fda140635a4d29892b#file-prop-decorator-ts
* @param prototype
* @param key
* @param mapper
*/
function makePropertyMapper<T>(prototype: any, key: string, mapper: (value: any, instance: any) => T) {
const values = new Map<any, T>();
Object.defineProperty(prototype, key, {
set(firstValue: any) {
Object.defineProperty(this, key, {
get() {
return values.get(this);
},
set(value: any) {
values.set(this, mapper(value, this));
},
enumerable: true,
});
this[key] = firstValue;
},
enumerable: true,
configurable: true
});
}
/**
* Reflect decorator
* @param target
* @param key
*/
export function reflect(target: any, key: string): void {
makePropertyMapper(target, key, (value: number, instance) => {
if(!instance.el)
throw new Error('Missing property `el` on class');
// detect change
if(instance[key] !== value){
forceUpdate(instance.el);
}
return value;
});
}
/**
* Reflector class to extend (provides this.el)
*/
export class Reflector {
constructor(public el: HTMLElement, doc?: object){
if(doc) Object.assign(this, doc);
}
}