2018-03-18 11:13:46 -04:00
|
|
|
|
|
|
|
class ToggleSwitch {
|
|
|
|
|
|
|
|
constructor(elem) {
|
|
|
|
this.elem = elem;
|
2019-02-02 10:49:57 -05:00
|
|
|
this.input = elem.querySelector('input[type=hidden]');
|
|
|
|
this.checkbox = elem.querySelector('input[type=checkbox]');
|
2018-03-18 11:13:46 -04:00
|
|
|
|
2019-06-04 05:45:44 -04:00
|
|
|
this.checkbox.addEventListener('change', this.stateChange.bind(this));
|
2018-03-18 11:13:46 -04:00
|
|
|
}
|
|
|
|
|
2019-06-04 05:45:44 -04:00
|
|
|
stateChange() {
|
|
|
|
this.input.value = (this.checkbox.checked ? 'true' : 'false');
|
2019-08-18 08:11:30 -04:00
|
|
|
|
|
|
|
// Dispatch change event from hidden input so they can be listened to
|
|
|
|
// like a normal checkbox.
|
|
|
|
const changeEvent = new Event('change');
|
|
|
|
this.input.dispatchEvent(changeEvent);
|
2018-03-18 11:13:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-11-09 16:17:35 -05:00
|
|
|
export default ToggleSwitch;
|