-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
64 lines (53 loc) · 1.22 KB
/
index.js
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
import { render } from 'lighterhtml';
export { html } from 'lighterhtml';
export class Component extends HTMLElement {
connectedCallback() {
this.update();
}
update() {
console.log('update');
render(this, this.render.bind(this));
}
render() {
return null;
}
}
export function State(stateObj) {
return function(C) {
return class extends C {
state = new Proxy(stateObj, {
set: (obj, prop, value) => {
if (obj[prop] === value) {
return false
}
obj[prop] = value;
this.update();
return true
}
});
}
}
}
export function Props(names) {
return function(C) {
return class extends C {
connectedCallback() {
this.props = names.reduce((acc, name) => {
acc[name] = this.getAttribute(name);
return acc;
}, {});
super.connectedCallback();
}
static get observedAttributes() {
return names;
}
attributeChangedCallback(name, oldVal, newVal) {
if (this.props && newVal !== oldVal) {
this.props[name] = newVal;
this.update();
}
}
}
}
}
export default (...args) => customElements.define(...args);