egroupware/api/js/etemplate/Et2Link/Et2LinkAppSelect.ts

231 lines
4.9 KiB
TypeScript
Raw Normal View History

2022-05-26 22:47:52 +02:00
import {SelectOption} from "../Et2Select/FindSelectOptions";
import {css, html, SlotMixin, TemplateResult} from "@lion/core";
2022-05-26 22:47:52 +02:00
import {Et2Select} from "../Et2Select/Et2Select";
export class Et2LinkAppSelect extends SlotMixin(Et2Select)
2022-05-26 22:47:52 +02:00
{
static get styles()
{
return [
...super.styles,
css`
:host {
--icon-width: 20px;
display: inline-block;
2022-05-31 21:40:31 +02:00
min-width: 64px;
}
:host([app_icons]) {
max-width: 75px;
}
.select__menu {
overflow-x: hidden;
2022-05-26 22:47:52 +02:00
}
::part(control) {
border: none;
box-shadow: initial;
}
et2-image {
width: var(--icon-width);
}
::slotted(img), img {
vertical-align: middle;
}
2022-05-26 22:47:52 +02:00
`
]
}
static get properties()
{
return {
...super.properties,
/**
* Limit to just this one application, and hide the selection
*/
"only_app": {type: String},
/**
* Limit to these applications (comma seperated).
*/
"application_list": {type: String},
/**
* Show application icons instead of application names
*/
"app_icons": {type: Boolean, reflect: true}
2022-05-26 22:47:52 +02:00
}
};
get slots()
{
return {
...super.slots,
"": () =>
2022-05-26 22:47:52 +02:00
{
2022-05-26 22:47:52 +02:00
const icon = document.createElement("et2-image");
icon.setAttribute("slot", "prefix");
icon.setAttribute("src", "api/navbar");
icon.style.width = "var(--icon-width)";
return icon;
2022-05-26 22:47:52 +02:00
}
}
}
protected __application_list : string[];
2022-06-01 16:05:34 +02:00
protected __only_app : string;
2022-05-26 22:47:52 +02:00
/**
* Constructor
*
*/
constructor()
{
super();
this.app_icons = true;
this.application_list = [];
2022-05-27 22:22:15 +02:00
this.hoist = true;
2022-05-26 22:47:52 +02:00
// Select options are based off abilities registered with link system
this._reset_select_options();
this._handleChange = this._handleChange.bind(this);
2022-05-26 22:47:52 +02:00
}
2022-06-01 16:05:34 +02:00
set only_app(app : string)
{
this.__only_app = app;
this.style.display = app ? 'inline' : 'none';
}
get only_app() : string
{
return this.__only_app;
}
2022-05-26 22:47:52 +02:00
connectedCallback()
{
super.connectedCallback();
// Set icon
this.querySelector("[slot='prefix']").setAttribute("src", this.value + "/navbar");
2022-05-26 22:47:52 +02:00
// Register to
this.addEventListener("change", this._handleChange);
2022-06-01 16:05:34 +02:00
if (this.__only_app) this.style.display = 'none';
}
2022-05-26 22:47:52 +02:00
disconnectedCallback()
{
super.disconnectedCallback();
this.removeEventListener("change", this._handleChange);
2022-05-26 22:47:52 +02:00
}
/**
* Called before update() to compute values needed during the update
*
* @param changedProperties
*/
willUpdate(changedProperties)
{
super.willUpdate(changedProperties);
if(changedProperties.has("only_app") || changedProperties.has("application_list"))
{
this._reset_select_options();
}
}
2022-05-31 21:40:31 +02:00
set application_list(app_list : string[])
{
let oldValue = this.__application_list;
if(typeof app_list == "string")
{
app_list = (<string>app_list).split(",");
}
this.__application_list = app_list;
this.requestUpdate("application_list", oldValue);
}
get application_list() : string[]
{
return this.__application_list;
}
2022-06-01 17:42:50 +02:00
get value()
{
return this.__only_app ? this.__only_app : super.value;
}
set value(new_value)
{
super.value = new_value;
}
private _handleChange(e)
{
// Set icon
this.querySelector("[slot='prefix']").setAttribute("src", this.value + "/navbar");
// update preference
let appname = "";
if(typeof this.value != 'undefined' && this.parentNode && this.parentNode.to_app)
{
appname = this.parentNode.to_app;
}
this.egw().set_preference(appname || this.egw().app_name(), 'link_app', this.value);
}
2022-05-26 22:47:52 +02:00
/**
* Limited select options here
* This method will check properties and set select options appropriately
*/
private _reset_select_options()
{
let select_options = [];
// Limit to one app
if(this.only_app)
{
2022-06-02 17:13:21 +02:00
select_options.push({value: this.only_app, label: this.egw().lang(this.only_app)});
2022-05-26 22:47:52 +02:00
}
else if(this.application_list.length > 0)
{
select_options = this.application_list;
}
else
{
//@ts-ignore link_app_list gives {app:name} instead of an array, but parent will fix it
select_options = this.egw().link_app_list('query');
if(typeof select_options['addressbook-email'] !== 'undefined')
{
delete select_options['addressbook-email'];
}
}
if (!this.value)
{
this.value = <string>this.egw().preference('link_app', this.egw().app_name());
}
2022-05-26 22:47:52 +02:00
this.select_options = select_options;
}
_optionTemplate(option : SelectOption) : TemplateResult
{
return html`
<sl-menu-item value="${option.value}" title="${option.title}">
${this.app_icons ? "" : option.label}
${this._iconTemplate(option.value)}
</sl-menu-item>`;
}
_iconTemplate(appname)
{
let url = this.egw().image('navbar', appname);
return html`
<et2-image style="width: var(--icon-width)" slot="prefix" src="${url}"></et2-image>`;
}
}
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
customElements.define("et2-link-apps", Et2LinkAppSelect);