mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-29 22:01:49 +03:00
e01ffa3620
no issue - review use of Ember core hooks and add a call to `this._super` if missing - fix a few occurrences of using the wrong component lifecycle hooks that could result in multiple/duplicate event handlers being attached `_super` should always be called when overriding Ember's base hooks so that core functionality or app functionality added through extensions, mixins or addons is not lost. This is important as it guards against issues arising from later refactorings or core changes. As example of lost functionality, there were a number of routes that extended from `AuthenticatedRoute` but then overrode the `beforeModel` hook without calling `_super` which meant that the route was no longer treated as authenticated.
32 lines
951 B
JavaScript
32 lines
951 B
JavaScript
import Ember from 'ember';
|
|
import Configuration from 'ember-simple-auth/configuration';
|
|
import styleBody from 'ghost/mixins/style-body';
|
|
|
|
const {Route, inject} = Ember;
|
|
|
|
export default Route.extend(styleBody, {
|
|
classNames: ['ghost-reset'],
|
|
|
|
notifications: inject.service(),
|
|
session: inject.service(),
|
|
|
|
beforeModel() {
|
|
this._super(...arguments);
|
|
if (this.get('session.isAuthenticated')) {
|
|
this.get('notifications').showAlert('You can\'t reset your password while you\'re signed in.', {type: 'warn', delayed: true, key: 'password.reset.signed-in'});
|
|
this.transitionTo(Configuration.routeAfterAuthentication);
|
|
}
|
|
},
|
|
|
|
setupController(controller, params) {
|
|
this._super(...arguments);
|
|
controller.token = params.token;
|
|
},
|
|
|
|
// Clear out any sensitive information
|
|
deactivate() {
|
|
this._super(...arguments);
|
|
this.controller.clearData();
|
|
}
|
|
});
|