mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-07 07:18:39 +08:00
75 lines
1.7 KiB
JavaScript
75 lines
1.7 KiB
JavaScript
import ko from 'ko';
|
|
|
|
import { i18n } from 'Common/Translator';
|
|
|
|
import TemplateStore from 'Stores/User/Template';
|
|
import Remote from 'Remote/User/Ajax';
|
|
|
|
import { getApp } from 'Helper/Apps/User';
|
|
|
|
import { showScreenPopup } from 'Knoin/Knoin';
|
|
|
|
class TemplatesUserSettings {
|
|
constructor() {
|
|
this.templates = TemplateStore.templates;
|
|
|
|
this.processText = ko.computed(() =>
|
|
TemplateStore.templates.loading() ? i18n('SETTINGS_TEMPLETS/LOADING_PROCESS') : ''
|
|
);
|
|
this.visibility = ko.computed(() => ('' === this.processText() ? 'hidden' : 'visible'));
|
|
|
|
this.templateForDeletion = ko.observable(null).deleteAccessHelper();
|
|
}
|
|
|
|
scrollableOptions(sWrapper) {
|
|
return {
|
|
handle: '.drag-handle',
|
|
containment: sWrapper || 'parent',
|
|
axis: 'y'
|
|
};
|
|
}
|
|
|
|
addNewTemplate() {
|
|
showScreenPopup(require('View/Popup/Template'));
|
|
}
|
|
|
|
editTemplate(oTemplateItem) {
|
|
if (oTemplateItem) {
|
|
showScreenPopup(require('View/Popup/Template'), [oTemplateItem]);
|
|
}
|
|
}
|
|
|
|
deleteTemplate(templateToRemove) {
|
|
if (templateToRemove && templateToRemove.deleteAccess()) {
|
|
this.templateForDeletion(null);
|
|
|
|
if (templateToRemove) {
|
|
this.templates.remove((template) => templateToRemove === template);
|
|
|
|
Remote.templateDelete(() => {
|
|
this.reloadTemplates();
|
|
}, templateToRemove.id);
|
|
}
|
|
}
|
|
}
|
|
|
|
reloadTemplates() {
|
|
getApp().templates();
|
|
}
|
|
|
|
onBuild(oDom) {
|
|
const self = this;
|
|
|
|
oDom.on('click', '.templates-list .template-item .e-action', function() {
|
|
// eslint-disable-line prefer-arrow-callback
|
|
const template = ko.dataFor(this); // eslint-disable-line no-invalid-this
|
|
if (template) {
|
|
self.editTemplate(template);
|
|
}
|
|
});
|
|
|
|
this.reloadTemplates();
|
|
}
|
|
}
|
|
|
|
export { TemplatesUserSettings, TemplatesUserSettings as default };
|