You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
import {registerHTMLClass} from '../shared/register-html-class.js';
|
|
import {booleanAttribute} from '../shared/attributes.js';
|
|
|
|
import {HTMLElement} from './element.js';
|
|
import {NodeList} from '../interface/node-list.js';
|
|
|
|
const tagName = 'select';
|
|
|
|
/**
|
|
* @implements globalThis.HTMLSelectElement
|
|
*/
|
|
class HTMLSelectElement extends HTMLElement {
|
|
constructor(ownerDocument, localName = tagName) {
|
|
super(ownerDocument, localName);
|
|
}
|
|
|
|
get options() {
|
|
let children = new NodeList;
|
|
let {firstElementChild} = this;
|
|
while (firstElementChild) {
|
|
if (firstElementChild.tagName === 'OPTGROUP')
|
|
children.push(...firstElementChild.children);
|
|
else
|
|
children.push(firstElementChild);
|
|
firstElementChild = firstElementChild.nextElementSibling;
|
|
}
|
|
return children;
|
|
}
|
|
|
|
/* c8 ignore start */
|
|
get disabled() { return booleanAttribute.get(this, 'disabled'); }
|
|
set disabled(value) { booleanAttribute.set(this, 'disabled', value); }
|
|
|
|
get name() { return this.getAttribute('name'); }
|
|
set name(value) { this.setAttribute('name', value); }
|
|
/* c8 ignore stop */
|
|
|
|
get value() { return this.querySelector('option[selected]')?.value; }
|
|
}
|
|
|
|
registerHTMLClass(tagName, HTMLSelectElement);
|
|
|
|
export {HTMLSelectElement};
|
|
|