mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
a6c005e5be
no issue We weren't correctly clearing state for the "display modal" booleans when leaving screens. This meant that it was possible to end up in a state where where every time you access a screen you get the unsaved changes modal
65 lines
1.8 KiB
JavaScript
65 lines
1.8 KiB
JavaScript
import $ from 'jquery';
|
|
import AuthenticatedRoute from 'ghost-admin/routes/authenticated';
|
|
import CurrentUserSettings from 'ghost-admin/mixins/current-user-settings';
|
|
import RSVP from 'rsvp';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default AuthenticatedRoute.extend(CurrentUserSettings, {
|
|
settings: service(),
|
|
|
|
beforeModel() {
|
|
this._super(...arguments);
|
|
return this.get('session.user')
|
|
.then(this.transitionAuthor());
|
|
},
|
|
|
|
model() {
|
|
return RSVP.hash({
|
|
settings: this.settings.reload(),
|
|
themes: this.store.findAll('theme')
|
|
});
|
|
},
|
|
|
|
setupController(controller) {
|
|
controller.set('themes', this.store.peekAll('theme'));
|
|
this.controller.send('reset');
|
|
},
|
|
|
|
deactivate() {
|
|
this._super(...arguments);
|
|
this.controller.set('leaveSettingsTransition', null);
|
|
this.controller.set('showLeaveSettingsModal', false);
|
|
},
|
|
|
|
actions: {
|
|
save() {
|
|
// since shortcuts are run on the route, we have to signal to the components
|
|
// on the page that we're about to save.
|
|
$('.page-actions .gh-btn-blue').focus();
|
|
|
|
this.controller.send('save');
|
|
},
|
|
|
|
willTransition(transition) {
|
|
let controller = this.controller;
|
|
let modelIsDirty = controller.dirtyAttributes;
|
|
|
|
if (modelIsDirty) {
|
|
transition.abort();
|
|
controller.send('toggleLeaveSettingsModal', transition);
|
|
return;
|
|
}
|
|
},
|
|
|
|
activateTheme(theme) {
|
|
return this.controller.send('activateTheme', theme);
|
|
}
|
|
},
|
|
|
|
buildRouteInfoMetadata() {
|
|
return {
|
|
titleToken: 'Settings - Design'
|
|
};
|
|
}
|
|
});
|