mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-11 01:23:43 +08:00
78 lines
2.3 KiB
JavaScript
78 lines
2.3 KiB
JavaScript
import ko from 'ko';
|
|
|
|
import { MESSAGES_PER_PAGE_VALUES } from 'Common/Consts';
|
|
import { Layout, EditorDefaultType } from 'Common/Enums';
|
|
import { pInt } from 'Common/Utils';
|
|
|
|
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(20).extend({ limitedList: MESSAGES_PER_PAGE_VALUES });
|
|
|
|
ko.addObservablesTo(this, {
|
|
showImages: false,
|
|
useCheckboxesInList: true,
|
|
allowDraftAutosave: true,
|
|
useThreads: false,
|
|
replySameFolder: false,
|
|
|
|
autoLogout: 30
|
|
});
|
|
|
|
this.usePreviewPane = ko.computed(() => Layout.NoPreview !== this.layout());
|
|
|
|
this.subscribers();
|
|
}
|
|
|
|
subscribers() {
|
|
const htmlCL = document.documentElement.classList;
|
|
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() {
|
|
const settingsGet = rl.settings.get;
|
|
this.layout(pInt(settingsGet('Layout')));
|
|
this.editorDefaultType(settingsGet('EditorDefaultType'));
|
|
|
|
this.autoLogout(pInt(settingsGet('AutoLogout')));
|
|
this.messagesPerPage(settingsGet('MPP'));
|
|
|
|
this.showImages(!!settingsGet('ShowImages'));
|
|
this.useCheckboxesInList(!!settingsGet('UseCheckboxesInList'));
|
|
this.allowDraftAutosave(!!settingsGet('AllowDraftAutosave'));
|
|
this.useThreads(!!settingsGet('UseThreads'));
|
|
this.replySameFolder(!!settingsGet('ReplySameFolder'));
|
|
|
|
const refresh = () => {
|
|
clearTimeout(this.iAutoLogoutTimer);
|
|
if (0 < this.autoLogout() && !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();
|