mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 20:24:51 +08:00
75 lines
2.3 KiB
JavaScript
75 lines
2.3 KiB
JavaScript
import ko from 'ko';
|
|
import { koComputable, addSubscribablesTo } from 'External/ko';
|
|
|
|
import { SetSystemFoldersNotification } from 'Common/EnumsUser';
|
|
import { UNUSED_OPTION_VALUE } from 'Common/Consts';
|
|
import { defaultOptionsAfterRender } from 'Common/Utils';
|
|
import { folderListOptionsBuilder } from 'Common/Folders';
|
|
import { i18n } from 'Common/Translator';
|
|
|
|
import { FolderUserStore } from 'Stores/User/Folder';
|
|
|
|
import { AbstractViewPopup } from 'Knoin/AbstractViews';
|
|
|
|
export class FolderSystemPopupView extends AbstractViewPopup {
|
|
constructor() {
|
|
super('FolderSystem');
|
|
|
|
this.notification = ko.observable('');
|
|
|
|
this.folderSelectList = koComputable(() =>
|
|
folderListOptionsBuilder(
|
|
FolderUserStore.folderListSystemNames(),
|
|
[
|
|
['', i18n('POPUPS_SYSTEM_FOLDERS/SELECT_CHOOSE_ONE')],
|
|
[UNUSED_OPTION_VALUE, i18n('POPUPS_SYSTEM_FOLDERS/SELECT_UNUSE_NAME')]
|
|
]
|
|
)
|
|
);
|
|
|
|
this.sentFolder = FolderUserStore.sentFolder;
|
|
this.draftsFolder = FolderUserStore.draftsFolder;
|
|
this.spamFolder = FolderUserStore.spamFolder;
|
|
this.trashFolder = FolderUserStore.trashFolder;
|
|
this.archiveFolder = FolderUserStore.archiveFolder;
|
|
|
|
const fSaveSystemFolders = (()=>FolderUserStore.saveSystemFolders()).debounce(1000);
|
|
|
|
addSubscribablesTo(FolderUserStore, {
|
|
sentFolder: fSaveSystemFolders,
|
|
draftsFolder: fSaveSystemFolders,
|
|
spamFolder: fSaveSystemFolders,
|
|
trashFolder: fSaveSystemFolders,
|
|
archiveFolder: fSaveSystemFolders
|
|
});
|
|
|
|
this.defaultOptionsAfterRender = defaultOptionsAfterRender;
|
|
}
|
|
|
|
/**
|
|
* @param {number=} notificationType = SetSystemFoldersNotification.None
|
|
*/
|
|
onShow(notificationType = SetSystemFoldersNotification.None) {
|
|
let notification = '', prefix = 'POPUPS_SYSTEM_FOLDERS/NOTIFICATION_';
|
|
switch (notificationType) {
|
|
case SetSystemFoldersNotification.Sent:
|
|
notification = i18n(prefix + 'SENT');
|
|
break;
|
|
case SetSystemFoldersNotification.Draft:
|
|
notification = i18n(prefix + 'DRAFTS');
|
|
break;
|
|
case SetSystemFoldersNotification.Spam:
|
|
notification = i18n(prefix + 'SPAM');
|
|
break;
|
|
case SetSystemFoldersNotification.Trash:
|
|
notification = i18n(prefix + 'TRASH');
|
|
break;
|
|
case SetSystemFoldersNotification.Archive:
|
|
notification = i18n(prefix + 'ARCHIVE');
|
|
break;
|
|
// no default
|
|
}
|
|
|
|
this.notification(notification);
|
|
}
|
|
}
|