mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-04 08:54:36 +03:00
da4270ce35
- Every route can set a title token that is combined with the blog’s title, resulting in titles like ‘Content - Test Blog’. - Subroutes are supported (‘Settings - General - Test Blog’) - The blog’s name is applied to and taken from the `config` object to spare Ember a REST call via `store.find(‘settings’)`. - Tests have been changed to test for the new titles. - The initially proposed solution (https://github.com/paddle8/ember-document-title) doesn’t play nice with EAK, which is why I went with this solution (https://gist.github.com/machty/8413411) by Ember.JS core dev @Machty.
32 lines
1.1 KiB
JavaScript
32 lines
1.1 KiB
JavaScript
import AuthenticatedRoute from 'ghost/routes/authenticated';
|
|
import loadingIndicator from 'ghost/mixins/loading-indicator';
|
|
import styleBody from 'ghost/mixins/style-body';
|
|
|
|
var SettingsAboutRoute = AuthenticatedRoute.extend(styleBody, loadingIndicator, {
|
|
titleToken: 'About',
|
|
|
|
classNames: ['settings-view-about'],
|
|
|
|
cachedConfig: false,
|
|
model: function () {
|
|
var cachedConfig = this.get('cachedConfig'),
|
|
self = this;
|
|
if (cachedConfig) {
|
|
return cachedConfig;
|
|
}
|
|
|
|
return ic.ajax.request(this.get('ghostPaths.url').api('configuration'))
|
|
.then(function (configurationResponse) {
|
|
var configKeyValues = configurationResponse.configuration;
|
|
cachedConfig = {};
|
|
configKeyValues.forEach(function (configKeyValue) {
|
|
cachedConfig[configKeyValue.key] = configKeyValue.value;
|
|
});
|
|
self.set('cachedConfig', cachedConfig);
|
|
return cachedConfig;
|
|
});
|
|
}
|
|
});
|
|
|
|
export default SettingsAboutRoute;
|