/*
* 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 '../../../base-ui/BaseElement';
import { LitCheckBox, LitCheckBoxChangeEvent } from '../../../base-ui/checkbox/LitCheckBox';
@element('check-des-box')
export class SpCheckDesBox extends BaseElement {
private _checkBox: LitCheckBox | undefined;
private _des: HTMLSpanElement | undefined;
static get observedAttributes(): string[] {
return ['checked', 'value', 'des', 'disabled'];
}
get disabled(): boolean {
return this.getAttribute('disabled') !== null;
}
set disabled(value) {
if (value === null || !value) {
this.removeAttribute('disabled');
} else {
this.setAttribute('disabled', '');
}
}
set des(des: string) {
this.setAttribute('des', des);
}
get value(): string {
return this.getAttribute('value') || '';
}
set value(value: string) {
this.setAttribute('value', value);
this._checkBox!.value = value;
}
get checked(): boolean {
return this.getAttribute('checked') !== null;
}
set checked(checked: boolean) {
if (checked) {
this.setAttribute('checked', 'true');
this._checkBox!.checked = true;
} else {
this.removeAttribute('checked');
this._checkBox!.checked = false;
}
}
initElements(): void {
this._checkBox = this.shadowRoot?.getElementById('checkBox') as LitCheckBox;
this._des = this.shadowRoot?.getElementById('des') as HTMLSpanElement;
}
initHtml(): string {
return `