mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
d53ef125e0
no issue - updates `package.json` details to better reflect the separation from the `Ghost` package - update ember config and all import statements to reflect the new `ghost-admin` module name in `package.json`
56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
import Ember from 'ember';
|
|
import ModalComponent from 'ghost-admin/components/modals/base';
|
|
|
|
const {
|
|
computed,
|
|
inject: {service}
|
|
} = Ember;
|
|
|
|
const {alias} = computed;
|
|
|
|
export default ModalComponent.extend({
|
|
|
|
submitting: false,
|
|
|
|
post: alias('model'),
|
|
|
|
notifications: service(),
|
|
routing: service('-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() {
|
|
this.get('notifications').showAlert('Your post could not be deleted. Please try again.', {type: 'error', key: 'post.delete.failed'});
|
|
},
|
|
|
|
actions: {
|
|
confirm() {
|
|
this.set('submitting', true);
|
|
|
|
this._deletePost().then(() => {
|
|
this._success();
|
|
}, () => {
|
|
this._failure();
|
|
}).finally(() => {
|
|
this.send('closeModal');
|
|
});
|
|
}
|
|
}
|
|
});
|