29 lines
849 B
JavaScript
29 lines
849 B
JavaScript
export default class extends HTMLElement {
|
|
connectedCallback () {
|
|
this.input.addEventListener('change', (event) => {
|
|
if (this.dataset.attribute) {
|
|
this.target[this.dataset.attribute] = event.target.checked
|
|
}
|
|
|
|
if (this.dataset.className) {
|
|
this.target.classList.toggle(this.dataset.className, event.target.value !== this.dataset.value)
|
|
if (this.dataset.className === 'hidden' && this.target.tagName === 'INPUT') {
|
|
this.target.disabled = event.target.value !== this.dataset.value
|
|
}
|
|
}
|
|
|
|
if (this.dataset.attribute === 'disabled') {
|
|
this.target.value = ''
|
|
}
|
|
})
|
|
}
|
|
|
|
get input () {
|
|
return this.querySelector('input[type="checkbox"]') || this.querySelector('select')
|
|
}
|
|
|
|
get target () {
|
|
return document.getElementById(this.dataset.targetId)
|
|
}
|
|
}
|