mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 20:24:51 +08:00
e6e0b02849
Flow first look
31 lines
761 B
JavaScript
31 lines
761 B
JavaScript
|
|
import {i18n} from 'Common/Translator';
|
|
import {defautOptionsAfterRender} 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.defautOptionsAfterRender = defautOptionsAfterRender;
|
|
}
|
|
}
|
|
|
|
module.exports = componentExportHelper(SelectComponent, 'SelectComponent');
|