/*
* 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";
import {LitRadioGroup} from "./LitRadioGroup.js";
@element('lit-radio')
export class LitRadioBox extends BaseElement {
private group: LitRadioGroup | undefined | null
private parent: LitRadioGroup | undefined | null
private radio: HTMLInputElement | undefined | null
static get observedAttributes() {
return ['checked', 'value']
}
get checked() {
return this.getAttribute('checked') !== null;
}
set checked(value: boolean) {
if (value === null || !value) {
this.removeAttribute('checked');
} else {
this.setAttribute('checked', '');
}
}
get name() {
return this.getAttribute('name');
}
get value() {
let slot = this.shadowRoot?.getElementById("slot")
return slot!.textContent || this.textContent || "";
}
set value(value: string) {
this.setAttribute('value', value);
}
set dis(dis: string) {
this.setAttribute('dis', dis)
}
initHtml(): string {
return `
`;
}
initElements(): void {
this.radio = this.shadowRoot?.getElementById('radio') as HTMLInputElement;
}
connectedCallback() {
this.group = this.closest('lit-radio-group') as LitRadioGroup;
this.parent = this.group || this.getRootNode();
this.radio = this.shadowRoot?.getElementById('radio') as HTMLInputElement;
this.checked = this.checked;
this.radio.addEventListener('change', () => {
const selector = this.group ? `lit-radio[checked]` : `lit-radio[name="${this.name}"][checked]`;
const siblingNode = this.parent?.querySelector(selector) as LitRadioBox;
if (siblingNode) {
siblingNode.checked = false;
}
this.checked = true;
})
}
attributeChangedCallback(name: string, oldValue: string, newValue: string) {
if (name == 'checked' && this.radio) {
this.radio.checked = newValue !== null;
}
if (name == 'value') {
let slot = this.shadowRoot?.getElementById("slot")
slot!.textContent = newValue
}
}
}