Ghost/ghost/admin/app/components/modal-branding.js
Kevin Ansfield 1ad2c05d37 Bumped eslint-plugin-ghost and fixed linter errors
no issue

- new linting rules that needed fixing:
   - calling `super` in lifecycle hooks
   - no usage of String prototype extensions
2021-07-15 15:27:29 +01:00

51 lines
1.3 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';
export default ModalComponent.extend({
config: service(),
notifications: service(),
settings: service(),
willDestroyElement() {
this._super(...arguments);
// reset any unsaved changes when closing
this.settings.rollbackAttributes();
},
actions: {
confirm() {
// noop
}
},
registerPreviewIframe: action(function (element) {
this.previewIframe = element;
}),
replacePreviewContents: action(function (html) {
if (this.previewIframe) {
this.previewIframe.contentWindow.document.open();
this.previewIframe.contentWindow.document.write(html);
this.previewIframe.contentWindow.document.close();
}
}),
saveTask: task(function* () {
try {
if (this.get('settings.errors').length !== 0) {
return;
}
yield this.settings.save();
this.closeModal();
return true;
} catch (error) {
if (error) {
this.notifications.showAPIError(error);
throw error;
}
}
})
});