mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-15 20:44:27 +01:00
95f10b57f3
Happens in Kanban contact, src="email" but email has a value (an email address)
253 lines
4.9 KiB
TypeScript
253 lines
4.9 KiB
TypeScript
/**
|
|
* EGroupware eTemplate2 - Image widget
|
|
*
|
|
* @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
|
|
*/
|
|
|
|
|
|
import {css, html, LitElement, render, SlotMixin} from "@lion/core";
|
|
import {Et2Widget} from "../Et2Widget/Et2Widget";
|
|
import {et2_IDetachedDOM} from "../et2_core_interfaces";
|
|
|
|
export class Et2Image extends Et2Widget(SlotMixin(LitElement)) implements et2_IDetachedDOM
|
|
{
|
|
static get styles()
|
|
{
|
|
return [
|
|
...super.styles,
|
|
css`
|
|
:host {
|
|
display: inline-block;
|
|
}
|
|
::slotted(img) {
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
}
|
|
:host([icon]) {
|
|
height: 1.3rem;
|
|
}
|
|
`,
|
|
];
|
|
}
|
|
|
|
static get properties()
|
|
{
|
|
return {
|
|
...super.properties,
|
|
|
|
/**
|
|
* The label of the image
|
|
* Actually not used as label, but we put it as title
|
|
* Added here as there's no Lion parent
|
|
*/
|
|
label: {
|
|
type: String
|
|
},
|
|
|
|
/**
|
|
* Image
|
|
* Displayed image
|
|
*/
|
|
src: {type: String},
|
|
|
|
/**
|
|
* Default image
|
|
* Image to use if src is not found
|
|
*/
|
|
defaultSrc: {type: String},
|
|
|
|
/**
|
|
* Link Target
|
|
* Link URL, empty if you don't wan't to display a link.
|
|
*/
|
|
href: {type: String},
|
|
|
|
/**
|
|
* Link target
|
|
* Link target descriptor
|
|
*/
|
|
extraLinkTarget: {type: String},
|
|
|
|
/**
|
|
* Popup
|
|
* widthxheight, if popup should be used, eg. 640x480
|
|
*/
|
|
extraLinkPopup: {type: String},
|
|
}
|
|
}
|
|
|
|
get slots()
|
|
{
|
|
return {
|
|
'': () =>
|
|
{
|
|
return this._imageTemplate();
|
|
}
|
|
}
|
|
}
|
|
|
|
constructor()
|
|
{
|
|
super();
|
|
this.src = "";
|
|
this.defaultSrc = "";
|
|
this.href = "";
|
|
this.label = "";
|
|
this.extraLinkTarget = "_self";
|
|
this.extraLinkPopup = "";
|
|
|
|
this._handleClick = this._handleClick.bind(this);
|
|
}
|
|
|
|
connectedCallback()
|
|
{
|
|
super.connectedCallback();
|
|
}
|
|
|
|
_imageTemplate()
|
|
{
|
|
let src = this.parse_href(this.src) || this.parse_href(this.defaultSrc);
|
|
if(!src)
|
|
{
|
|
// Hide if no valid image
|
|
return '';
|
|
}
|
|
return html`
|
|
<img ${this.id ? html`id="${this.id}"` : ''}
|
|
src="${src}"
|
|
alt="${this.label}"
|
|
part="image"
|
|
title="${this.statustext || this.label}"
|
|
>`;
|
|
}
|
|
|
|
render()
|
|
{
|
|
return html`
|
|
<slot></slot>`;
|
|
}
|
|
|
|
protected parse_href(img_href : string) : string
|
|
{
|
|
// allow url's too
|
|
if(img_href[0] == '/' || img_href.substr(0, 4) == 'http' || img_href.substr(0, 5) == 'data:')
|
|
{
|
|
return img_href;
|
|
}
|
|
let src = this.egw()?.image(img_href);
|
|
if(src)
|
|
{
|
|
return src;
|
|
}
|
|
return "";
|
|
}
|
|
|
|
_handleClick(_ev : MouseEvent) : boolean
|
|
{
|
|
if(this.href)
|
|
{
|
|
this.egw().open_link(this.href, this.extraLinkTarget, this.extraLinkPopup);
|
|
}
|
|
else
|
|
{
|
|
return super._handleClick(_ev);
|
|
}
|
|
}
|
|
|
|
get _img()
|
|
{
|
|
return this.querySelector('img');
|
|
}
|
|
|
|
/**
|
|
* Handle changes that have to happen based on changes to properties
|
|
*
|
|
*/
|
|
updated(changedProperties)
|
|
{
|
|
super.updated(changedProperties);
|
|
|
|
if(changedProperties.has("src") && !this._img)
|
|
{
|
|
render(this._imageTemplate(), this);
|
|
}
|
|
if(changedProperties.has("src") && this._img)
|
|
{
|
|
this._img.setAttribute("src", this.parse_href(this.src) || this.parse_href(this.defaultSrc));
|
|
}
|
|
// if there's an href or onclick, make it look clickable
|
|
if(changedProperties.has("href") || typeof this.onclick !== "undefined")
|
|
{
|
|
this.classList.toggle("et2_clickable", this.href || typeof this.onclick !== "undefined")
|
|
}
|
|
for(const changedPropertiesKey in changedProperties)
|
|
{
|
|
if(Et2Image.getPropertyOptions()[changedPropertiesKey])
|
|
{
|
|
this._img[changedPropertiesKey] = this[changedPropertiesKey];
|
|
}
|
|
}
|
|
}
|
|
|
|
transformAttributes(_attrs : any)
|
|
{
|
|
super.transformAttributes(_attrs);
|
|
|
|
// Expand src with additional stuff
|
|
// This should go away, since we're not checking for $ or @
|
|
if(typeof _attrs["src"] != "undefined")
|
|
{
|
|
let manager = this.getArrayMgr("content");
|
|
if(manager && _attrs["src"])
|
|
{
|
|
let src = manager.getEntry(_attrs["src"], false, true);
|
|
if(typeof src != "undefined" && src !== null)
|
|
{
|
|
if(typeof src == "object")
|
|
{
|
|
this.src = this.egw().link('/index.php', src);
|
|
}
|
|
else if(this.src && this.egw().image(src))
|
|
{
|
|
this.src = src;
|
|
}
|
|
else if(!this.src)
|
|
{
|
|
this.src = src;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Code for implementing et2_IDetachedDOM
|
|
*
|
|
* Individual widgets are detected and handled by the grid, but the interface is needed for this to happen
|
|
*
|
|
* @param {array} _attrs array to add further attributes to
|
|
*/
|
|
getDetachedAttributes(_attrs)
|
|
{
|
|
_attrs.push("src", "label", "href");
|
|
}
|
|
|
|
getDetachedNodes()
|
|
{
|
|
return [<HTMLElement><unknown>this];
|
|
}
|
|
|
|
setDetachedAttributes(_nodes, _values)
|
|
{
|
|
for(let attr in _values)
|
|
{
|
|
this[attr] = _values[attr];
|
|
}
|
|
}
|
|
}
|
|
|
|
customElements.define("et2-image", Et2Image as any, {extends: 'img'}); |