mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-06 14:58:19 +08:00
80 lines
1.6 KiB
React
80 lines
1.6 KiB
React
|
|
||
|
import Utils from 'Common/Utils';
|
||
|
import {SaveSettingsStep} from 'Common/Enums';
|
||
|
import {AbstractComponent, componentExportHelper} from 'Component/Abstract';
|
||
|
|
||
|
class SaveTriggerComponent extends AbstractComponent
|
||
|
{
|
||
|
/**
|
||
|
* @param {Object} params
|
||
|
*/
|
||
|
constructor(params) {
|
||
|
|
||
|
super();
|
||
|
|
||
|
this.element = params.element || null;
|
||
|
this.value = params.value && params.value.subscribe ? params.value : null;
|
||
|
|
||
|
if (this.element)
|
||
|
{
|
||
|
if (this.value)
|
||
|
{
|
||
|
this.element.css('display', 'inline-block');
|
||
|
|
||
|
if (params.verticalAlign)
|
||
|
{
|
||
|
this.element.css('vertical-align', params.verticalAlign);
|
||
|
}
|
||
|
|
||
|
this.setState(this.value());
|
||
|
|
||
|
this.disposable.push(
|
||
|
this.value.subscribe(this.setState, this)
|
||
|
);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
this.element.hide();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
setState(value) {
|
||
|
|
||
|
switch (Utils.pInt(value))
|
||
|
{
|
||
|
case SaveSettingsStep.TrueResult:
|
||
|
this.element
|
||
|
.find('.animated,.error').hide().removeClass('visible')
|
||
|
.end()
|
||
|
.find('.success').show().addClass('visible')
|
||
|
;
|
||
|
break;
|
||
|
case SaveSettingsStep.FalseResult:
|
||
|
this.element
|
||
|
.find('.animated,.success').hide().removeClass('visible')
|
||
|
.end()
|
||
|
.find('.error').show().addClass('visible')
|
||
|
;
|
||
|
break;
|
||
|
case SaveSettingsStep.Animate:
|
||
|
this.element
|
||
|
.find('.error,.success').hide().removeClass('visible')
|
||
|
.end()
|
||
|
.find('.animated').show().addClass('visible')
|
||
|
;
|
||
|
break;
|
||
|
default:
|
||
|
case SaveSettingsStep.Idle:
|
||
|
this.element
|
||
|
.find('.animated').hide()
|
||
|
.end()
|
||
|
.find('.error,.success').removeClass('visible')
|
||
|
;
|
||
|
break;
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
|
||
|
module.exports = componentExportHelper(SaveTriggerComponent, 'SaveTriggerComponent');
|