ba4c53134f
no issue - update imports for `@ember-data` package (https://github.com/emberjs/rfcs/blob/master/text/0395-ember-data-packages.md) - use `computed.reads` where applicable (https://github.com/ember-cli/eslint-plugin-ember/blob/master/docs/rules/require-computed-macros.md) - fix usage of `scheduleOnce` so that functions are only scheduled once (https://github.com/ember-cli/eslint-plugin-ember/blob/master/docs/rules/no-incorrect-calls-with-inline-anonymous-functions.md)
52 lines
1.5 KiB
JavaScript
52 lines
1.5 KiB
JavaScript
/* eslint-disable camelcase */
|
|
import ApplicationSerializer from 'ghost-admin/serializers/application';
|
|
import {EmbeddedRecordsMixin} from '@ember-data/serializer/rest';
|
|
import {pluralize} from 'ember-inflector';
|
|
|
|
export default ApplicationSerializer.extend(EmbeddedRecordsMixin, {
|
|
// settings for the EmbeddedRecordsMixin.
|
|
attrs: {
|
|
authors: {embedded: 'always'},
|
|
tags: {embedded: 'always'},
|
|
publishedAtUTC: {key: 'published_at'},
|
|
createdAtUTC: {key: 'created_at'},
|
|
updatedAtUTC: {key: 'updated_at'},
|
|
email: {embedded: 'always'}
|
|
},
|
|
|
|
normalizeSingleResponse(store, primaryModelClass, payload) {
|
|
let root = this.keyForAttribute(primaryModelClass.modelName);
|
|
let pluralizedRoot = pluralize(primaryModelClass.modelName);
|
|
|
|
if (payload[pluralizedRoot]) {
|
|
payload[root] = payload[pluralizedRoot][0];
|
|
delete payload[pluralizedRoot];
|
|
}
|
|
|
|
return this._super(...arguments);
|
|
},
|
|
|
|
normalizeArrayResponse() {
|
|
return this._super(...arguments);
|
|
},
|
|
|
|
serialize(/*snapshot, options*/) {
|
|
let json = this._super(...arguments);
|
|
|
|
// Inserted locally as a convenience.
|
|
delete json.author_id;
|
|
// Read-only virtual properties
|
|
delete json.uuid;
|
|
delete json.url;
|
|
delete json.send_email_when_published;
|
|
// Deprecated property (replaced with data.authors)
|
|
delete json.author;
|
|
|
|
if (json.visibility === null) {
|
|
delete json.visibility;
|
|
}
|
|
|
|
return json;
|
|
}
|
|
});
|