mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-14 19:54:43 +08:00
9f1ea1a0fd
Bugfix Date.fromNow('past'/'future') reversed Replace Events[pub/sub]('interval.*') with setInterval() Events[pub/sub] to native Cleanup knockout extensions Replaced momentToNode with proper HTML5 <time> Cleanup Momentor
80 lines
2.5 KiB
JavaScript
80 lines
2.5 KiB
JavaScript
import ko from 'ko';
|
|
|
|
import { MESSAGES_PER_PAGE, MESSAGES_PER_PAGE_VALUES } from 'Common/Consts';
|
|
import { Layout, EditorDefaultType } from 'Common/Enums';
|
|
import { $htmlCL } from 'Common/Globals';
|
|
import { pInt } from 'Common/Utils';
|
|
|
|
import * as Settings from 'Storage/Settings';
|
|
|
|
class SettingsUserStore {
|
|
constructor() {
|
|
this.iAutoLogoutTimer = 0;
|
|
|
|
this.layout = ko
|
|
.observable(Layout.SidePreview)
|
|
.extend({ limitedList: [Layout.SidePreview, Layout.BottomPreview, Layout.NoPreview] });
|
|
|
|
this.editorDefaultType = ko.observable(EditorDefaultType.Html).extend({
|
|
limitedList: [
|
|
EditorDefaultType.Html,
|
|
EditorDefaultType.Plain,
|
|
EditorDefaultType.HtmlForced,
|
|
EditorDefaultType.PlainForced
|
|
]
|
|
});
|
|
|
|
this.messagesPerPage = ko.observable(MESSAGES_PER_PAGE).extend({ limitedList: MESSAGES_PER_PAGE_VALUES });
|
|
|
|
this.showImages = ko.observable(false);
|
|
this.useCheckboxesInList = ko.observable(true);
|
|
this.allowDraftAutosave = ko.observable(true);
|
|
this.useThreads = ko.observable(false);
|
|
this.replySameFolder = ko.observable(false);
|
|
|
|
this.autoLogout = ko.observable(30);
|
|
|
|
this.computers();
|
|
this.subscribers();
|
|
}
|
|
|
|
computers() {
|
|
this.usePreviewPane = ko.computed(() => Layout.NoPreview !== this.layout());
|
|
}
|
|
|
|
subscribers() {
|
|
this.layout.subscribe((value) => {
|
|
$htmlCL.toggle('rl-no-preview-pane', Layout.NoPreview === value);
|
|
$htmlCL.toggle('rl-side-preview-pane', Layout.SidePreview === value);
|
|
$htmlCL.toggle('rl-bottom-preview-pane', Layout.BottomPreview === value);
|
|
dispatchEvent(new CustomEvent('rl-layout', {detail:value}));
|
|
});
|
|
}
|
|
|
|
populate() {
|
|
this.layout(pInt(Settings.settingsGet('Layout')));
|
|
this.editorDefaultType(Settings.settingsGet('EditorDefaultType'));
|
|
|
|
this.autoLogout(pInt(Settings.settingsGet('AutoLogout')));
|
|
this.messagesPerPage(Settings.settingsGet('MPP'));
|
|
|
|
this.showImages(!!Settings.settingsGet('ShowImages'));
|
|
this.useCheckboxesInList(!!Settings.settingsGet('UseCheckboxesInList'));
|
|
this.allowDraftAutosave(!!Settings.settingsGet('AllowDraftAutosave'));
|
|
this.useThreads(!!Settings.settingsGet('UseThreads'));
|
|
this.replySameFolder(!!Settings.settingsGet('ReplySameFolder'));
|
|
|
|
const refresh = () => {
|
|
clearTimeout(this.iAutoLogoutTimer);
|
|
if (0 < this.autoLogout() && !Settings.settingsGet('AccountSignMe')) {
|
|
this.iAutoLogoutTimer = setTimeout(() =>
|
|
dispatchEvent(new CustomEvent('rl.auto-logout'))
|
|
, this.autoLogout() * 60000);
|
|
}
|
|
};
|
|
addEventListener('rl.auto-logout-refresh', refresh);
|
|
refresh();
|
|
}
|
|
}
|
|
|
|
export default new SettingsUserStore();
|