2022-01-04 23:38:10 +01:00
|
|
|
/**
|
|
|
|
* EGroupware eTemplate2 - Description WebComponent
|
|
|
|
*
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package api
|
|
|
|
* @link https://www.egroupware.org
|
|
|
|
* @author Nathan Gray
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
import {LionSelect} from "@lion/select";
|
|
|
|
import {Et2InputWidget} from "../Et2InputWidget/Et2InputWidget";
|
|
|
|
import {et2_readAttrWithDefault} from "../et2_core_xml";
|
2022-01-07 00:22:55 +01:00
|
|
|
import {css, html, render, repeat, TemplateResult} from "@lion/core";
|
2022-01-05 18:21:18 +01:00
|
|
|
import {cssImage} from "../Et2Widget/Et2Widget";
|
2022-01-13 23:28:52 +01:00
|
|
|
import {StaticOptions} from "./StaticOptions";
|
2022-01-04 23:38:10 +01:00
|
|
|
|
|
|
|
export interface SelectOption
|
|
|
|
{
|
2022-01-17 23:12:46 +01:00
|
|
|
value : string;
|
|
|
|
label : string;
|
2022-01-04 23:38:10 +01:00
|
|
|
// Hover help text
|
2022-01-17 23:12:46 +01:00
|
|
|
title? : string;
|
2022-01-05 18:21:18 +01:00
|
|
|
}
|
2022-01-04 23:38:10 +01:00
|
|
|
|
2022-01-07 00:22:55 +01:00
|
|
|
/**
|
2022-01-13 23:28:52 +01:00
|
|
|
* Base class for things that do selectbox type behaviour, to avoid putting too much or copying into read-only
|
|
|
|
* selectboxes, also for common handling of properties for more special selectboxes.
|
|
|
|
*
|
2022-01-07 00:22:55 +01:00
|
|
|
* LionSelect (and any other LionField) use slots to wrap a real DOM node. ET2 doesn't expect this,
|
|
|
|
* so we have to create the input node (via slots()) and respect that it is _external_ to the Web Component.
|
|
|
|
* This complicates things like adding the options, since we can't just override _inputGroupInputTemplate()
|
|
|
|
* and include them when rendering - the parent expects to find the <select> added via a slot, render() would
|
|
|
|
* put it inside the shadowDOM. That's fine, but then it doesn't get created until render(), and the parent
|
|
|
|
* (LionField) can't find it when it looks for it before then.
|
2022-01-13 23:28:52 +01:00
|
|
|
*
|
2022-01-07 00:22:55 +01:00
|
|
|
*/
|
2022-01-13 23:28:52 +01:00
|
|
|
export class Et2WidgetWithSelect extends Et2InputWidget(LionSelect)
|
2022-01-04 23:38:10 +01:00
|
|
|
{
|
|
|
|
protected _options : SelectOption[] = [];
|
|
|
|
|
|
|
|
static get properties()
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
...super.properties,
|
|
|
|
/**
|
|
|
|
* Textual label for first row, eg: 'All' or 'None'. It's value will be ''
|
|
|
|
*/
|
|
|
|
empty_label: String,
|
|
|
|
|
2022-01-13 23:28:52 +01:00
|
|
|
/**
|
|
|
|
* Select box options
|
|
|
|
*
|
|
|
|
* Will be found automatically based on ID and type, or can be set explicitly in the template using
|
|
|
|
* <option/> children, or using widget.set_select_options(SelectOption[])
|
|
|
|
*/
|
|
|
|
select_options: Object,
|
2022-01-04 23:38:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
constructor()
|
|
|
|
{
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the ID of the widget
|
|
|
|
*
|
|
|
|
* Overridden from parent to update select options
|
|
|
|
*
|
|
|
|
* @param {string} value
|
|
|
|
*/
|
|
|
|
set id(value)
|
|
|
|
{
|
|
|
|
let oldValue = this.id;
|
|
|
|
super.id = value;
|
|
|
|
if(value !== oldValue)
|
|
|
|
{
|
|
|
|
this.set_select_options(find_select_options(this));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the ID of the widget
|
|
|
|
* Overridden from parent because we overrode setter
|
|
|
|
*
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
get id()
|
|
|
|
{
|
|
|
|
return this._widget_id;
|
|
|
|
}
|
|
|
|
|
2022-01-07 22:13:38 +01:00
|
|
|
getValue()
|
|
|
|
{
|
|
|
|
return this.readOnly ? null : this.value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-04 23:38:10 +01:00
|
|
|
/**
|
|
|
|
* Set the select options
|
|
|
|
*
|
|
|
|
* @param {SelectOption[]} new_options
|
|
|
|
*/
|
2022-01-05 18:21:18 +01:00
|
|
|
set_select_options(new_options : SelectOption[] | { [key : string] : string })
|
2022-01-04 23:38:10 +01:00
|
|
|
{
|
|
|
|
if(!Array.isArray(new_options))
|
|
|
|
{
|
|
|
|
let fixed_options = [];
|
|
|
|
for(let key in new_options)
|
|
|
|
{
|
|
|
|
fixed_options.push({value: key, label: new_options[key]});
|
|
|
|
}
|
|
|
|
this._options = fixed_options;
|
|
|
|
}
|
2022-01-07 00:22:55 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
this._options = new_options;
|
|
|
|
}
|
2022-01-04 23:38:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
get_select_options()
|
|
|
|
{
|
|
|
|
return this._options;
|
|
|
|
}
|
|
|
|
|
2022-01-07 00:22:55 +01:00
|
|
|
_emptyLabelTemplate() : TemplateResult
|
2022-01-04 23:38:10 +01:00
|
|
|
{
|
2022-01-13 23:28:52 +01:00
|
|
|
return html`${this.empty_label}`;
|
2022-01-04 23:38:10 +01:00
|
|
|
}
|
|
|
|
|
2022-01-07 00:22:55 +01:00
|
|
|
_optionTemplate(option : SelectOption) : TemplateResult
|
2022-01-04 23:38:10 +01:00
|
|
|
{
|
2022-01-13 23:28:52 +01:00
|
|
|
return html``;
|
2022-01-04 23:38:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
loadFromXML(_node : Element)
|
|
|
|
{
|
|
|
|
// Read the option-tags
|
|
|
|
let options = _node.querySelectorAll("option");
|
|
|
|
let new_options = this._options;
|
2022-01-05 18:21:18 +01:00
|
|
|
for(let i = 0; i < options.length; i++)
|
2022-01-04 23:38:10 +01:00
|
|
|
{
|
|
|
|
new_options.push({
|
|
|
|
value: et2_readAttrWithDefault(options[i], "value", options[i].textContent),
|
|
|
|
// allow options to contain multiple translated sub-strings eg: {Firstname}.{Lastname}
|
|
|
|
label: options[i].textContent.replace(/{([^}]+)}/g, function(str, p1)
|
|
|
|
{
|
|
|
|
return this.egw().lang(p1);
|
|
|
|
}),
|
|
|
|
title: et2_readAttrWithDefault(options[i], "title", "")
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
this.set_select_options(new_options);
|
|
|
|
}
|
|
|
|
|
|
|
|
transformAttributes(_attrs)
|
|
|
|
{
|
|
|
|
super.transformAttributes(_attrs);
|
|
|
|
|
|
|
|
// If select_options are already known, skip the rest
|
|
|
|
if(this._options && this._options.length > 0 ||
|
|
|
|
_attrs.select_options && Object.keys(_attrs.select_options).length > 0 ||
|
|
|
|
// Allow children to skip select_options - check to make sure default got set to something (should be {})
|
|
|
|
typeof _attrs.select_options == 'undefined' || _attrs.select_options === null
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// do not return inside nextmatch, as get_rows data might have changed select_options
|
|
|
|
// for performance reasons we only do it for first row, which should have id "0[...]"
|
|
|
|
if(this.getParent() && this.getParent().getType() != 'rowWidget' || !_attrs.id || _attrs.id[0] != '0')
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let sel_options = find_select_options(this, _attrs['select_options'], _attrs);
|
|
|
|
if(sel_options.length > 0)
|
|
|
|
{
|
|
|
|
this.set_select_options(sel_options);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-13 23:28:52 +01:00
|
|
|
export class Et2Select extends Et2WidgetWithSelect
|
2022-01-04 23:38:10 +01:00
|
|
|
{
|
2022-01-13 23:28:52 +01:00
|
|
|
static get styles()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
...super.styles,
|
|
|
|
css`
|
|
|
|
:host {
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
select {
|
|
|
|
width: 100%
|
|
|
|
color: var(--input-text-color, #26537c);
|
|
|
|
border-radius: 3px;
|
|
|
|
flex: 1 0 auto;
|
|
|
|
padding-top: 4px;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
padding-right: 20px;
|
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: #e6e6e6;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
margin: 0;
|
|
|
|
background: #fff no-repeat center right;
|
|
|
|
background-image: ${cssImage('arrow_down')};
|
|
|
|
background-size: 8px auto;
|
|
|
|
background-position-x: calc(100% - 8px);
|
|
|
|
text-indent: 5px;
|
|
|
|
}
|
2022-01-04 23:38:10 +01:00
|
|
|
|
2022-01-13 23:28:52 +01:00
|
|
|
select:hover {
|
|
|
|
box-shadow: 1px 1px 1px rgb(0 0 0 / 60%);
|
|
|
|
}`
|
|
|
|
];
|
|
|
|
}
|
2022-01-04 23:38:10 +01:00
|
|
|
|
2022-01-13 23:28:52 +01:00
|
|
|
get slots()
|
2022-01-04 23:38:10 +01:00
|
|
|
{
|
2022-01-13 23:28:52 +01:00
|
|
|
return {
|
|
|
|
...super.slots,
|
|
|
|
input: () =>
|
|
|
|
{
|
|
|
|
return document.createElement("select");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
connectedCallback()
|
|
|
|
{
|
|
|
|
super.connectedCallback();
|
|
|
|
|
|
|
|
// Add in actual options as children to select, if not already there
|
|
|
|
if(this._inputNode.children.length == 0)
|
2022-01-04 23:38:10 +01:00
|
|
|
{
|
2022-01-13 23:28:52 +01:00
|
|
|
render(html`${this._emptyLabelTemplate()}
|
|
|
|
${repeat(this.get_select_options(), (option : SelectOption) => option.value, this._optionTemplate)}`,
|
|
|
|
this._inputNode
|
|
|
|
);
|
2022-01-04 23:38:10 +01:00
|
|
|
}
|
2022-01-13 23:28:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
set_select_options(new_options : SelectOption[] | { [p : string] : string })
|
|
|
|
{
|
|
|
|
super.set_select_options(new_options);
|
|
|
|
|
|
|
|
// Add in actual options as children to select
|
|
|
|
if(this._inputNode)
|
2022-01-04 23:38:10 +01:00
|
|
|
{
|
2022-01-13 23:28:52 +01:00
|
|
|
render(html`${this._emptyLabelTemplate()}
|
|
|
|
${repeat(this.get_select_options(), (option : SelectOption) => option.value, this._optionTemplate)}`,
|
|
|
|
this._inputNode
|
|
|
|
);
|
2022-01-04 23:38:10 +01:00
|
|
|
}
|
2022-01-13 23:28:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
_emptyLabelTemplate() : TemplateResult
|
|
|
|
{
|
|
|
|
if(!this.empty_label)
|
2022-01-04 23:38:10 +01:00
|
|
|
{
|
2022-01-13 23:28:52 +01:00
|
|
|
return html``;
|
2022-01-04 23:38:10 +01:00
|
|
|
}
|
2022-01-13 23:28:52 +01:00
|
|
|
return html`
|
|
|
|
<option value="">${this.empty_label}</option>`;
|
|
|
|
}
|
2022-01-04 23:38:10 +01:00
|
|
|
|
2022-01-13 23:28:52 +01:00
|
|
|
_optionTemplate(option : SelectOption) : TemplateResult
|
|
|
|
{
|
|
|
|
return html`
|
|
|
|
<option value="${option.value}" title="${option.title}">${option.label}</option>`;
|
2022-01-04 23:38:10 +01:00
|
|
|
}
|
2022-01-13 23:28:52 +01:00
|
|
|
}
|
2022-01-04 23:38:10 +01:00
|
|
|
|
2022-01-13 23:28:52 +01:00
|
|
|
/**
|
|
|
|
* Use a single StaticOptions, since it should have no state
|
|
|
|
* @type {StaticOptions}
|
|
|
|
*/
|
|
|
|
const so = new StaticOptions();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Find the select options for a widget, out of the many places they could be.
|
|
|
|
* @param {Et2Widget} widget to check for. Should be some sort of select widget.
|
|
|
|
* @param {object} attr_options Select options in attributes array
|
|
|
|
* @param {object} attrs Widget attributes
|
|
|
|
* @return {SelectOption[]} Select options, or empty array
|
|
|
|
*/
|
|
|
|
export function find_select_options(widget, attr_options?, attrs = {}) : SelectOption[]
|
|
|
|
{
|
|
|
|
let name_parts = widget.id.replace(/[/g, '[').replace(/]|]/g, '').split('[');
|
|
|
|
|
|
|
|
let type_options : SelectOption[] = [];
|
|
|
|
let content_options : SelectOption[] = [];
|
2022-01-04 23:38:10 +01:00
|
|
|
|
|
|
|
// Try to find the options inside the "sel-options"
|
|
|
|
if(widget.getArrayMgr("sel_options"))
|
|
|
|
{
|
|
|
|
// Try first according to ID
|
2022-01-05 18:21:18 +01:00
|
|
|
let options = widget.getArrayMgr("sel_options").getEntry(widget.id);
|
2022-01-04 23:38:10 +01:00
|
|
|
// ID can get set to an array with 0 => ' ' - not useful
|
2022-01-05 18:21:18 +01:00
|
|
|
if(options && (options.length == 1 && typeof options[0] == 'string' && options[0].trim() == '' ||
|
2022-01-04 23:38:10 +01:00
|
|
|
// eg. autorepeated id "cat[3]" would pick array element 3 from cat
|
2022-01-05 18:21:18 +01:00
|
|
|
typeof options.value != 'undefined' && typeof options.label != 'undefined' && widget.id.match(/\[\d+]$/)))
|
2022-01-04 23:38:10 +01:00
|
|
|
{
|
|
|
|
content_options = null;
|
|
|
|
}
|
2022-01-05 18:21:18 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
content_options = options;
|
|
|
|
}
|
2022-01-04 23:38:10 +01:00
|
|
|
// We could wind up too far inside options if label,title are defined
|
2022-01-05 18:21:18 +01:00
|
|
|
if(options && !isNaN(name_parts[name_parts.length - 1]) && options.label && options.title)
|
2022-01-04 23:38:10 +01:00
|
|
|
{
|
|
|
|
name_parts.pop();
|
|
|
|
content_options = widget.getArrayMgr("sel_options").getEntry(name_parts.join('['));
|
|
|
|
delete content_options["$row"];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Select options tend to be defined once, at the top level, so try that
|
|
|
|
if(!content_options || content_options.length == 0)
|
|
|
|
{
|
|
|
|
content_options = widget.getArrayMgr("sel_options").getRoot().getEntry(name_parts[name_parts.length - 1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try in correct namespace (inside a grid or something)
|
|
|
|
if(!content_options || content_options.length == 0)
|
|
|
|
{
|
|
|
|
content_options = widget.getArrayMgr("sel_options").getEntry(name_parts[name_parts.length - 1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try name like widget[$row]
|
|
|
|
if(name_parts.length > 1 && (!content_options || content_options.length == 0))
|
|
|
|
{
|
|
|
|
let pop_that = JSON.parse(JSON.stringify(name_parts));
|
|
|
|
while(pop_that.length > 1 && (!content_options || content_options.length == 0))
|
|
|
|
{
|
2022-01-05 18:21:18 +01:00
|
|
|
let last = pop_that.pop();
|
2022-01-04 23:38:10 +01:00
|
|
|
content_options = widget.getArrayMgr('sel_options').getEntry(pop_that.join('['));
|
|
|
|
|
|
|
|
// Double check, might have found a normal parent namespace ( eg subgrid in subgrid[selectbox] )
|
|
|
|
// with an empty entry for the selectbox. If there were valid options here,
|
|
|
|
// we would have found them already, and keeping this would result in the ID as an option
|
|
|
|
if(content_options && !Array.isArray(content_options) && typeof content_options[last] != 'undefined' && content_options[last])
|
|
|
|
{
|
|
|
|
content_options = content_options[last];
|
|
|
|
}
|
|
|
|
else if(content_options)
|
|
|
|
{
|
|
|
|
// Check for real values
|
2022-01-05 18:21:18 +01:00
|
|
|
for(let key in content_options)
|
2022-01-04 23:38:10 +01:00
|
|
|
{
|
|
|
|
if(!(isNaN(<number><unknown>key) && typeof content_options[key] === 'string' ||
|
|
|
|
!isNaN(<number><unknown>key) && typeof content_options[key] === 'object' && typeof content_options[key]['value'] !== 'undefined'))
|
|
|
|
{
|
|
|
|
// Found a parent of some other namespace
|
|
|
|
content_options = undefined;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Maybe in a row, and options got stuck in ${row} instead of top level
|
|
|
|
// not sure this code is still needed, as server-side no longer creates ${row} or {$row} for select-options
|
2022-01-05 18:21:18 +01:00
|
|
|
let row_stuck = ['${row}', '{$row}'];
|
2022-01-04 23:38:10 +01:00
|
|
|
for(let i = 0; i < row_stuck.length && (!content_options || content_options.length == 0); i++)
|
|
|
|
{
|
|
|
|
// perspectiveData.row in nm, data["${row}"] in an auto-repeat grid
|
|
|
|
if(widget.getArrayMgr("sel_options").perspectiveData.row || widget.getArrayMgr("sel_options").data[row_stuck[i]])
|
|
|
|
{
|
|
|
|
var row_id = widget.id.replace(/[0-9]+/, row_stuck[i]);
|
|
|
|
content_options = widget.getArrayMgr("sel_options").getEntry(row_id);
|
|
|
|
if(!content_options || content_options.length == 0)
|
|
|
|
{
|
|
|
|
content_options = widget.getArrayMgr("sel_options").getEntry(row_stuck[i] + '[' + widget.id + ']');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(attr_options && Object.keys(attr_options).length > 0 && content_options)
|
|
|
|
{
|
|
|
|
//content_options = jQuery.extend(true, {}, attr_options, content_options);
|
|
|
|
content_options = [...attr_options, ...content_options];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check whether the options entry was found, if not read it from the
|
|
|
|
// content array.
|
|
|
|
if(content_options && content_options.length > 0 && widget.getArrayMgr('content') != null)
|
|
|
|
{
|
|
|
|
if(content_options)
|
|
|
|
{
|
|
|
|
attr_options = content_options;
|
|
|
|
}
|
2022-01-05 18:21:18 +01:00
|
|
|
let content_mgr = widget.getArrayMgr('content');
|
2022-01-04 23:38:10 +01:00
|
|
|
if(content_mgr)
|
|
|
|
{
|
|
|
|
// If that didn't work, check according to ID
|
|
|
|
if(!content_options)
|
|
|
|
{
|
|
|
|
content_options = content_mgr.getEntry("options-" + widget.id);
|
|
|
|
}
|
|
|
|
// Again, try last name part at top level
|
|
|
|
if(!content_options)
|
|
|
|
{
|
|
|
|
content_options = content_mgr.getRoot().getEntry("options-" + name_parts[name_parts.length - 1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Default to an empty object
|
|
|
|
if(content_options == null)
|
|
|
|
{
|
|
|
|
content_options = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Include type options, preferring any content options
|
|
|
|
if(type_options.length || Object.keys(type_options).length > 0)
|
|
|
|
{
|
|
|
|
for(let i in content_options)
|
|
|
|
{
|
2022-01-05 18:21:18 +01:00
|
|
|
let value = typeof content_options[i] == 'object' && typeof content_options[i].value !== 'undefined' ? content_options[i].value : i;
|
|
|
|
let added = false;
|
2022-01-04 23:38:10 +01:00
|
|
|
|
|
|
|
// Override any existing
|
2022-01-05 18:21:18 +01:00
|
|
|
for(let j in type_options)
|
2022-01-04 23:38:10 +01:00
|
|
|
{
|
|
|
|
if('' + type_options[j].value === '' + value)
|
|
|
|
{
|
|
|
|
added = true;
|
|
|
|
type_options[j] = content_options[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!added)
|
|
|
|
{
|
2022-01-05 18:21:18 +01:00
|
|
|
type_options.splice(parseInt(i), 0, content_options[i]);
|
2022-01-04 23:38:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
content_options = type_options;
|
|
|
|
}
|
|
|
|
return content_options;
|
|
|
|
}
|
|
|
|
|
|
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
2022-01-13 23:28:52 +01:00
|
|
|
customElements.define("et2-select", Et2Select);
|
|
|
|
|
2022-01-17 23:12:46 +01:00
|
|
|
export class Et2SelectApp extends Et2Select
|
|
|
|
{
|
|
|
|
get_select_options() : SelectOption[]
|
|
|
|
{
|
|
|
|
return so.app(this, {other: this.other || []});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
|
|
|
customElements.define("et2-select-app", Et2SelectApp);
|
|
|
|
|
|
|
|
export class Et2SelectBitwise extends Et2Select
|
|
|
|
{
|
|
|
|
set value(new_value)
|
|
|
|
{
|
|
|
|
let oldValue = this._value;
|
|
|
|
let expanded_value = [];
|
|
|
|
let options = this.get_select_options();
|
|
|
|
for(let index in options)
|
|
|
|
{
|
|
|
|
let right = parseInt(options[index].value);
|
|
|
|
if(!!(new_value & right))
|
|
|
|
{
|
|
|
|
expanded_value.push(right);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this._value = expanded_value;
|
|
|
|
|
|
|
|
this.requestUpdate("value", oldValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
|
|
|
customElements.define("et2-select-bitwise", Et2SelectBitwise);
|
|
|
|
|
2022-01-13 23:28:52 +01:00
|
|
|
export class Et2SelectBool extends Et2Select
|
|
|
|
{
|
|
|
|
get_select_options() : SelectOption[]
|
|
|
|
{
|
|
|
|
return so.bool(this);
|
|
|
|
}
|
2022-01-17 23:12:46 +01:00
|
|
|
|
2022-01-13 23:28:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
|
|
|
customElements.define("et2-select-bool", Et2SelectBool);
|
|
|
|
|
2022-01-14 17:29:14 +01:00
|
|
|
export class Et2SelectCategory extends Et2Select
|
|
|
|
{
|
|
|
|
get_select_options() : SelectOption[]
|
|
|
|
{
|
2022-01-17 23:12:46 +01:00
|
|
|
return so.cat(this, {other: this.other || []});
|
2022-01-14 17:29:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
|
|
|
customElements.define("et2-select-cat", Et2SelectCategory);
|
|
|
|
|
2022-01-13 23:28:52 +01:00
|
|
|
export class Et2SelectPercent extends Et2Select
|
|
|
|
{
|
|
|
|
get_select_options() : SelectOption[]
|
|
|
|
{
|
|
|
|
return so.percent(this, {});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
2022-01-17 23:12:46 +01:00
|
|
|
customElements.define("et2-select-percent", Et2SelectPercent);
|
|
|
|
|
|
|
|
export class Et2SelectCountry extends Et2Select
|
|
|
|
{
|
|
|
|
get_select_options() : SelectOption[]
|
|
|
|
{
|
|
|
|
return so.country(this, {});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
|
|
|
customElements.define("et2-select-country", Et2SelectCountry);
|
|
|
|
|
|
|
|
export class Et2SelectDay extends Et2Select
|
|
|
|
{
|
|
|
|
get_select_options() : SelectOption[]
|
|
|
|
{
|
|
|
|
return so.day(this, {other: this.other || []});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
|
|
|
customElements.define("et2-select-day", Et2SelectDay);
|
|
|
|
|
|
|
|
export class Et2SelectDayOfWeek extends Et2Select
|
|
|
|
{
|
|
|
|
get_select_options() : SelectOption[]
|
|
|
|
{
|
|
|
|
return so.dow(this, {other: this.other || []});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
|
|
|
customElements.define("et2-select-dow", Et2SelectDayOfWeek);
|
|
|
|
|
|
|
|
export class Et2SelectHour extends Et2Select
|
|
|
|
{
|
|
|
|
get_select_options() : SelectOption[]
|
|
|
|
{
|
|
|
|
return so.hour(this, {other: this.other || []});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
|
|
|
customElements.define("et2-select-hour", Et2SelectHour);
|
|
|
|
|
|
|
|
export class Et2SelectMonth extends Et2Select
|
|
|
|
{
|
|
|
|
get_select_options() : SelectOption[]
|
|
|
|
{
|
|
|
|
return so.month(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
|
|
|
customElements.define("et2-select-month", Et2SelectMonth);
|
|
|
|
|
|
|
|
export class Et2SelectNumber extends Et2Select
|
|
|
|
{
|
|
|
|
get_select_options() : SelectOption[]
|
|
|
|
{
|
|
|
|
return so.number(this, {other: this.other || []});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
|
|
|
customElements.define("et2-select-number", Et2SelectNumber);
|
|
|
|
|
|
|
|
export class Et2SelectPriority extends Et2Select
|
|
|
|
{
|
|
|
|
get_select_options() : SelectOption[]
|
|
|
|
{
|
|
|
|
return so.priority(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
|
|
|
customElements.define("et2-select-priority", Et2SelectPriority);
|
|
|
|
|
|
|
|
export class Et2SelectState extends Et2Select
|
|
|
|
{
|
|
|
|
get_select_options() : SelectOption[]
|
|
|
|
{
|
|
|
|
return so.state(this, {other: this.other || []});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
|
|
|
customElements.define("et2-select-state", Et2SelectState);
|
|
|
|
|
|
|
|
export class Et2SelectTimezone extends Et2Select
|
|
|
|
{
|
|
|
|
get_select_options() : SelectOption[]
|
|
|
|
{
|
|
|
|
return so.timezone(this, {other: this.other || []});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
|
|
|
customElements.define("et2-select-timezone", Et2SelectTimezone);
|
|
|
|
|
|
|
|
export class Et2SelectYear extends Et2Select
|
|
|
|
{
|
|
|
|
get_select_options() : SelectOption[]
|
|
|
|
{
|
|
|
|
return so.year(this, {other: this.other || []});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
|
|
|
customElements.define("et2-select-year", Et2SelectYear);
|