mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 18:01:36 +03:00
5c0b63f300
closes #5630 - upgrade ember-cli to latest version - upgrade ember to latest 1.13.x release - upgrade ember data to latest 1.13.x release - update custom adapters and serialisers for new internal JSON-API compatible formats [(docs)][1] - update all store queries to use new standardised query methods [(docs)][2] - add ember-data-filter addon ready for store.filter removal in ember-data 2.0 [(docs)][3] - remove use of prototype extensions for computed properties and observers - consolidate pagination into a single route mixin and simplify configuration [1]: http://emberjs.com/blog/2015/06/18/ember-data-1-13-released.html#toc_transition-to-the-new-jsonserializer-and-restserializer-apis [2]: http://emberjs.com/blog/2015/06/18/ember-data-1-13-released.html#toc_simplified-find-methods [3]: http://emberjs.com/blog/2015/06/18/ember-data-1-13-released.html#toc_ds-store-filter-moved-to-an-addon
100 lines
3.0 KiB
JavaScript
100 lines
3.0 KiB
JavaScript
import Ember from 'ember';
|
|
import SettingsSaveMixin from 'ghost/mixins/settings-save';
|
|
import randomPassword from 'ghost/utils/random-password';
|
|
|
|
export default Ember.Controller.extend(SettingsSaveMixin, {
|
|
notifications: Ember.inject.service(),
|
|
config: Ember.inject.service(),
|
|
|
|
selectedTheme: Ember.computed('model.activeTheme', 'themes', function () {
|
|
var activeTheme = this.get('model.activeTheme'),
|
|
themes = this.get('themes'),
|
|
selectedTheme;
|
|
|
|
themes.forEach(function (theme) {
|
|
if (theme.name === activeTheme) {
|
|
selectedTheme = theme;
|
|
}
|
|
});
|
|
|
|
return selectedTheme;
|
|
}),
|
|
|
|
logoImageSource: Ember.computed('model.logo', function () {
|
|
return this.get('model.logo') || '';
|
|
}),
|
|
|
|
coverImageSource: Ember.computed('model.cover', function () {
|
|
return this.get('model.cover') || '';
|
|
}),
|
|
|
|
isDatedPermalinks: Ember.computed('model.permalinks', {
|
|
set: function (key, value) {
|
|
this.set('model.permalinks', value ? '/:year/:month/:day/:slug/' : '/:slug/');
|
|
|
|
var slugForm = this.get('model.permalinks');
|
|
return slugForm !== '/:slug/';
|
|
},
|
|
get: function () {
|
|
var slugForm = this.get('model.permalinks');
|
|
|
|
return slugForm !== '/:slug/';
|
|
}
|
|
}),
|
|
|
|
themes: Ember.computed(function () {
|
|
return this.get('model.availableThemes').reduce(function (themes, t) {
|
|
var theme = {};
|
|
|
|
theme.name = t.name;
|
|
theme.label = t.package ? t.package.name + ' - ' + t.package.version : t.name;
|
|
theme.package = t.package;
|
|
theme.active = !!t.active;
|
|
|
|
themes.push(theme);
|
|
|
|
return themes;
|
|
}, []);
|
|
}).readOnly(),
|
|
|
|
generatePassword: Ember.observer('model.isPrivate', function () {
|
|
this.get('model.errors').remove('password');
|
|
if (this.get('model.isPrivate') && this.get('model.hasDirtyAttributes')) {
|
|
this.get('model').set('password', randomPassword());
|
|
}
|
|
}),
|
|
|
|
save: function () {
|
|
var notifications = this.get('notifications'),
|
|
config = this.get('config');
|
|
|
|
return this.get('model').save().then(function (model) {
|
|
config.set('blogTitle', model.get('title'));
|
|
|
|
return model;
|
|
}).catch(function (error) {
|
|
if (error) {
|
|
notifications.showAPIError(error);
|
|
}
|
|
});
|
|
},
|
|
|
|
actions: {
|
|
validate: function (property) {
|
|
this.get('model').validate({property: property});
|
|
},
|
|
|
|
checkPostsPerPage: function () {
|
|
var postsPerPage = this.get('model.postsPerPage');
|
|
|
|
if (postsPerPage < 1 || postsPerPage > 1000 || isNaN(postsPerPage)) {
|
|
this.set('model.postsPerPage', 5);
|
|
}
|
|
},
|
|
|
|
setTheme: function (theme) {
|
|
this.set('model.activeTheme', theme.name);
|
|
}
|
|
}
|
|
});
|