Fix up serializer for ember-data 2

This commit is contained in:
Matthew Dillon 2015-12-01 13:11:42 -07:00
parent 233a2d09a1
commit 14698d0394

View file

@ -5,24 +5,41 @@ const { RESTSerializer } = DS;
const { isNone } = Ember; const { isNone } = Ember;
export default RESTSerializer.extend({ export default RESTSerializer.extend({
isNewSerializerAPI: true,
serializeBelongsTo: function(snapshot, json, relationship) { serializeBelongsTo: function(snapshot, json, relationship) {
let key = relationship.key; const key = relationship.key;
const belongsTo = snapshot.belongsTo(key); if (this._canSerialize(key)) {
key = this.keyForRelationship ? this.keyForRelationship(key, "belongsTo", "serialize") : key; const belongsToId = snapshot.belongsTo(key, { id: true });
json[key] = isNone(belongsTo) ? belongsTo : +belongsTo.record.id; let payloadKey = this._getMappedKey(key, snapshot.type);
if (payloadKey === key && this.keyForRelationship) {
payloadKey = this.keyForRelationship(key, "belongsTo", "serialize");
}
if (isNone(belongsToId)) {
json[payloadKey] = null;
} else {
json[payloadKey] = +belongsToId;
}
if (relationship.options.polymorphic) {
this.serializePolymorphicType(snapshot, json, relationship);
}
}
}, },
serializeHasMany: function(snapshot, json, relationship) { serializeHasMany: function(snapshot, json, relationship) {
let key = relationship.key; const key = relationship.key;
const hasMany = snapshot.hasMany(key); if (this._shouldSerializeHasMany(snapshot, key, relationship)) {
key = this.keyForRelationship ? this.keyForRelationship(key, "hasMany", "serialize") : key; const hasMany = snapshot.hasMany(key, { ids: true });
if (hasMany !== undefined) {
json[key] = []; let payloadKey = this._getMappedKey(key, snapshot.type);
hasMany.forEach((item) => { if (payloadKey === key && this.keyForRelationship) {
json[key].push(+item.id); payloadKey = this.keyForRelationship(key, "hasMany", "serialize");
}); }
json[payloadKey] = [];
hasMany.forEach((item) => {
json[payloadKey].push(+item);
});
}
}
}, },
}); });