/*
* Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {BaseElement, element} from "../BaseElement.js";
@element('lit-check-box')
export class LitCheckBox extends BaseElement {
private checkbox: HTMLInputElement | undefined
static get observedAttributes() {
return ['checked', 'value']
}
get indeterminate() {
return this.checkbox!.indeterminate;
}
set indeterminate(value) {
if (value === null || value === false) {
this.checkbox!.indeterminate = false;
} else {
this.checkbox!.indeterminate = true;
}
}
get checked() {
return this.getAttribute('checked') !== null;
}
set checked(value: boolean) {
if (value === null || !value) {
this.removeAttribute('checked');
} else {
this.setAttribute('checked', '');
}
}
get value() {
return this.getAttribute('value') || '';
}
set value(value: string) {
this.setAttribute('value', value);
}
initHtml(): string {
return `
`;
}
initElements(): void {
this.checkbox = this.shadowRoot?.getElementById('checkbox') as HTMLInputElement;
}
connectedCallback() {
this.checkbox!.addEventListener('change', (ev) => {
this.checked = this.checkbox!.checked;
this.dispatchEvent(new CustomEvent("change", {
detail: {
"checked": this.checked
}
}))
})
}
attributeChangedCallback(name: string, oldValue: string, newValue: string) {
if (name == 'checked' && this.checkbox) {
this.checkbox.checked = newValue !== null;
}
if (name == 'value') {
let slot = this.shadowRoot?.getElementById("slot")
slot!.textContent = newValue
}
}
}