egroupware/api/js/etemplate/Et2Select/Et2SelectAccount.ts

170 lines
4.4 KiB
TypeScript
Raw Normal View History

/**
2022-03-10 19:19:57 +01:00
* EGroupware eTemplate2 - Account-selection WebComponent
*
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package api
* @link https://www.egroupware.org
2022-03-10 19:19:57 +01:00
* @author Ralf Becker <rb@egroupware.org>
*/
import {Et2Select} from "./Et2Select";
import {cleanSelectOptions, SelectOption} from "./FindSelectOptions";
import {Et2Image} from "../Et2Image/Et2Image";
import {SelectAccountMixin} from "./SelectAccountMixin";
import {Et2StaticSelectMixin} from "./StaticOptions";
import {html, nothing} from "@lion/core";
2022-03-10 19:19:57 +01:00
export type AccountType = 'accounts'|'groups'|'both'|'owngroups';
2022-03-10 19:19:57 +01:00
/**
* @customElement et2-select-account
*/
export class Et2SelectAccount extends SelectAccountMixin(Et2StaticSelectMixin(Et2Select))
{
2022-03-10 19:19:57 +01:00
static get properties()
{
return {
...super.properties,
/**
* One of: 'accounts','groups','both','owngroups'
*/
accountType: String,
2022-03-10 19:19:57 +01:00
}
}
constructor()
{
super();
// all types can search the server. If there are a lot of accounts, local list will
// not be complete
if(this.egw().preference('account_selection', 'common') !== 'none')
{
this.searchUrl = "EGroupware\\Api\\Etemplate\\Widget\\Taglist::ajax_search";
}
this.searchOptions = {type: 'account', account_type: 'accounts'};
this.__accountType = 'accounts';
2022-03-10 19:19:57 +01:00
}
connectedCallback()
{
super.connectedCallback();
// Start fetch of select_options
const type = this.egw().preference('account_selection', 'common');
let fetch = [];
// for primary_group we only display owngroups == own memberships, not other groups
if(type === 'primary_group' && this.accountType !== 'accounts')
{
if(this.accountType === 'both')
{
fetch.push(this.egw().accounts('accounts').then(options => {this.static_options = this.static_options.concat(cleanSelectOptions(options))}));
}
fetch.push(this.egw().accounts('owngroups').then(options => {this.static_options = this.static_options.concat(cleanSelectOptions(options))}));
}
else
{
fetch.push(this.egw().accounts(this.accountType).then(options => {this.static_options = this.static_options.concat(cleanSelectOptions(options))}));
}
this.fetchComplete = Promise.all(fetch)
.then(() => this._renderOptions());
}
firstUpdated(changedProperties?)
{
super.firstUpdated(changedProperties);
// Due to the different way Et2SelectAccount handles options, we call this explicitly
this._renderOptions();
}
set accountType(type : AccountType)
2022-03-10 19:19:57 +01:00
{
this.__accountType = type;
this.searchOptions.account_type = type;
2022-03-10 19:19:57 +01:00
super.select_options = this.select_options;
}
get accountType() : AccountType
{
return this.__accountType;
2022-03-10 19:19:57 +01:00
}
2022-03-10 19:19:57 +01:00
/**
* Get account info for select options from common client-side account cache
*/
get select_options() : Array<SelectOption>
2022-03-10 19:19:57 +01:00
{
const type = this.egw().preference('account_selection', 'common');
if(type === 'none' && typeof this.egw().user('apps').admin === 'undefined')
2022-03-10 19:19:57 +01:00
{
return [];
}
let select_options : Array<SelectOption> = [...super.select_options] || [];
return select_options.filter((value, index, self) =>
{
return self.findIndex(v => v.value === value.value) === index;
});
2022-03-10 19:19:57 +01:00
}
set select_options(new_options : SelectOption[])
{
super.select_options = new_options;
}
/**
* Override icon for the select option
*
* @param option
* @protected
*/
protected _iconTemplate(option)
{
// lavatar uses a size property, not a CSS variable
let style = getComputedStyle(this);
return html`
<et2-lavatar slot="prefix" part="icon" .size=${style.getPropertyValue("--icon-width")}
lname=${option.lname || nothing}
fname=${option.fname || nothing}
image=${option.icon || nothing}
>
</et2-lavatar>`;
}
/**
* Override the prefix image for tags (multiple=true)
* The default is probably fine, but we're being explicit here.
* @param item
* @returns {TemplateResult<1>}
* @protected
*
*/
protected _createImage(item) : Et2Image
{
const image = document.createElement("et2-lavatar");
image.contactId = item.value;
if(item.lname)
{
image.lname = item.lname;
}
if(item.fname)
{
image.fname = item.fname;
}
// If there's an actual image associated with the account, use that image instead of initials
if(item.src)
{
image.src = item.src;
}
return image;
}
}
customElements.define("et2-select-account", Et2SelectAccount);