egroupware/api/js/etemplate/Et2Link/Et2LinkEntry.ts
nathan 9f4ce778cc Work on LinkEntry
- fix initial value
2022-06-02 09:16:28 -06:00

240 lines
4.7 KiB
TypeScript

import {css, html, LitElement, SlotMixin} from "@lion/core";
import {Et2LinkAppSelect} from "./Et2LinkAppSelect";
import {Et2InputWidget} from "../Et2InputWidget/Et2InputWidget";
import {FormControlMixin, ValidateMixin} from "@lion/form-core";
import {Et2LinkSearch} from "./Et2LinkSearch";
import {LinkInfo} from "./Et2Link";
export interface LinkEntry {
app: string;
id: string|number;
title?: string;
}
/**
* EGroupware eTemplate2 - Search & select link entry WebComponent
*
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package api
* @link https://www.egroupware.org
* @author Nathan Gray
*/
export class Et2LinkEntry extends Et2InputWidget(FormControlMixin(ValidateMixin(SlotMixin(LitElement))))
{
static get styles()
{
return [
...super.styles,
css`
:host {
display: block;
}
`
];
}
static get properties()
{
return {
...super.properties,
value: {type: Object},
/**
* Limit to just this application - hides app selection
*/
only_app: {type: String},
/**
* Limit to the listed applications (comma seperated)
*/
application_list: {type: String},
/**
* Show just application icons instead of names
*/
app_icons: {type: Boolean},
/**
* Callback before query to server.
* It will be passed the request & et2_link_entry objects. Must return true, or false to abort query.
*/
query: {type: Function},
/**
* Callback when user selects an option. Must return true, or false to abort normal action.
*/
select: {type: Function}
}
}
get slots()
{
return {
...super.slots,
app: () =>
{
const app = <Et2LinkAppSelect>document.createElement("et2-link-apps")
if(this.__only_app)
{
app.only_app = this.__only_app;
}
else if(typeof this._value !== "undefined")
{
app.value = this._value.app;
}
return app;
},
select: () =>
{
const select = <Et2LinkSearch><unknown>document.createElement("et2-link-search");
if(typeof this._value !== "undefined")
{
select.app = this._value.app;
select.value = this._value.id;
}
return select;
}
}
}
/**
* We only care about this value until render. After the sub-nodes are created,
* we take their "live" values for our value.
*
* N.B.: Single underscore! Otherwise we conflict with parent __value
*
* @type {LinkInfo}
* @private
*/
private _value : LinkInfo;
constructor()
{
super();
}
connectedCallback()
{
super.connectedCallback();
this._handleAppChange = this._handleAppChange.bind(this);
// Clear initial value
this._value = undefined;
}
protected __only_app : string;
set only_app(app)
{
this.__only_app = app;
this.app = app;
}
get only_app()
{
return this.__only_app;
}
set app(app)
{
this.updateComplete.then(() =>
{
this._appNode.value = app;
this._searchNode.app = app;
});
}
get app()
{
return this._appNode?.value || this.__app;
}
get _appNode() : Et2LinkAppSelect
{
return this.querySelector("[slot='app']");
}
get _searchNode() : Et2LinkSearch
{
return this.querySelector("[slot='select']");
}
protected _bindListeners()
{
this._appNode.addEventListener("change", this._handleAppChange);
}
protected _unbindListeners()
{
this._appNode.removeEventListener("change", this._handleAppChange);
}
protected _handleAppChange(event)
{
this._searchNode.app = this._appNode.value;
}
get value() : LinkEntry|string|number
{
if(this.only_app)
{
return this._searchNode?.value;
}
return this._searchNode ? {
id: this._searchNode.value,
app: this.app,
//search: this._searchNode... // content of search field
} : this._value;
}
set value(val: LinkEntry|string|number)
{
let value : LinkInfo = {app: "", id: ""};
if(typeof val === 'string')
{
if(val.indexOf(',') > 0)
{
val = val.replace(",", ":");
}
const vals = val.split(':');
value.app = vals[0];
value.id = vals[1];
}
else if(typeof val === "number")
{
value.id = String(val);
}
else // object with attributes: app, id, title
{
value = (<LinkInfo>val);
}
// If the searchNode is not there yet, hold value. We'll use these values when we create the
// slotted searchNode.
if(this._searchNode == null)
{
this._value = value;
}
else
{
this.app = value.app;
this._searchNode.value = value.id;
}
}
/**
* @return {TemplateResult}
* @protected
*/
_inputGroupInputTemplate()
{
return html`
<div class="input-group__input">
<slot name="app"></slot>
<slot name="select"></slot>
</div>
`;
}
}
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
customElements.define("et2-link-entry", Et2LinkEntry);