mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-15 04:24:41 +01:00
f2e20eddba
- using allowFreeEntries for custom country-names and storing, as before, region-name not the -code - also fix flags to show nothing for custom / free country-names Not entirely happy about it, but not willing to spend/waste more time on this tiny feature
56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
/**
|
|
* EGroupware eTemplate2 - Select Country 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 {Et2Select} from "./Et2Select";
|
|
import {StaticOptions} from "./StaticOptions";
|
|
import {SelectOption} from "./FindSelectOptions";
|
|
import {egw} from "../../jsapi/egw_global";
|
|
|
|
/**
|
|
* Customised Select widget for countries
|
|
* This widget uses CSS from api/templates/default/css/flags.css to set flags
|
|
*/
|
|
egw(window).includeCSS("api/templates/default/css/flags.css")
|
|
|
|
export class Et2SelectCountry extends Et2Select
|
|
{
|
|
static get properties()
|
|
{
|
|
return {
|
|
...super.properties,
|
|
/* Reflect the value so we can use CSS selectors */
|
|
value: {type: String, reflect: true}
|
|
}
|
|
}
|
|
|
|
constructor()
|
|
{
|
|
super();
|
|
|
|
this.search = true;
|
|
|
|
(<Promise<SelectOption[]>>so.country(this, {}, true)).then(options =>
|
|
{
|
|
if (this.allowFreeEntries && this.value && !options.filter(option => option.value == this.value).length)
|
|
{
|
|
options = options.concat(<SelectOption>{value: this.value, label: this.value});
|
|
}
|
|
this.select_options = options
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Use a single StaticOptions, since it should have no state
|
|
* @type {StaticOptions}
|
|
*/
|
|
const so = new StaticOptions();
|
|
|
|
customElements.define("et2-select-country", Et2SelectCountry); |