/*
* 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';
const initHtmlStyle = `
`;
@element('lit-check-box')
export class LitCheckBox extends BaseElement {
private checkbox: HTMLInputElement | undefined;
static get observedAttributes(): string[] {
return ['checked', 'value', 'disabled'];
}
set disabled(value) {
if (value === null || value === false) {
this.removeAttribute('disabled');
} else {
this.setAttribute('disabled', '');
}
}
get indeterminate(): boolean {
return this.checkbox!.indeterminate;
}
set indeterminate(value) {
if (value === null || value === false) {
this.checkbox!.indeterminate = false;
} else {
this.checkbox!.indeterminate = true;
}
}
get disabled(): boolean {
return this.getAttribute('disabled') !== null;
}
get checked(): boolean {
return this.getAttribute('checked') !== null;
}
set checked(boxCheck: boolean) {
if (boxCheck === null || !boxCheck) {
this.removeAttribute('checked');
} else {
this.setAttribute('checked', '');
}
}
get value(): string {
return this.getAttribute('value') || '';
}
set value(value: string) {
this.setAttribute('value', value);
}
initHtml(): string {
return `
${initHtmlStyle}
`;
}
initElements(): void {
this.checkbox = this.shadowRoot?.getElementById('checkbox') as HTMLInputElement;
}
connectedCallback(): void {
this.checkbox!.addEventListener('change', () => {
this.checked = this.checkbox!.checked;
let changeEvent: CustomEventInit = {
detail: {
checked: this.checked,
},
};
this.dispatchEvent(new CustomEvent('change', changeEvent));
});
}
attributeChangedCallback(name: string, oldValue: string, newValue: string): void {
if (name === 'checked' && this.checkbox) {
this.checkbox.checked = newValue !== null;
}
if (name === 'value') {
let slot = this.shadowRoot?.getElementById('slot');
slot!.textContent = newValue;
}
}
}
export interface LitCheckBoxChangeEvent {
checked: boolean;
}