mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-05 06:22:52 +08:00
117 lines
3 KiB
JavaScript
117 lines
3 KiB
JavaScript
import ko from 'ko';
|
|
|
|
import { SaveSettingsStep, UploadErrorCode, Capa } from 'Common/Enums';
|
|
import { changeTheme, convertThemeName } from 'Common/Utils';
|
|
import { themePreviewLink, serverRequest } from 'Common/Links';
|
|
import { i18n } from 'Common/Translator';
|
|
import { Settings } from 'Common/Globals';
|
|
|
|
import { ThemeStore } from 'Stores/Theme';
|
|
|
|
import Remote from 'Remote/User/Fetch';
|
|
|
|
export class ThemesUserSettings /*extends AbstractViewSettings*/ {
|
|
constructor() {
|
|
this.theme = ThemeStore.theme;
|
|
this.themes = ThemeStore.themes;
|
|
this.themesObjects = ko.observableArray();
|
|
|
|
this.background = {};
|
|
this.background.name = ThemeStore.userBackgroundName;
|
|
this.background.hash = ThemeStore.userBackgroundHash;
|
|
this.background.uploaderButton = ko.observable(null);
|
|
this.background.loading = ko.observable(false);
|
|
this.background.error = ko.observable('');
|
|
|
|
this.capaUserBackground = ko.observable(Settings.capa(Capa.UserBackground));
|
|
|
|
this.themeTrigger = ko.observable(SaveSettingsStep.Idle).extend({ debounce: 100 });
|
|
|
|
this.theme.subscribe((value) => {
|
|
this.themesObjects.forEach(theme => {
|
|
theme.selected(value === theme.name);
|
|
});
|
|
|
|
changeTheme(value, this.themeTrigger);
|
|
|
|
Remote.saveSettings(null, {
|
|
Theme: value
|
|
});
|
|
});
|
|
}
|
|
|
|
onBuild() {
|
|
const currentTheme = this.theme();
|
|
|
|
this.themesObjects(
|
|
this.themes.map(theme => ({
|
|
name: theme,
|
|
nameDisplay: convertThemeName(theme),
|
|
selected: ko.observable(theme === currentTheme),
|
|
themePreviewSrc: themePreviewLink(theme)
|
|
}))
|
|
);
|
|
|
|
// initUploader
|
|
|
|
if (this.background.uploaderButton() && this.capaUserBackground()) {
|
|
const oJua = new Jua({
|
|
action: serverRequest('UploadBackground'),
|
|
limit: 1,
|
|
clickElement: this.background.uploaderButton()
|
|
});
|
|
|
|
oJua
|
|
.on('onStart', () => {
|
|
this.background.loading(true);
|
|
this.background.error('');
|
|
return true;
|
|
})
|
|
.on('onComplete', (id, result, data) => {
|
|
this.background.loading(false);
|
|
|
|
if (result && id && data && data.Result && data.Result.Name && data.Result.Hash) {
|
|
this.background.name(data.Result.Name);
|
|
this.background.hash(data.Result.Hash);
|
|
} else {
|
|
this.background.name('');
|
|
this.background.hash('');
|
|
|
|
let errorMsg = '';
|
|
if (data.ErrorCode) {
|
|
switch (data.ErrorCode) {
|
|
case UploadErrorCode.FileIsTooBig:
|
|
errorMsg = i18n('SETTINGS_THEMES/ERROR_FILE_IS_TOO_BIG');
|
|
break;
|
|
case UploadErrorCode.FileType:
|
|
errorMsg = i18n('SETTINGS_THEMES/ERROR_FILE_TYPE_ERROR');
|
|
break;
|
|
// no default
|
|
}
|
|
}
|
|
|
|
if (!errorMsg && data.ErrorMessage) {
|
|
errorMsg = data.ErrorMessage;
|
|
}
|
|
|
|
this.background.error(errorMsg || i18n('SETTINGS_THEMES/ERROR_UNKNOWN'));
|
|
}
|
|
|
|
return true;
|
|
});
|
|
}
|
|
}
|
|
|
|
onShow() {
|
|
this.background.error('');
|
|
}
|
|
|
|
clearBackground() {
|
|
if (this.capaUserBackground()) {
|
|
Remote.request('ClearUserBackground', () => {
|
|
this.background.name('');
|
|
this.background.hash('');
|
|
});
|
|
}
|
|
}
|
|
}
|