egroupware/api/js/etemplate/Et2Select/Et2SelectAccount.ts
ralf b9cca9c5ff using set/get select_option plus a set_selection_options marked as deprecated
- get_select_options seems to be nowhere in use, so I did not implement it
- Et2Select* widgets with static options assign them in their constructor (like the r/o ones)
- removed a jQuery.proxy call, which we dont want in new code
2022-03-16 22:36:43 +02:00

79 lines
1.8 KiB
TypeScript

/**
* 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
* @author Ralf Becker <rb@egroupware.org>
*/
import {Et2Select} from "./Et2Select";
import {SelectOption} from "./FindSelectOptions";
export type AccountType = 'accounts'|'groups'|'both'|'owngroups';
/**
* @customElement et2-select-account
*/
export class Et2SelectAccount extends Et2Select
{
static get properties()
{
return {
...super.properties,
/**
* One of: 'accounts','groups','both','owngroups'
*/
account_type: String,
}
}
constructor()
{
super();
this.__account_type = 'accounts';
}
set account_type(type : AccountType)
{
this.__account_type = type;
super.select_options = this.select_options;
}
get account_type() : AccountType
{
return this.__account_type;
}
/**
* Get account info for select options from common client-side account cache
*/
get select_options() : Array<SelectOption>
{
const type = this.egw().preference('account_selection', 'common');
if (type === 'none' && typeof egw.user('apps').admin === 'undefined')
{
return [];
}
let select_options : Array<SelectOption>;
// for primary_group we only display owngroups == own memberships, not other groups
if (type === 'primary_group' && this.account_type !== 'accounts')
{
if (this.account_type === 'both')
{
select_options = this.egw().accounts('accounts');
}
select_options = select_options.concat(this.egw().accounts('owngroups'));
}
else
{
select_options = this.egw().accounts(this.account_type);
}
return select_options;
}
}
// @ts-ignore TypeScript is not recognizing that this widget is a LitElement
customElements.define("et2-select-account", Et2SelectAccount);