"use strict"; const conversions = require("webidl-conversions"); const utils = require("./utils.js"); const HTMLConstructor_helpers_html_constructor = require("../helpers/html-constructor.js").HTMLConstructor; const isHTMLOptionElement = require("./HTMLOptionElement.js").is; const isHTMLOptGroupElement = require("./HTMLOptGroupElement.js").is; const isHTMLElement = require("./HTMLElement.js").is; const ceReactionsPreSteps_helpers_custom_elements = require("../helpers/custom-elements.js").ceReactionsPreSteps; const ceReactionsPostSteps_helpers_custom_elements = require("../helpers/custom-elements.js").ceReactionsPostSteps; const convertHTMLOptionElement = require("./HTMLOptionElement.js").convert; const impl = utils.implSymbol; const ctorRegistry = utils.ctorRegistrySymbol; const HTMLElement = require("./HTMLElement.js"); const interfaceName = "HTMLSelectElement"; /** * When an interface-module that implements this interface as a mixin is loaded, it will append its own `.is()` * method into this array. It allows objects that directly implements *those* interfaces to be recognized as * implementing this mixin interface. */ exports._mixedIntoPredicates = []; exports.is = function is(obj) { if (obj) { if (utils.hasOwn(obj, impl) && obj[impl] instanceof Impl.implementation) { return true; } for (const isMixedInto of exports._mixedIntoPredicates) { if (isMixedInto(obj)) { return true; } } } return false; }; exports.isImpl = function isImpl(obj) { if (obj) { if (obj instanceof Impl.implementation) { return true; } const wrapper = utils.wrapperForImpl(obj); for (const isMixedInto of exports._mixedIntoPredicates) { if (isMixedInto(wrapper)) { return true; } } } return false; }; exports.convert = function convert(obj, { context = "The provided value" } = {}) { if (exports.is(obj)) { return utils.implForWrapper(obj); } throw new TypeError(`${context} is not of type 'HTMLSelectElement'.`); }; exports.create = function create(globalObject, constructorArgs, privateData) { if (globalObject[ctorRegistry] === undefined) { throw new Error("Internal error: invalid global object"); } const ctor = globalObject[ctorRegistry]["HTMLSelectElement"]; if (ctor === undefined) { throw new Error("Internal error: constructor HTMLSelectElement is not installed on the passed global object"); } let obj = Object.create(ctor.prototype); obj = exports.setup(obj, globalObject, constructorArgs, privateData); return obj; }; exports.createImpl = function createImpl(globalObject, constructorArgs, privateData) { const obj = exports.create(globalObject, constructorArgs, privateData); return utils.implForWrapper(obj); }; exports._internalSetup = function _internalSetup(obj) { HTMLElement._internalSetup(obj); }; exports.setup = function setup(obj, globalObject, constructorArgs = [], privateData = {}) { privateData.wrapper = obj; exports._internalSetup(obj); Object.defineProperty(obj, impl, { value: new Impl.implementation(globalObject, constructorArgs, privateData), configurable: true }); { let proxyHandler = proxyHandlerCache.get(globalObject); if (proxyHandler === undefined) { proxyHandler = new ProxyHandler(globalObject); proxyHandlerCache.set(globalObject, proxyHandler); } obj = new Proxy(obj, proxyHandler); } obj[impl][utils.wrapperSymbol] = obj; if (Impl.init) { Impl.init(obj[impl], privateData); } return obj; }; exports.install = function install(globalObject) { if (globalObject.HTMLElement === undefined) { throw new Error("Internal error: attempting to evaluate HTMLSelectElement before HTMLElement"); } class HTMLSelectElement extends globalObject.HTMLElement { constructor() { return HTMLConstructor_helpers_html_constructor(globalObject, interfaceName, new.target); } item(index) { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } if (arguments.length < 1) { throw new TypeError( "Failed to execute 'item' on 'HTMLSelectElement': 1 argument required, but only " + arguments.length + " present." ); } const args = []; { let curArg = arguments[0]; curArg = conversions["unsigned long"](curArg, { context: "Failed to execute 'item' on 'HTMLSelectElement': parameter 1" }); args.push(curArg); } return utils.tryWrapperForImpl(this[impl].item(...args)); } namedItem(name) { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } if (arguments.length < 1) { throw new TypeError( "Failed to execute 'namedItem' on 'HTMLSelectElement': 1 argument required, but only " + arguments.length + " present." ); } const args = []; { let curArg = arguments[0]; curArg = conversions["DOMString"](curArg, { context: "Failed to execute 'namedItem' on 'HTMLSelectElement': parameter 1" }); args.push(curArg); } return utils.tryWrapperForImpl(this[impl].namedItem(...args)); } add(element) { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } if (arguments.length < 1) { throw new TypeError( "Failed to execute 'add' on 'HTMLSelectElement': 1 argument required, but only " + arguments.length + " present." ); } const args = []; { let curArg = arguments[0]; if (isHTMLOptionElement(curArg) || isHTMLOptGroupElement(curArg)) { curArg = utils.implForWrapper(curArg); } else { throw new TypeError( "Failed to execute 'add' on 'HTMLSelectElement': parameter 1" + " is not of any supported type." ); } args.push(curArg); } { let curArg = arguments[1]; if (curArg !== undefined) { if (curArg === null || curArg === undefined) { curArg = null; } else { if (isHTMLElement(curArg)) { curArg = utils.implForWrapper(curArg); } else if (typeof curArg === "number") { curArg = conversions["long"](curArg, { context: "Failed to execute 'add' on 'HTMLSelectElement': parameter 2" }); } else { curArg = conversions["long"](curArg, { context: "Failed to execute 'add' on 'HTMLSelectElement': parameter 2" }); } } } else { curArg = null; } args.push(curArg); } ceReactionsPreSteps_helpers_custom_elements(globalObject); try { return this[impl].add(...args); } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } remove() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } const args = []; switch (arguments.length) { case 0: break; default: { let curArg = arguments[0]; curArg = conversions["long"](curArg, { context: "Failed to execute 'remove' on 'HTMLSelectElement': parameter 1" }); args.push(curArg); } } ceReactionsPreSteps_helpers_custom_elements(globalObject); try { return this[impl].remove(...args); } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } checkValidity() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } return this[impl].checkValidity(); } reportValidity() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } return this[impl].reportValidity(); } setCustomValidity(error) { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } if (arguments.length < 1) { throw new TypeError( "Failed to execute 'setCustomValidity' on 'HTMLSelectElement': 1 argument required, but only " + arguments.length + " present." ); } const args = []; { let curArg = arguments[0]; curArg = conversions["DOMString"](curArg, { context: "Failed to execute 'setCustomValidity' on 'HTMLSelectElement': parameter 1" }); args.push(curArg); } return this[impl].setCustomValidity(...args); } get autofocus() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } ceReactionsPreSteps_helpers_custom_elements(globalObject); try { return this[impl].hasAttributeNS(null, "autofocus"); } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } set autofocus(V) { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } V = conversions["boolean"](V, { context: "Failed to set the 'autofocus' property on 'HTMLSelectElement': The provided value" }); ceReactionsPreSteps_helpers_custom_elements(globalObject); try { if (V) { this[impl].setAttributeNS(null, "autofocus", ""); } else { this[impl].removeAttributeNS(null, "autofocus"); } } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } get disabled() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } ceReactionsPreSteps_helpers_custom_elements(globalObject); try { return this[impl].hasAttributeNS(null, "disabled"); } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } set disabled(V) { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } V = conversions["boolean"](V, { context: "Failed to set the 'disabled' property on 'HTMLSelectElement': The provided value" }); ceReactionsPreSteps_helpers_custom_elements(globalObject); try { if (V) { this[impl].setAttributeNS(null, "disabled", ""); } else { this[impl].removeAttributeNS(null, "disabled"); } } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } get form() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } return utils.tryWrapperForImpl(this[impl]["form"]); } get multiple() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } ceReactionsPreSteps_helpers_custom_elements(globalObject); try { return this[impl].hasAttributeNS(null, "multiple"); } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } set multiple(V) { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } V = conversions["boolean"](V, { context: "Failed to set the 'multiple' property on 'HTMLSelectElement': The provided value" }); ceReactionsPreSteps_helpers_custom_elements(globalObject); try { if (V) { this[impl].setAttributeNS(null, "multiple", ""); } else { this[impl].removeAttributeNS(null, "multiple"); } } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } get name() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } ceReactionsPreSteps_helpers_custom_elements(globalObject); try { const value = this[impl].getAttributeNS(null, "name"); return value === null ? "" : value; } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } set name(V) { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } V = conversions["DOMString"](V, { context: "Failed to set the 'name' property on 'HTMLSelectElement': The provided value" }); ceReactionsPreSteps_helpers_custom_elements(globalObject); try { this[impl].setAttributeNS(null, "name", V); } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } get required() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } ceReactionsPreSteps_helpers_custom_elements(globalObject); try { return this[impl].hasAttributeNS(null, "required"); } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } set required(V) { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } V = conversions["boolean"](V, { context: "Failed to set the 'required' property on 'HTMLSelectElement': The provided value" }); ceReactionsPreSteps_helpers_custom_elements(globalObject); try { if (V) { this[impl].setAttributeNS(null, "required", ""); } else { this[impl].removeAttributeNS(null, "required"); } } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } get size() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } ceReactionsPreSteps_helpers_custom_elements(globalObject); try { const value = parseInt(this[impl].getAttributeNS(null, "size")); return isNaN(value) || value < 0 || value > 2147483647 ? 0 : value; } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } set size(V) { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } V = conversions["unsigned long"](V, { context: "Failed to set the 'size' property on 'HTMLSelectElement': The provided value" }); ceReactionsPreSteps_helpers_custom_elements(globalObject); try { this[impl].setAttributeNS(null, "size", String(V > 2147483647 ? 0 : V)); } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } get type() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } return this[impl]["type"]; } get options() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } return utils.getSameObject(this, "options", () => { return utils.tryWrapperForImpl(this[impl]["options"]); }); } get length() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } ceReactionsPreSteps_helpers_custom_elements(globalObject); try { return this[impl]["length"]; } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } set length(V) { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } V = conversions["unsigned long"](V, { context: "Failed to set the 'length' property on 'HTMLSelectElement': The provided value" }); ceReactionsPreSteps_helpers_custom_elements(globalObject); try { this[impl]["length"] = V; } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } get selectedOptions() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } return utils.getSameObject(this, "selectedOptions", () => { return utils.tryWrapperForImpl(this[impl]["selectedOptions"]); }); } get selectedIndex() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } return this[impl]["selectedIndex"]; } set selectedIndex(V) { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } V = conversions["long"](V, { context: "Failed to set the 'selectedIndex' property on 'HTMLSelectElement': The provided value" }); this[impl]["selectedIndex"] = V; } get value() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } return this[impl]["value"]; } set value(V) { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } V = conversions["DOMString"](V, { context: "Failed to set the 'value' property on 'HTMLSelectElement': The provided value" }); this[impl]["value"] = V; } get willValidate() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } return this[impl]["willValidate"]; } get validity() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } return utils.tryWrapperForImpl(this[impl]["validity"]); } get validationMessage() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } return this[impl]["validationMessage"]; } get labels() { if (!this || !exports.is(this)) { throw new TypeError("Illegal invocation"); } return utils.tryWrapperForImpl(this[impl]["labels"]); } } Object.defineProperties(HTMLSelectElement.prototype, { item: { enumerable: true }, namedItem: { enumerable: true }, add: { enumerable: true }, remove: { enumerable: true }, checkValidity: { enumerable: true }, reportValidity: { enumerable: true }, setCustomValidity: { enumerable: true }, autofocus: { enumerable: true }, disabled: { enumerable: true }, form: { enumerable: true }, multiple: { enumerable: true }, name: { enumerable: true }, required: { enumerable: true }, size: { enumerable: true }, type: { enumerable: true }, options: { enumerable: true }, length: { enumerable: true }, selectedOptions: { enumerable: true }, selectedIndex: { enumerable: true }, value: { enumerable: true }, willValidate: { enumerable: true }, validity: { enumerable: true }, validationMessage: { enumerable: true }, labels: { enumerable: true }, [Symbol.toStringTag]: { value: "HTMLSelectElement", configurable: true }, [Symbol.iterator]: { value: Array.prototype[Symbol.iterator], configurable: true, writable: true } }); if (globalObject[ctorRegistry] === undefined) { globalObject[ctorRegistry] = Object.create(null); } globalObject[ctorRegistry][interfaceName] = HTMLSelectElement; Object.defineProperty(globalObject, interfaceName, { configurable: true, writable: true, value: HTMLSelectElement }); }; const proxyHandlerCache = new WeakMap(); class ProxyHandler { constructor(globalObject) { this._globalObject = globalObject; } get(target, P, receiver) { if (typeof P === "symbol") { return Reflect.get(target, P, receiver); } const desc = this.getOwnPropertyDescriptor(target, P); if (desc === undefined) { const parent = Object.getPrototypeOf(target); if (parent === null) { return undefined; } return Reflect.get(target, P, receiver); } if (!desc.get && !desc.set) { return desc.value; } const getter = desc.get; if (getter === undefined) { return undefined; } return Reflect.apply(getter, receiver, []); } has(target, P) { if (typeof P === "symbol") { return Reflect.has(target, P); } const desc = this.getOwnPropertyDescriptor(target, P); if (desc !== undefined) { return true; } const parent = Object.getPrototypeOf(target); if (parent !== null) { return Reflect.has(parent, P); } return false; } ownKeys(target) { const keys = new Set(); for (const key of target[impl][utils.supportedPropertyIndices]) { keys.add(`${key}`); } for (const key of Reflect.ownKeys(target)) { keys.add(key); } return [...keys]; } getOwnPropertyDescriptor(target, P) { if (typeof P === "symbol") { return Reflect.getOwnPropertyDescriptor(target, P); } let ignoreNamedProps = false; if (utils.isArrayIndexPropName(P)) { const index = P >>> 0; const indexedValue = target[impl].item(index); if (indexedValue !== null) { return { writable: true, enumerable: true, configurable: true, value: utils.tryWrapperForImpl(indexedValue) }; } ignoreNamedProps = true; } return Reflect.getOwnPropertyDescriptor(target, P); } set(target, P, V, receiver) { if (typeof P === "symbol") { return Reflect.set(target, P, V, receiver); } if (target === receiver) { const globalObject = this._globalObject; if (utils.isArrayIndexPropName(P)) { const index = P >>> 0; let indexedValue = V; if (indexedValue === null || indexedValue === undefined) { indexedValue = null; } else { indexedValue = convertHTMLOptionElement(indexedValue, { context: "Failed to set the " + index + " property on 'HTMLSelectElement': The provided value" }); } ceReactionsPreSteps_helpers_custom_elements(globalObject); try { const creating = !(target[impl].item(index) !== null); if (creating) { target[impl][utils.indexedSetNew](index, indexedValue); } else { target[impl][utils.indexedSetExisting](index, indexedValue); } } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } return true; } } let ownDesc; if (utils.isArrayIndexPropName(P)) { const index = P >>> 0; const indexedValue = target[impl].item(index); if (indexedValue !== null) { ownDesc = { writable: true, enumerable: true, configurable: true, value: utils.tryWrapperForImpl(indexedValue) }; } } if (ownDesc === undefined) { ownDesc = Reflect.getOwnPropertyDescriptor(target, P); } if (ownDesc === undefined) { const parent = Reflect.getPrototypeOf(target); if (parent !== null) { return Reflect.set(parent, P, V, receiver); } ownDesc = { writable: true, enumerable: true, configurable: true, value: undefined }; } if (!ownDesc.writable) { return false; } if (!utils.isObject(receiver)) { return false; } const existingDesc = Reflect.getOwnPropertyDescriptor(receiver, P); let valueDesc; if (existingDesc !== undefined) { if (existingDesc.get || existingDesc.set) { return false; } if (!existingDesc.writable) { return false; } valueDesc = { value: V }; } else { valueDesc = { writable: true, enumerable: true, configurable: true, value: V }; } return Reflect.defineProperty(receiver, P, valueDesc); } defineProperty(target, P, desc) { if (typeof P === "symbol") { return Reflect.defineProperty(target, P, desc); } const globalObject = this._globalObject; if (utils.isArrayIndexPropName(P)) { if (desc.get || desc.set) { return false; } const index = P >>> 0; let indexedValue = desc.value; if (indexedValue === null || indexedValue === undefined) { indexedValue = null; } else { indexedValue = convertHTMLOptionElement(indexedValue, { context: "Failed to set the " + index + " property on 'HTMLSelectElement': The provided value" }); } ceReactionsPreSteps_helpers_custom_elements(globalObject); try { const creating = !(target[impl].item(index) !== null); if (creating) { target[impl][utils.indexedSetNew](index, indexedValue); } else { target[impl][utils.indexedSetExisting](index, indexedValue); } } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } return true; } return Reflect.defineProperty(target, P, desc); } deleteProperty(target, P) { if (typeof P === "symbol") { return Reflect.deleteProperty(target, P); } const globalObject = this._globalObject; if (utils.isArrayIndexPropName(P)) { const index = P >>> 0; return !(target[impl].item(index) !== null); } return Reflect.deleteProperty(target, P); } preventExtensions() { return false; } } const Impl = require("../nodes/HTMLSelectElement-impl.js");