mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-24 19:33:02 +03:00
983110d931
no issue - add eslint-plugin-ember, configure no-old-shims rule - run `eslint --fix` on `app`, `lib`, `mirage`, and `tests` to move imports to the new module imports - further cleanup of Ember globals usage - remove event-dispatcher initializer now that `canDispatchToEventManager` is deprecated
54 lines
1.7 KiB
JavaScript
54 lines
1.7 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 styleBody from 'ghost-admin/mixins/style-body';
|
|
import {inject as injectService} from '@ember/service';
|
|
|
|
export default AuthenticatedRoute.extend(styleBody, CurrentUserSettings, {
|
|
settings: injectService(),
|
|
|
|
titleToken: 'Settings - Design',
|
|
classNames: ['settings-view-design'],
|
|
|
|
beforeModel() {
|
|
this._super(...arguments);
|
|
return this.get('session.user')
|
|
.then(this.transitionAuthor());
|
|
},
|
|
|
|
model() {
|
|
return RSVP.hash({
|
|
settings: this.get('settings').reload(),
|
|
themes: this.get('store').findAll('theme')
|
|
});
|
|
},
|
|
|
|
setupController(controller, models) {
|
|
controller.set('model', models.settings);
|
|
controller.set('themes', this.get('store').peekAll('theme'));
|
|
this.get('controller').send('reset');
|
|
},
|
|
|
|
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.get('controller').send('save');
|
|
},
|
|
|
|
willTransition() {
|
|
// 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);
|
|
},
|
|
|
|
activateTheme(theme) {
|
|
return this.get('controller').send('activateTheme', theme);
|
|
}
|
|
}
|
|
});
|