2016-06-30 13:21:47 +03:00
|
|
|
import $ from 'jquery';
|
2016-05-24 15:06:59 +03:00
|
|
|
import AuthenticatedRoute from 'ghost-admin/routes/authenticated';
|
|
|
|
import CurrentUserSettings from 'ghost-admin/mixins/current-user-settings';
|
2017-02-21 22:04:50 +03:00
|
|
|
import RSVP from 'rsvp';
|
2017-10-30 12:38:01 +03:00
|
|
|
import {inject as service} from '@ember/service';
|
2015-01-11 22:55:52 +03:00
|
|
|
|
2019-05-20 16:15:46 +03:00
|
|
|
export default AuthenticatedRoute.extend(CurrentUserSettings, {
|
2017-10-30 12:38:01 +03:00
|
|
|
settings: service(),
|
2015-01-11 22:55:52 +03:00
|
|
|
|
2015-11-15 14:06:49 +03:00
|
|
|
beforeModel() {
|
|
|
|
this._super(...arguments);
|
2015-04-14 18:04:16 +03:00
|
|
|
return this.get('session.user')
|
|
|
|
.then(this.transitionAuthor());
|
2015-01-11 22:55:52 +03:00
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
model() {
|
2017-02-21 22:04:50 +03:00
|
|
|
return RSVP.hash({
|
2019-03-06 16:53:54 +03:00
|
|
|
settings: this.settings.reload(),
|
|
|
|
themes: this.store.findAll('theme')
|
2015-01-11 22:55:52 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2018-01-11 01:57:43 +03:00
|
|
|
setupController(controller) {
|
2019-03-06 16:53:54 +03:00
|
|
|
controller.set('themes', this.store.peekAll('theme'));
|
|
|
|
this.controller.send('reset');
|
2016-02-09 20:16:18 +03:00
|
|
|
},
|
|
|
|
|
2019-12-13 20:09:06 +03:00
|
|
|
deactivate() {
|
|
|
|
this._super(...arguments);
|
|
|
|
this.controller.set('leaveSettingsTransition', null);
|
|
|
|
this.controller.set('showLeaveSettingsModal', false);
|
|
|
|
},
|
|
|
|
|
2015-01-14 17:46:29 +03:00
|
|
|
actions: {
|
2015-10-28 14:36:45 +03:00
|
|
|
save() {
|
2015-01-18 03:16:54 +03:00
|
|
|
// since shortcuts are run on the route, we have to signal to the components
|
|
|
|
// on the page that we're about to save.
|
2017-02-16 22:50:05 +03:00
|
|
|
$('.page-actions .gh-btn-blue').focus();
|
2015-01-18 03:16:54 +03:00
|
|
|
|
2019-03-06 16:53:54 +03:00
|
|
|
this.controller.send('save');
|
2015-10-05 09:07:44 +03:00
|
|
|
},
|
|
|
|
|
2017-10-31 18:27:25 +03:00
|
|
|
willTransition(transition) {
|
2019-03-06 16:53:54 +03:00
|
|
|
let controller = this.controller;
|
|
|
|
let modelIsDirty = controller.dirtyAttributes;
|
2017-10-31 18:27:25 +03:00
|
|
|
|
|
|
|
if (modelIsDirty) {
|
|
|
|
transition.abort();
|
|
|
|
controller.send('toggleLeaveSettingsModal', transition);
|
|
|
|
return;
|
|
|
|
}
|
2017-02-21 22:04:50 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
activateTheme(theme) {
|
2019-03-06 16:53:54 +03:00
|
|
|
return this.controller.send('activateTheme', theme);
|
2015-01-14 17:46:29 +03:00
|
|
|
}
|
2019-05-20 18:16:19 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
buildRouteInfoMetadata() {
|
|
|
|
return {
|
|
|
|
titleToken: 'Settings - Design'
|
|
|
|
};
|
2015-01-11 22:55:52 +03:00
|
|
|
}
|
|
|
|
});
|