Choices/src/scripts/components/wrapped-select.js

71 lines
1.7 KiB
JavaScript
Raw Normal View History

import WrappedElement from './wrapped-element';
/**
* @typedef {import('../../../types/index').Choices.ClassNames} ClassNames
* @typedef {import('../../../types/index').Choices.Item} Item
* @typedef {import('../../../types/index').Choices.Choice} Choice
*/
export default class WrappedSelect extends WrappedElement {
/**
* @param {{
* element: HTMLSelectElement,
* classNames: ClassNames,
* delimiter: string
* template: function
* }} args
*/
constructor({ element, classNames, template }) {
2018-05-21 18:01:03 +02:00
super({ element, classNames });
this.template = template;
}
2018-04-24 13:54:45 +02:00
get placeholderOption() {
return (
this.element.querySelector('option[value=""]') ||
// Backward compatibility layer for the non-standard placeholder attribute supported in older versions.
this.element.querySelector('option[placeholder]')
);
2017-10-18 09:43:56 +02:00
}
/**
* @returns {Element[]}
*/
2018-04-24 13:54:45 +02:00
get optionGroups() {
return Array.from(this.element.getElementsByTagName('OPTGROUP'));
2017-10-18 09:43:56 +02:00
}
/**
* @returns {Item[] | Choice[]}
*/
2018-04-24 13:54:45 +02:00
get options() {
return Array.from(this.element.options);
2017-10-18 09:43:56 +02:00
}
/**
* @param {Item[] | Choice[]} options
*/
2018-04-24 13:54:45 +02:00
set options(options) {
const fragment = document.createDocumentFragment();
const addOptionToFragment = data => {
// Create a standard select option
const option = this.template(data);
// Append it to fragment
fragment.appendChild(option);
};
// Add each list item to list
options.forEach(optionData => addOptionToFragment(optionData));
this.appendDocFragment(fragment);
}
/**
* @param {DocumentFragment} fragment
*/
appendDocFragment(fragment) {
this.element.innerHTML = '';
this.element.appendChild(fragment);
}
}