2022-05-10 00:06:16 +02:00
|
|
|
/**
|
|
|
|
* EGroupware eTemplate2 - JS Link list object
|
|
|
|
*
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package etemplate
|
|
|
|
* @subpackage api
|
|
|
|
* @link https://www.egroupware.org
|
|
|
|
* @author Nathan Gray
|
|
|
|
* @copyright 2022 Nathan Gray
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2022-05-11 22:00:23 +02:00
|
|
|
import {css, html, LitElement, render, TemplateResult, until} from "@lion/core";
|
2022-05-10 00:06:16 +02:00
|
|
|
import {Et2Widget} from "../Et2Widget/Et2Widget";
|
|
|
|
import {Et2Link, LinkInfo} from "./Et2Link";
|
|
|
|
import {et2_IDetachedDOM} from "../et2_core_interfaces";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display a list of entries in a comma separated list
|
|
|
|
*
|
|
|
|
* Given an application & entry ID, will query the list of links and display
|
|
|
|
*
|
|
|
|
* @see Et2Link
|
|
|
|
*/
|
|
|
|
|
|
|
|
// @ts-ignore TypeScript says there's something wrong with types
|
|
|
|
export class Et2LinkString extends Et2Widget(LitElement) implements et2_IDetachedDOM
|
|
|
|
{
|
|
|
|
|
|
|
|
static get styles()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
...super.styles,
|
|
|
|
css`
|
|
|
|
:host {
|
|
|
|
list-style-type: none;
|
|
|
|
display: inline;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
/* CSS for child elements */
|
|
|
|
::slotted(*):after {
|
|
|
|
content: ", "
|
|
|
|
}
|
|
|
|
::slotted(*:last-child):after {
|
|
|
|
content:initial;
|
|
|
|
}
|
|
|
|
`
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static get properties()
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
...super.properties,
|
|
|
|
/**
|
|
|
|
* Specify the application for all the entries, so you only need to specify the entry ID
|
|
|
|
*/
|
|
|
|
application: {
|
|
|
|
type: String,
|
|
|
|
reflect: true,
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Application entry ID
|
|
|
|
*/
|
2022-07-21 17:57:50 +02:00
|
|
|
entryId: {
|
2022-05-10 00:06:16 +02:00
|
|
|
type: String,
|
|
|
|
reflect: true
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Application filter
|
|
|
|
* Set to an appname or comma separated list of applications to show only linked entries from those
|
|
|
|
* applications
|
|
|
|
*/
|
2022-07-21 17:57:50 +02:00
|
|
|
onlyApp: {
|
2022-05-10 00:06:16 +02:00
|
|
|
type: String
|
|
|
|
},
|
|
|
|
/**
|
|
|
|
* Type filter
|
|
|
|
* Sub-type key to list only entries of that type
|
|
|
|
*/
|
2022-07-21 17:57:50 +02:00
|
|
|
linkType: {
|
2022-05-10 00:06:16 +02:00
|
|
|
type: String
|
|
|
|
},
|
|
|
|
|
2022-05-11 00:02:33 +02:00
|
|
|
// Show links that are marked as deleted, being held for purge
|
2022-07-21 17:57:50 +02:00
|
|
|
showDeleted: {type: Boolean},
|
2022-05-11 00:02:33 +02:00
|
|
|
|
2022-05-10 00:06:16 +02:00
|
|
|
/**
|
2022-07-21 17:57:50 +02:00
|
|
|
* Pass value as an object, will be parsed to set application & entryId
|
2022-05-10 00:06:16 +02:00
|
|
|
*/
|
|
|
|
value: {
|
|
|
|
type: Object,
|
|
|
|
reflect: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected _link_list : LinkInfo[];
|
|
|
|
protected _loadingPromise : Promise<LinkInfo[]>;
|
|
|
|
|
|
|
|
constructor()
|
|
|
|
{
|
|
|
|
super();
|
|
|
|
this._link_list = []
|
2022-07-21 17:57:50 +02:00
|
|
|
this.__showDeleted = false;
|
2022-05-10 00:06:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the value of the list
|
|
|
|
*
|
|
|
|
* Value can be:
|
|
|
|
* - String: CSV list of entries in either app:ID or just ID if application is set.
|
|
|
|
* - Object: {to_app: <appname>, to_id: <Entry ID>} List of linked entries will be fetched from the server
|
|
|
|
* - Array: {app: <appname>, id: <ID>}[]
|
|
|
|
* @param _value
|
|
|
|
*/
|
|
|
|
public set_value(_value : string | { to_app : string, to_id : string } | LinkInfo[])
|
|
|
|
{
|
|
|
|
this._link_list = [];
|
|
|
|
if(typeof _value == "object" && !Array.isArray(_value) && !_value.to_app && this.application)
|
|
|
|
{
|
|
|
|
_value.to_app = this.application;
|
|
|
|
}
|
|
|
|
if(typeof _value == 'object' && !Array.isArray(_value) && _value.to_app && _value.to_id)
|
|
|
|
{
|
|
|
|
this.application = _value.to_app;
|
2022-07-21 17:57:50 +02:00
|
|
|
this.entryId = _value.to_id;
|
2022-05-11 22:00:23 +02:00
|
|
|
this.get_links();
|
2022-05-10 00:06:16 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(typeof _value === "string")
|
|
|
|
{
|
|
|
|
let ids = _value.split(",");
|
|
|
|
ids.forEach((id) => (<LinkInfo[]>this._link_list).push(<LinkInfo>{app: this.application, id: id}));
|
|
|
|
}
|
|
|
|
else if(Array.isArray(_value))
|
|
|
|
{
|
|
|
|
this._link_list = _value;
|
|
|
|
}
|
2022-05-11 00:02:33 +02:00
|
|
|
this._addLinks(this._link_list);
|
2022-05-10 00:06:16 +02:00
|
|
|
super.requestUpdate();
|
|
|
|
}
|
|
|
|
|
|
|
|
public render() : TemplateResult
|
|
|
|
{
|
|
|
|
// This shows loading template until loadingPromise resolves, then shows _listTemplate
|
|
|
|
return html`
|
|
|
|
${this._loadingPromise ? until(
|
|
|
|
this._loadingPromise?.then(res =>
|
|
|
|
{
|
|
|
|
this._listTemplate();
|
|
|
|
}),
|
|
|
|
this._loadingTemplate()
|
|
|
|
) : this._listTemplate()}
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected _listTemplate()
|
|
|
|
{
|
|
|
|
return html`
|
|
|
|
<slot></slot>`;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render one link
|
|
|
|
*
|
|
|
|
* @param link
|
|
|
|
* @returns {TemplateResult}
|
|
|
|
* @protected
|
|
|
|
*/
|
|
|
|
protected _linkTemplate(link) : TemplateResult
|
|
|
|
{
|
|
|
|
return html`
|
2022-07-21 17:57:50 +02:00
|
|
|
<et2-link app="${link.app}" entryId="${link.id}" .value=${link} ._parent=${this}></et2-link>`;
|
2022-05-10 00:06:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render that we're waiting for data
|
|
|
|
* @returns {TemplateResult}
|
|
|
|
* @protected
|
|
|
|
*/
|
|
|
|
protected _loadingTemplate() : TemplateResult
|
|
|
|
{
|
|
|
|
return html`loading...`;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render a list of links inside the list
|
2022-05-11 00:02:33 +02:00
|
|
|
* These get slotted, rather than put inside the shadow dom
|
|
|
|
*
|
2022-05-10 00:06:16 +02:00
|
|
|
* @param links
|
|
|
|
* @protected
|
|
|
|
*/
|
2022-05-11 00:02:33 +02:00
|
|
|
protected _addLinks(links : LinkInfo[])
|
2022-05-10 00:06:16 +02:00
|
|
|
{
|
2022-05-11 22:00:23 +02:00
|
|
|
// Remove anything there right now
|
|
|
|
while(this.lastChild)
|
|
|
|
{
|
|
|
|
this.removeChild(this.lastChild);
|
|
|
|
}
|
|
|
|
|
|
|
|
links.forEach((link) =>
|
|
|
|
{
|
|
|
|
let temp = document.createElement("div");
|
|
|
|
render(this._linkTemplate(link), temp);
|
|
|
|
temp.childNodes.forEach((node) => this.appendChild(node));
|
|
|
|
})
|
|
|
|
|
|
|
|
/*
|
|
|
|
This should work, and it does, but only once.
|
|
|
|
It fails if you try and update then run it again - none of the children get added
|
|
|
|
Something about how lit renders
|
2022-05-11 00:02:33 +02:00
|
|
|
render(html`${repeat(links,
|
|
|
|
(link) => link.app + ":" + link.id,
|
|
|
|
(link) => this._linkTemplate(link))}`,
|
|
|
|
<HTMLElement><unknown>this
|
|
|
|
);
|
2022-05-11 22:00:23 +02:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2022-05-10 00:06:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Starts the request for link list to the server
|
2022-05-11 22:00:23 +02:00
|
|
|
*
|
|
|
|
* Called internally to fetch the list. May be called externally to trigger a refresh if a link is added.
|
2022-05-12 18:54:29 +02:00
|
|
|
*
|
2022-05-10 00:06:16 +02:00
|
|
|
*/
|
2022-05-12 18:54:29 +02:00
|
|
|
public get_links(not_saved_links? : LinkInfo[])
|
2022-05-10 00:06:16 +02:00
|
|
|
{
|
2022-05-12 18:54:29 +02:00
|
|
|
if(typeof not_saved_links === "undefined")
|
|
|
|
{
|
|
|
|
not_saved_links = [];
|
|
|
|
}
|
2022-05-10 00:06:16 +02:00
|
|
|
let _value = {
|
|
|
|
to_app: this.application,
|
2022-07-21 17:57:50 +02:00
|
|
|
to_id: this.entryId,
|
|
|
|
onlyApp: this.onlyApp,
|
|
|
|
showDeleted: this.showDeleted
|
2022-05-10 00:06:16 +02:00
|
|
|
};
|
2022-05-11 00:02:33 +02:00
|
|
|
if(this._loadingPromise)
|
|
|
|
{
|
|
|
|
// Already waiting
|
|
|
|
return;
|
|
|
|
}
|
2022-05-10 00:06:16 +02:00
|
|
|
|
2022-05-12 18:08:59 +02:00
|
|
|
this._loadingPromise = <Promise<LinkInfo[]>>(this.egw().jsonq('EGroupware\\Api\\Etemplate\\Widget\\Link::ajax_link_list', [_value]))
|
|
|
|
.then(_value =>
|
|
|
|
{
|
2022-05-12 18:54:29 +02:00
|
|
|
this._addLinks(not_saved_links.concat(_value));
|
2022-05-12 18:08:59 +02:00
|
|
|
this._loadingPromise = null;
|
|
|
|
})
|
2022-05-10 00:06:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
getDetachedAttributes(_attrs : string[])
|
|
|
|
{
|
2022-07-21 17:57:50 +02:00
|
|
|
_attrs.push("application", "entryId");
|
2022-05-10 00:06:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
getDetachedNodes() : HTMLElement[]
|
|
|
|
{
|
|
|
|
return [<HTMLElement><unknown>this];
|
|
|
|
}
|
|
|
|
|
|
|
|
setDetachedAttributes(_nodes : HTMLElement[], _values : object, _data?)
|
|
|
|
{
|
|
|
|
for(let k in _values)
|
|
|
|
{
|
|
|
|
this[k] = _values[k];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// @ts-ignore TypeScript says there's something wrong with types
|
|
|
|
customElements.define("et2-link-string", Et2LinkString, {extends: 'ul'});
|