generated from mirisuzanne/web-component-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
switch-control.js
133 lines (101 loc) · 2.87 KB
/
switch-control.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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
import GroundControl from "./ground-control.js";
export default class SwitchControl extends GroundControl {
static register(tagName) {
if ("customElements" in window) {
customElements.define(tagName || "switch-control", SwitchControl);
}
};
static observedAttributes = [
...super.observedAttributes,
'data-on',
'data-id',
];
#toggle;
target;
onPress;
onUnPress;
get toggle() { return this.#toggle; };
set toggle(el) {
if (!el) throw 'A toggle is required';
if (el.tagName !== 'BUTTON') throw 'The toggle must be a button';
if (this.#toggle) this.#removeToggleListener(this.#toggle);
el.setAttribute('type', 'button');
if (!el.hasAttribute('aria-pressed')) {
el.setAttribute('aria-pressed', 'false');
}
this.#toggle = el;
if (!this.dataset.on) {
this.dataset.on = el.dataset.value || el.innerText;
}
this.initialValue = this.pressedValue;
this.#addToggleListener(el);
if (el.id) this.inputId = el.id;
this.hasInput = true;
};
get pressed() {
return this.toggle.getAttribute('aria-pressed') === 'true';
};
set pressed(to) {
this.toggle.setAttribute('aria-pressed', to ? 'true' : 'false');
};
get pressedValue() {
return this.pressed
? this.dataset.on
: this.dataset.off || 'false';
};
constructor() {
super();
};
attributeChangedCallback(name, oldValue, newValue) {
super.attributeChangedCallback(name, oldValue, newValue);
switch (name) {
case 'data-id':
this.#findToggle();
break;
}
this.setValueToPressed();
};
connectedCallback() {
super.connectedCallback();
this.#findToggle();
if (this.storedValue) {
this.pressed = this.#isPressedValue(this.storedValue);
}
this.setValueToPressed();
};
disconnectedCallback() {
this.#removeToggleListener(this.toggle);
};
onTogglePress = () => {
this.pressed = !this.pressed;
this.setValueToPressed();
};
setValueToPressed = () => {
if (!this.toggle) return;
this.value = this.pressedValue;
this.doToggleActions();
}
doToggleActions = () => {
if (this.pressed && this.onPress) this.onPress();
if (!this.pressed && this.onUnPress) this.onUnPress();
};
onValueChange = () => {
if (this.value === this.pressedValue) return;
this.pressed = this.#isPressedValue(this.value);
this.doToggleActions();
};
#isPressedValue = (value) => this.dataset.on === value;
#findToggle = () => {
const foundToggle = this.dataset.id
? this.querySelector(`button[id='${this.dataset.id}']`)
: this.querySelector('button');
this.toggle = foundToggle;
};
#addToggleListener = (el) => {
el.addEventListener('click', this.onTogglePress);
};
#removeToggleListener = (el) => {
el.removeEventListener('click', this.onTogglePress);
};
}
SwitchControl.register();