mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
71c358b638
No Issue - Switches to the newer style of dependency injection. - Instead of injection Controllers via "needs," use Ember.inject.controller(). - Get rid of initializers that were only injecting objects into various factories. Converts these objects into Ember.Service objects and declaratively inject them where needed via Ember.inject.service(). The added benefit to this is that it's no longer a mystery where these properties/methods come from and it's straightforward to inject them where needed.
62 lines
1.8 KiB
JavaScript
62 lines
1.8 KiB
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Controller.extend({
|
|
notifications: Ember.inject.service(),
|
|
|
|
args: Ember.computed.alias('model'),
|
|
|
|
actions: {
|
|
confirmAccept: function () {
|
|
var args = this.get('args'),
|
|
editorController,
|
|
model,
|
|
transition;
|
|
|
|
if (Ember.isArray(args)) {
|
|
editorController = args[0];
|
|
transition = args[1];
|
|
model = editorController.get('model');
|
|
}
|
|
|
|
if (!transition || !editorController) {
|
|
this.get('notifications').showError('Sorry, there was an error in the application. Please let the Ghost team know what happened.');
|
|
|
|
return true;
|
|
}
|
|
|
|
// definitely want to clear the data store and post of any unsaved, client-generated tags
|
|
model.updateTags();
|
|
|
|
if (model.get('isNew')) {
|
|
// the user doesn't want to save the new, unsaved post, so delete it.
|
|
model.deleteRecord();
|
|
} else {
|
|
// roll back changes on model props
|
|
model.rollback();
|
|
}
|
|
|
|
// setting isDirty to false here allows willTransition on the editor route to succeed
|
|
editorController.set('isDirty', false);
|
|
|
|
// since the transition is now certain to complete, we can unset window.onbeforeunload here
|
|
window.onbeforeunload = null;
|
|
|
|
transition.retry();
|
|
},
|
|
|
|
confirmReject: function () {
|
|
}
|
|
},
|
|
|
|
confirm: {
|
|
accept: {
|
|
text: 'Leave',
|
|
buttonClass: 'btn btn-red'
|
|
},
|
|
reject: {
|
|
text: 'Stay',
|
|
buttonClass: 'btn btn-default btn-minor'
|
|
}
|
|
}
|
|
});
|