mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
b9d96ea3e9
only exception is select_options, never used in templates
99 lines
2.0 KiB
TypeScript
99 lines
2.0 KiB
TypeScript
/**
|
|
* EGroupware eTemplate2 - Readonly duration 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, html} from "@lion/core";
|
|
import {Et2DateDuration, formatOptions} from "./Et2DateDuration";
|
|
import {dateStyles} from "./DateStyles";
|
|
|
|
|
|
/**
|
|
* This is a stripped-down read-only widget used in nextmatch
|
|
*/
|
|
export class Et2DateDurationReadonly extends Et2DateDuration
|
|
{
|
|
static get styles()
|
|
{
|
|
return [
|
|
...super.styles,
|
|
...dateStyles,
|
|
css`
|
|
:host {
|
|
border: none;
|
|
min-width: 2em;
|
|
}
|
|
`
|
|
];
|
|
}
|
|
|
|
constructor()
|
|
{
|
|
super();
|
|
|
|
// Property defaults
|
|
this.selectUnit = false; // otherwise just best matching unit will be used for eg. display_format "h:m:s"
|
|
}
|
|
|
|
get value()
|
|
{
|
|
return this.__value;
|
|
}
|
|
|
|
set value(_value)
|
|
{
|
|
this.__value = _value;
|
|
}
|
|
|
|
render()
|
|
{
|
|
let parsed = this.__value;
|
|
|
|
const format_options = <formatOptions>{
|
|
selectUnit: this.selectUnit,
|
|
displayFormat: this.displayFormat,
|
|
dataFormat: this.dataFormat,
|
|
numberFormat: this.egw().preference("number_format"),
|
|
hoursPerDay: this.hoursPerDay,
|
|
emptyNot0: this.emptyNot0
|
|
};
|
|
|
|
const display = this.formatter(parsed, format_options);
|
|
return html`
|
|
<span ${this.id ? html`id="${this._dom_id}"` : ''}>
|
|
${display.value}${display.unit}
|
|
</span>
|
|
`;
|
|
}
|
|
|
|
/**
|
|
* These are the attributes we allow to change for each row
|
|
*
|
|
* @param attrs
|
|
*/
|
|
getDetachedAttributes(attrs)
|
|
{
|
|
attrs.push("id", "value", "class", "disabled");
|
|
}
|
|
|
|
getDetachedNodes() : HTMLElement[]
|
|
{
|
|
return [<HTMLElement><unknown>this];
|
|
}
|
|
|
|
setDetachedAttributes(_nodes : HTMLElement[], _values : object, _data? : any) : void
|
|
{
|
|
for(let attr in _values)
|
|
{
|
|
this[attr] = _values[attr];
|
|
}
|
|
}
|
|
}
|
|
|
|
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
|
|
customElements.define("et2-date-duration_ro", Et2DateDurationReadonly); |