forked from extern/egroupware
147 lines
3.1 KiB
TypeScript
147 lines
3.1 KiB
TypeScript
/**
|
|
* EGroupware eTemplate2 - Select Category 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 {css, PropertyValues} from "@lion/core";
|
|
import {Et2Select} from "./Et2Select";
|
|
import {StaticOptions} from "./StaticOptions";
|
|
|
|
/**
|
|
* Customised Select widget for categories
|
|
* This widget gives us category colors and icons in the options and selected value.
|
|
*/
|
|
export class Et2SelectCategory extends Et2Select
|
|
{
|
|
static get styles()
|
|
{
|
|
return [
|
|
...super.styles,
|
|
css`
|
|
/* Category color on options */
|
|
::slotted(*) {
|
|
border-left: 6px solid var(--category-color, transparent);
|
|
}
|
|
/* Border on the (single) selected value */
|
|
.select--standard .select__control {
|
|
border-left: 8px solid transparent;
|
|
}
|
|
`
|
|
]
|
|
}
|
|
|
|
static get properties()
|
|
{
|
|
return {
|
|
...super.properties,
|
|
/**
|
|
* Include global categories
|
|
*/
|
|
global_categories: {type: Boolean},
|
|
/**
|
|
* Show categories from this application. If not set, will be the current application
|
|
*/
|
|
application: {type: String},
|
|
/**
|
|
* Show categories below this parent category
|
|
*/
|
|
parent_cat: {type: Number}
|
|
}
|
|
}
|
|
|
|
constructor()
|
|
{
|
|
super();
|
|
|
|
this.select_options = so.cat(this);
|
|
}
|
|
|
|
connectedCallback()
|
|
{
|
|
super.connectedCallback();
|
|
|
|
if(typeof this.application == 'undefined')
|
|
{
|
|
this.application =
|
|
// When the widget is first created, it doesn't have a parent and can't find it's instanceManager
|
|
(this.getInstanceManager() && this.getInstanceManager().app) ||
|
|
this.egw().app_name();
|
|
}
|
|
}
|
|
|
|
|
|
updated(changedProperties : PropertyValues)
|
|
{
|
|
super.updated(changedProperties);
|
|
|
|
if(changedProperties.has("value"))
|
|
{
|
|
this.doLabelChange()
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Override from parent (SlSelect) to customise display of the current value.
|
|
* Here's where we add the icon & color border
|
|
*/
|
|
doLabelChange()
|
|
{
|
|
// Update the display label when checked menu item's label changes
|
|
if(this.multiple)
|
|
{
|
|
return;
|
|
}
|
|
|
|
const checkedItem = this.menuItems.find(item => item.value === this.value);
|
|
this.displayLabel = checkedItem ? checkedItem.textContent : '';
|
|
this.querySelector("[slot=prefix].tag_image")?.remove();
|
|
if(checkedItem)
|
|
{
|
|
let image = this._createImage(checkedItem)
|
|
if(image)
|
|
{
|
|
this.append(image);
|
|
}
|
|
this.dropdown.querySelector(".select__control").style.borderColor =
|
|
getComputedStyle(checkedItem).getPropertyValue("--category-color") || "transparent";
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Use a custom tag for when multiple=true
|
|
*
|
|
* @returns {string}
|
|
*/
|
|
get tagTag() : string
|
|
{
|
|
return "et2-category-tag";
|
|
}
|
|
|
|
/**
|
|
* Customise how tags are rendered.
|
|
* This overrides parent to set application
|
|
*
|
|
* @param item
|
|
* @protected
|
|
*/
|
|
protected _createTagNode(item)
|
|
{
|
|
let tag = super._createTagNode(item);
|
|
tag.application = this.application;
|
|
return tag;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Use a single StaticOptions, since it should have no state
|
|
* @type {StaticOptions}
|
|
*/
|
|
const so = new StaticOptions();
|
|
|
|
customElements.define("et2-select-cat", Et2SelectCategory);
|