2022-05-26 22:47:52 +02:00
|
|
|
import {SelectOption} from "../Et2Select/FindSelectOptions";
|
2022-05-27 22:12:31 +02:00
|
|
|
import {css, html, SlotMixin, TemplateResult} from "@lion/core";
|
2022-05-26 22:47:52 +02:00
|
|
|
import {Et2Select} from "../Et2Select/Et2Select";
|
|
|
|
|
|
|
|
|
2022-05-27 22:12:31 +02:00
|
|
|
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;
|
2022-05-27 22:12:31 +02:00
|
|
|
display: inline-block;
|
2022-05-31 21:40:31 +02:00
|
|
|
min-width: 64px;
|
2022-05-27 22:12:31 +02:00
|
|
|
}
|
|
|
|
: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;
|
|
|
|
}
|
|
|
|
`
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
2022-05-27 22:12:31 +02:00
|
|
|
"app_icons": {type: Boolean, reflect: true}
|
2022-05-26 22:47:52 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
get slots()
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
...super.slots,
|
2022-05-27 22:12:31 +02:00
|
|
|
"": () =>
|
2022-05-26 22:47:52 +02:00
|
|
|
{
|
2022-05-27 22:12:31 +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)";
|
2022-05-27 22:12:31 +02:00
|
|
|
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();
|
2022-06-06 21:31:33 +02:00
|
|
|
this.only_app = "";
|
2022-05-27 22:12:31 +02:00
|
|
|
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();
|
2022-05-27 23:39:51 +02:00
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
2022-06-06 21:31:33 +02:00
|
|
|
this.__only_app = app || "";
|
|
|
|
this.updateComplete.then(() =>
|
|
|
|
{
|
|
|
|
this.style.display = this.only_app ? 'none' : '';
|
|
|
|
});
|
2022-06-01 16:05:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
get only_app() : string
|
|
|
|
{
|
2022-06-06 21:31:33 +02:00
|
|
|
// __only_app may be undefined during creation
|
|
|
|
return this.__only_app || "";
|
2022-06-01 16:05:34 +02:00
|
|
|
}
|
|
|
|
|
2022-05-26 22:47:52 +02:00
|
|
|
connectedCallback()
|
|
|
|
{
|
|
|
|
super.connectedCallback();
|
|
|
|
|
|
|
|
// Set icon
|
2022-05-27 22:12:31 +02:00
|
|
|
this.querySelector("[slot='prefix']").setAttribute("src", this.value + "/navbar");
|
2022-05-26 22:47:52 +02:00
|
|
|
|
|
|
|
// Register to
|
2022-05-27 23:39:51 +02:00
|
|
|
this.addEventListener("change", this._handleChange);
|
2022-06-01 16:05:34 +02:00
|
|
|
|
|
|
|
if (this.__only_app) this.style.display = 'none';
|
2022-05-27 23:39:51 +02:00
|
|
|
}
|
2022-05-26 22:47:52 +02:00
|
|
|
|
2022-05-27 23:39:51 +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()
|
|
|
|
{
|
2022-06-06 21:31:33 +02:00
|
|
|
return this.only_app ? this.only_app : super.value;
|
2022-06-01 17:42:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
set value(new_value)
|
|
|
|
{
|
|
|
|
super.value = new_value;
|
|
|
|
}
|
|
|
|
|
2022-05-27 23:39:51 +02:00
|
|
|
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'];
|
|
|
|
}
|
|
|
|
}
|
2022-06-02 17:06:55 +02:00
|
|
|
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)
|
|
|
|
{
|
2022-06-06 21:31:33 +02:00
|
|
|
let url = appname ? this.egw().image('navbar', appname) : "";
|
2022-05-26 22:47:52 +02:00
|
|
|
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);
|