Ghost/ghost/admin/app/components/modal-email-design-settings.js
Fabien O'Carroll 65b310d500 Renamed footer setting to newsletterFooterContent
no-issue

This is more generic and matches the setting in the backend.
2020-11-13 13:32:31 +00:00

74 lines
1.8 KiB
JavaScript

import ModalComponent from 'ghost-admin/components/modal-base';
import {action} from '@ember/object';
import {inject as service} from '@ember/service';
import {task} from 'ember-concurrency-decorators';
import {tracked} from '@glimmer/tracking';
export default class ModalEmailDesignSettings extends ModalComponent {
@service()
settings;
@service()
config;
@tracked
showHeader = this.settings.get('newsletterShowHeader');
@tracked
bodyFontCategory = this.settings.get('newsletterBodyFontCategory');
@tracked
showBadge = this.settings.get('newsletterShowBadge');
@tracked
footerContent = this.settings.get('newsletterFooterContent');
@action
setShowHeader(event) {
this.showHeader = event.target.checked;
}
@action
setBodyFontCategory(value) {
this.bodyFontCategory = value;
}
@action
stopPropagation(event) {
event.stopPropagation();
}
@action
setShowBadge(event) {
this.showBadge = event.target.checked;
}
@action
setFooterContent(event) {
this.footerContent = event.target.value;
}
@action
confirm() {
this.saveSettings.perform();
}
@task({drop: true})
*saveSettings() {
if (this.showHeader !== null) {
this.settings.set('newsletterShowHeader', this.showHeader);
}
if (this.bodyFontCategory !== null) {
this.settings.set('newsletterBodyFontCategory', this.bodyFontCategory);
}
if (this.showBadge !== null) {
this.settings.set('newsletterShowBadge', this.showBadge);
}
if (this.footerContent !== null) {
this.settings.set('newsletterFooterContent', this.footerContent);
}
yield this.settings.save();
this.closeModal();
}
}