mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 16:14:25 +03:00
7b3712a15b
refs https://github.com/TryGhost/Team/issues/2393 - During boot and loading the active theme, we now cache the result of the gscan validation. Cache configuration can happen in `adapters.cache.gscan` - We now also return non-fatal errors when activating or adding a theme. - When the `themeErrorsNotification` feature flag is on, we fetch the active theme (which includes the validation information) when loading admin - If the currently active theme has errors, we show an error notification that can open the error modal - Added a new endpoint: `/ghost/api/admin/themes/active/` that returns the result of the last gscan validation of the active theme. If no cache is available, it will run a new gscan validation. - Added new permissions for the active action/endpoint (author, editor, administrator)
53 lines
1.7 KiB
JavaScript
53 lines
1.7 KiB
JavaScript
import Model, {attr} from '@ember-data/model';
|
|
import {computed} from '@ember/object';
|
|
import {isBlank} from '@ember/utils';
|
|
|
|
export default Model.extend({
|
|
active: attr('boolean'),
|
|
errors: attr('raw', {defaultValue: () => []}),
|
|
name: attr('string'),
|
|
package: attr('raw'),
|
|
templates: attr('raw', {defaultValue: () => []}),
|
|
warnings: attr('raw', {defaultValue: () => []}),
|
|
|
|
customTemplates: computed('templates.[]', function () {
|
|
let templates = this.templates || [];
|
|
|
|
return templates.filter(function (template) {
|
|
return isBlank(template.slug);
|
|
});
|
|
}),
|
|
|
|
slugTemplates: computed('templates.[]', function () {
|
|
let templates = this.templates || [];
|
|
|
|
return templates.filter(function (template) {
|
|
return !isBlank(template.slug);
|
|
});
|
|
}),
|
|
|
|
activate() {
|
|
let adapter = this.store.adapterFor(this.constructor.modelName);
|
|
|
|
return adapter.activate(this).then(() => {
|
|
// the server only gives us the newly active theme back so we need
|
|
// to manually mark other themes as inactive in the store
|
|
let activeThemes = this.store.peekAll('theme').filterBy('active', true);
|
|
|
|
activeThemes.forEach((theme) => {
|
|
if (theme !== this) {
|
|
// store.push is necessary to avoid dirty records that cause
|
|
// problems when we get new data back in subsequent requests
|
|
this.store.push({data: {
|
|
id: theme.id,
|
|
type: 'theme',
|
|
attributes: {active: false}
|
|
}});
|
|
}
|
|
});
|
|
|
|
return this;
|
|
});
|
|
}
|
|
});
|