5fe72462bc
no refs -moved hide page title and feature image to GA -updated gscan
113 lines
3.6 KiB
JavaScript
113 lines
3.6 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'),
|
|
gscanErrors: attr('raw', {defaultValue: () => []}), // renamed from 'errors' to avoid clash with Ember Data Model's `errors` property
|
|
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);
|
|
});
|
|
}),
|
|
|
|
codedWarnings: computed('warnings.[]', function () {
|
|
const codedWarnings = {};
|
|
|
|
this.warnings.forEach((warning) => {
|
|
if (!codedWarnings[warning.code]) {
|
|
codedWarnings[warning.code] = [];
|
|
}
|
|
|
|
codedWarnings[warning.code].push(warning);
|
|
});
|
|
|
|
return codedWarnings;
|
|
}),
|
|
|
|
codedErrors: computed('gscanErrors.[]', function () {
|
|
const codedErrors = {};
|
|
|
|
this.gscanErrors.forEach((error) => {
|
|
if (!codedErrors[error.code]) {
|
|
codedErrors[error.code] = [];
|
|
}
|
|
|
|
codedErrors[error.code].push(error);
|
|
});
|
|
|
|
return codedErrors;
|
|
}),
|
|
|
|
codedErrorsAndWarnings: computed('codedErrors.[]', 'codedWarnings.[]', function () {
|
|
const codedErrorsAndWarnings = {};
|
|
|
|
Object.keys(this.codedErrors).forEach((code) => {
|
|
if (!codedErrorsAndWarnings[code]) {
|
|
codedErrorsAndWarnings[code] = [];
|
|
}
|
|
codedErrorsAndWarnings[code] = [...codedErrorsAndWarnings[code], ...this.codedErrors[code]];
|
|
});
|
|
|
|
Object.keys(this.codedWarnings).forEach((code) => {
|
|
if (!codedErrorsAndWarnings[code]) {
|
|
codedErrorsAndWarnings[code] = [];
|
|
}
|
|
codedErrorsAndWarnings[code] = [...codedErrorsAndWarnings[code], ...this.codedWarnings[code]];
|
|
});
|
|
|
|
return codedErrorsAndWarnings;
|
|
}),
|
|
|
|
hasPageBuilderFeature(feature) {
|
|
const failures = this.codedErrorsAndWarnings;
|
|
|
|
if (!failures['GS110-NO-MISSING-PAGE-BUILDER-USAGE']) {
|
|
return true;
|
|
}
|
|
|
|
return !failures['GS110-NO-MISSING-PAGE-BUILDER-USAGE'].some((failure) => {
|
|
return failure.failures.some(({message}) => message.includes(`@page.${feature}`));
|
|
});
|
|
},
|
|
|
|
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;
|
|
});
|
|
}
|
|
});
|