mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-13 11:13:07 +08:00
17669b7be0
Signature plugin fixes Add view decorator A large number of fixes
36 lines
1 KiB
JavaScript
36 lines
1 KiB
JavaScript
|
|
import ko from 'ko';
|
|
import {$html, bMobileDevice} from 'Common/Globals';
|
|
import * as Settings from 'Storage/Settings';
|
|
|
|
class AbstractAppStore
|
|
{
|
|
constructor() {
|
|
this.allowLanguagesOnSettings = ko.observable(true);
|
|
this.allowLanguagesOnLogin = ko.observable(true);
|
|
|
|
this.interfaceAnimation = ko.observable(true);
|
|
|
|
this.interfaceAnimation.subscribe((value) => {
|
|
const anim = bMobileDevice || !value;
|
|
$html.toggleClass('rl-anim', !anim).toggleClass('no-rl-anim', anim);
|
|
});
|
|
|
|
this.interfaceAnimation.valueHasMutated();
|
|
|
|
this.prem = ko.observable(false);
|
|
this.community = ko.observable(true);
|
|
}
|
|
|
|
populate() {
|
|
this.allowLanguagesOnLogin(!!Settings.settingsGet('AllowLanguagesOnLogin'));
|
|
this.allowLanguagesOnSettings(!!Settings.settingsGet('AllowLanguagesOnSettings'));
|
|
|
|
this.interfaceAnimation(!!Settings.settingsGet('InterfaceAnimation'));
|
|
|
|
this.prem(!!Settings.settingsGet('PremType'));
|
|
this.community(!!Settings.settingsGet('Community'));
|
|
}
|
|
}
|
|
|
|
export {AbstractAppStore, AbstractAppStore as default};
|