snappymail/dev/Component/Select.js
djmaze 1d6a636433 Split Common/Utils.js
Because admin app doesn't need most of them
2020-10-14 19:16:37 +02:00

28 lines
766 B
JavaScript

import { i18n } from 'Common/Translator';
import { defaultOptionsAfterRender } from 'Common/Utils';
import { componentExportHelper } from 'Component/Abstract';
import { AbstractInput } from 'Component/AbstractInput';
class SelectComponent extends AbstractInput {
/**
* @param {Object} params
*/
constructor(params) {
super(params);
this.options = params.options || '';
this.optionsText = params.optionsText || null;
this.optionsValue = params.optionsValue || null;
this.optionsCaption = params.optionsCaption || null;
if (this.optionsCaption) {
this.optionsCaption = i18n(this.optionsCaption);
}
this.defaultOptionsAfterRender = defaultOptionsAfterRender;
}
}
export default componentExportHelper(SelectComponent, 'SelectComponent');