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';
|
|
|
|
import styleBody from 'ghost-admin/mixins/style-body';
|
2017-02-21 22:04:50 +03:00
|
|
|
import RSVP from 'rsvp';
|
2015-01-11 22:55:52 +03:00
|
|
|
|
2015-08-19 14:55:40 +03:00
|
|
|
export default AuthenticatedRoute.extend(styleBody, CurrentUserSettings, {
|
2017-02-21 22:04:50 +03:00
|
|
|
titleToken: 'Settings - Design',
|
2015-01-11 22:55:52 +03:00
|
|
|
|
2017-02-21 22:04:50 +03:00
|
|
|
classNames: ['settings-view-design'],
|
|
|
|
|
|
|
|
// TODO: replace with a synchronous settings service
|
|
|
|
querySettings() {
|
|
|
|
return this.store.queryRecord('setting', {type: 'blog,theme,private'});
|
|
|
|
},
|
2015-02-03 19:29:01 +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({
|
|
|
|
settings: this.querySettings(),
|
|
|
|
themes: this.get('store').findAll('theme')
|
2015-01-11 22:55:52 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2017-02-21 22:04:50 +03:00
|
|
|
setupController(controller, models) {
|
|
|
|
controller.set('model', models.settings);
|
|
|
|
controller.set('themes', this.get('store').peekAll('theme'));
|
2016-02-09 20:16:18 +03:00
|
|
|
this.get('controller').send('reset');
|
|
|
|
},
|
|
|
|
|
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
|
|
|
|
2015-01-14 17:46:29 +03:00
|
|
|
this.get('controller').send('save');
|
2015-10-05 09:07:44 +03:00
|
|
|
},
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
willTransition() {
|
2015-10-05 09:07:44 +03:00
|
|
|
// reset the model so that our CPs re-calc and unsaved changes aren't
|
|
|
|
// persisted across transitions
|
|
|
|
this.set('controller.model', null);
|
|
|
|
return this._super(...arguments);
|
2017-02-21 22:04:50 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
activateTheme(theme) {
|
2017-03-03 18:31:42 +03:00
|
|
|
return this.get('controller').send('activateTheme', theme);
|
2015-01-14 17:46:29 +03:00
|
|
|
}
|
2015-01-11 22:55:52 +03:00
|
|
|
}
|
|
|
|
});
|