/* * 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'; import { LitRadioGroup } from './LitRadioGroup'; const initHtmlStyle: string = ` `; @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(): string[] { return ['checked', 'value', 'disabled']; } get disabled(): boolean { return this.getAttribute('disabled') !== null; } get checked(): boolean { return this.getAttribute('checked') !== null; } get name(): string | null { return this.getAttribute('name'); } set checked(radioValue: boolean) { if (radioValue === null || !radioValue) { this.removeAttribute('checked'); } else { this.setAttribute('checked', ''); } } get value(): string { let slot = this.shadowRoot?.getElementById('slot'); return slot!.textContent || this.textContent || ''; } set disabled(value: boolean) { if (value === null || value === false) { this.removeAttribute('disabled'); } else { this.setAttribute('disabled', ''); } } set dis(dis: string) { this.setAttribute('dis', dis); } set value(value: string) { this.setAttribute('value', value); } initHtml(): string { return ` ${initHtmlStyle} `; } initElements(): void { this.radio = this.shadowRoot?.getElementById('radio') as HTMLInputElement; } connectedCallback(): void { 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): void { if (name === 'checked' && this.radio) { this.radio.checked = newValue !== null; } if (name === 'value') { let slot = this.shadowRoot?.getElementById('slot'); slot!.textContent = newValue; } } }