mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 11:54:33 +03:00
c2557fb2a5
no issue - bumped `ember`, `ember-cli`, `ember-data` and related dependencies - bumped yarn.lock sub-dependencies - use new public `router` service in place of the private `-routing` service
54 lines
1.3 KiB
JavaScript
54 lines
1.3 KiB
JavaScript
import ModalComponent from 'ghost-admin/components/modals/base';
|
|
import {alias} from '@ember/object/computed';
|
|
import {inject as injectService} from '@ember/service';
|
|
import {task} from 'ember-concurrency';
|
|
|
|
export default ModalComponent.extend({
|
|
|
|
post: alias('model.post'),
|
|
onSuccess: alias('model.onSuccess'),
|
|
|
|
notifications: injectService(),
|
|
|
|
_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');
|
|
|
|
// trigger the success action
|
|
if (this.get('onSuccess')) {
|
|
this.get('onSuccess')();
|
|
}
|
|
},
|
|
|
|
_failure(error) {
|
|
this.get('notifications').showAPIError(error, {key: 'post.delete.failed'});
|
|
},
|
|
|
|
deletePost: task(function* () {
|
|
try {
|
|
yield this._deletePost();
|
|
this._success();
|
|
} catch (e) {
|
|
this._failure(e);
|
|
} finally {
|
|
this.send('closeModal');
|
|
}
|
|
}).drop(),
|
|
|
|
actions: {
|
|
confirm() {
|
|
this.get('deletePost').perform();
|
|
}
|
|
}
|
|
});
|