mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 11:54:33 +03:00
eb2a0359cf
closes https://github.com/TryGhost/Ghost/issues/6974 - update "change password" fields/process to use inline validations - remove `notifications.showErrors` and update all uses of it to `showAPIError` - display multiple API errors as alerts rather than toaster notifications - refactor `notifications.showAPIError` - remove `notifications.showErrors`, use a loop in `showAPIError` instead - properly determine the message from `AjaxError` or `AdapterError` objects - determine a unique key if possible so that we don't lose multiple different alerts - add `ServerUnreachable` error for when we get a status code of 0 (eg, when the ghost service has been shut down) - simplify error messages for our custom ajax errors
50 lines
1.2 KiB
JavaScript
50 lines
1.2 KiB
JavaScript
import {alias} from 'ember-computed';
|
|
import injectService from 'ember-service/inject';
|
|
import ModalComponent from 'ghost-admin/components/modals/base';
|
|
|
|
export default ModalComponent.extend({
|
|
|
|
submitting: false,
|
|
|
|
post: alias('model'),
|
|
|
|
notifications: injectService(),
|
|
routing: injectService('-routing'),
|
|
|
|
_deletePost() {
|
|
let post = this.get('post');
|
|
|
|
// definitely want to clear the data store and post of any unsaved,
|
|
// client-generated tags
|
|
post.updateTags();
|
|
|
|
return post.destroyRecord();
|
|
},
|
|
|
|
_success() {
|
|
// clear any previous error messages
|
|
this.get('notifications').closeAlerts('post.delete');
|
|
|
|
// redirect to content screen
|
|
this.get('routing').transitionTo('posts');
|
|
},
|
|
|
|
_failure(error) {
|
|
this.get('notifications').showAPIError(error, {key: 'post.delete.failed'});
|
|
},
|
|
|
|
actions: {
|
|
confirm() {
|
|
this.set('submitting', true);
|
|
|
|
this._deletePost().then(() => {
|
|
this._success();
|
|
}, (error) => {
|
|
this._failure(error);
|
|
}).finally(() => {
|
|
this.send('closeModal');
|
|
});
|
|
}
|
|
}
|
|
});
|