mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-24 11:22:19 +03:00
679dc3c0d6
* Separated theme and design settings
59 lines
1.5 KiB
JavaScript
59 lines
1.5 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()
|
|
});
|
|
},
|
|
|
|
setupController() {
|
|
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;
|
|
}
|
|
}
|
|
},
|
|
|
|
buildRouteInfoMetadata() {
|
|
return {
|
|
titleToken: 'Settings - Design'
|
|
};
|
|
}
|
|
});
|