BookStack/resources/js/components/custom-checkbox.js

33 lines
982 B
JavaScript
Raw Normal View History

2022-11-15 12:44:57 +00:00
import {Component} from "./component";
2022-11-15 12:44:57 +00:00
export class CustomCheckbox extends Component {
2022-11-15 12:44:57 +00:00
setup() {
this.container = this.$el;
this.checkbox = this.container.querySelector('input[type=checkbox]');
this.display = this.container.querySelector('[role="checkbox"]');
this.checkbox.addEventListener('change', this.stateChange.bind(this));
2022-11-15 12:44:57 +00:00
this.container.addEventListener('keydown', this.onKeyDown.bind(this));
}
onKeyDown(event) {
2022-11-15 12:44:57 +00:00
const isEnterOrSpace = event.key === ' ' || event.key === 'Enter';
if (isEnterOrSpace) {
event.preventDefault();
this.toggle();
}
}
toggle() {
this.checkbox.checked = !this.checkbox.checked;
this.checkbox.dispatchEvent(new Event('change'));
this.stateChange();
}
stateChange() {
const checked = this.checkbox.checked ? 'true' : 'false';
this.display.setAttribute('aria-checked', checked);
}
2022-11-15 12:44:57 +00:00
}