mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-30 19:41:46 +08:00
61 lines
1.7 KiB
JavaScript
61 lines
1.7 KiB
JavaScript
import ko from 'ko';
|
|
import { pInt } from 'Common/Utils';
|
|
import { SaveSettingsStep } from 'Common/Enums';
|
|
import { AbstractComponent } from 'Component/Abstract';
|
|
|
|
class AbstractInput extends AbstractComponent {
|
|
/**
|
|
* @param {Object} params
|
|
*/
|
|
constructor(params) {
|
|
super();
|
|
|
|
this.value = params.value || '';
|
|
this.size = params.size || 0;
|
|
this.label = params.label || '';
|
|
this.preLabel = params.preLabel || '';
|
|
this.enable = undefined === params.enable ? true : params.enable;
|
|
this.trigger = params.trigger && params.trigger.subscribe ? params.trigger : null;
|
|
this.placeholder = params.placeholder || '';
|
|
|
|
this.labeled = undefined !== params.label;
|
|
this.preLabeled = undefined !== params.preLabel;
|
|
this.triggered = undefined !== params.trigger && !!this.trigger;
|
|
|
|
this.classForTrigger = ko.observable('');
|
|
|
|
this.className = ko.computed(() => {
|
|
const size = ko.unwrap(this.size),
|
|
suffixValue = this.trigger ? ' ' + ('settings-saved-trigger-input ' + this.classForTrigger()).trim() : '';
|
|
return (0 < size ? 'span' + size : '') + suffixValue;
|
|
});
|
|
|
|
if (undefined !== params.width && params.element) {
|
|
params.element.querySelectorAll('input,select,textarea').forEach(node => node.style.width = params.width);
|
|
}
|
|
|
|
this.disposable.push(this.className);
|
|
|
|
if (this.trigger) {
|
|
this.setTriggerState(this.trigger());
|
|
|
|
this.disposable.push(this.trigger.subscribe(this.setTriggerState, this));
|
|
}
|
|
}
|
|
|
|
setTriggerState(value) {
|
|
switch (pInt(value)) {
|
|
case SaveSettingsStep.TrueResult:
|
|
this.classForTrigger('success');
|
|
break;
|
|
case SaveSettingsStep.FalseResult:
|
|
this.classForTrigger('error');
|
|
break;
|
|
default:
|
|
this.classForTrigger('');
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
export { AbstractInput };
|