/** * Copyright (c) Tiny Technologies, Inc. All rights reserved. * Licensed under the LGPL or a commercial license. * For LGPL see License.txt in the project root for license information. * For commercial licenses see https://www.tiny.cloud/ */ import { AddEventsBehaviour, AlloyEvents, AlloySpec, AlloyTriggers, Behaviour, Disabling, FormField as AlloyFormField, HtmlSelect as AlloyHtmlSelect, NativeEvents, SimpleSpec, SketchSpec, Tabstopping } from '@ephox/alloy'; import { Types } from '@ephox/bridge'; import { Arr, Option } from '@ephox/katamari'; import { UiFactoryBackstageProviders } from 'tinymce/themes/silver/backstage/Backstage'; import { renderLabel } from 'tinymce/themes/silver/ui/alien/FieldLabeller'; import * as Icons from 'tinymce/themes/silver/ui/icons/Icons'; import { formChangeEvent } from '../general/FormEvents'; import { Omit } from '../Omit'; type SelectBoxSpec = Omit; export const renderSelectBox = (spec: SelectBoxSpec, providersBackstage: UiFactoryBackstageProviders): SketchSpec => { const translatedOptions = Arr.map(spec.items, (item) => { return { text: providersBackstage.translate(item.text), value: item.value }; }); // DUPE with TextField. const pLabel = spec.label.map((label) => renderLabel(label, providersBackstage)); const pField = AlloyFormField.parts().field({ // TODO: Alloy should not allow dom changing of an HTML select! dom: { }, selectAttributes: { size: spec.size }, options: translatedOptions, factory: AlloyHtmlSelect, selectBehaviours: Behaviour.derive([ Disabling.config({ disabled: spec.disabled }), Tabstopping.config({ }), AddEventsBehaviour.config('selectbox-change', [ AlloyEvents.run(NativeEvents.change(), (component, _) => { AlloyTriggers.emitWith(component, formChangeEvent, { name: spec.name } ); }) ]) ]) }); const chevron: Option = spec.size > 1 ? Option.none() : Option.some({ dom: { tag: 'div', classes: ['tox-selectfield__icon-js'], innerHtml: Icons.get('chevron-down', providersBackstage.icons) } }); const selectWrap: SimpleSpec = { dom: { tag: 'div', classes: ['tox-selectfield'] }, components: Arr.flatten([[pField], chevron.toArray()]) }; return AlloyFormField.sketch({ dom: { tag: 'div', classes: ['tox-form__group'] }, components: Arr.flatten([pLabel.toArray(), [selectWrap]]), fieldBehaviours: Behaviour.derive([ Disabling.config({ disabled: spec.disabled, onDisabled: (comp) => { AlloyFormField.getField(comp).each(Disabling.disable); }, onEnabled: (comp) => { AlloyFormField.getField(comp).each(Disabling.enable); } }) ]) }); };