1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-23 00:00:02 +01:00
VILLASweb/app/serializers/application.js
Markus Grigull b82e92a5be Add content to properties table
Entity's properties are now displayed. The entity id is shown in
the properties route. The serializer's normalize functions are
cleaned up.
2015-10-01 14:34:07 +02:00

61 lines
1.6 KiB
JavaScript

import DS from 'ember-data';
export default DS.RESTSerializer.extend({
normalizeFindAllResponse: function(store, primaryModelClass, payload, id, requestType) {
var json = { data: [] };
this._normalizePayload(payload, function(entity) {
json.data.push(entity);
return true;
});
return json;
},
normalizeFindRecordResponse: function(store, primaryModelClass, payload, id, requestType) {
var json = { data: {} };
this._normalizePayload(payload, function(entity) {
json.data = entity;
return false;
});
return json;
},
_normalizePayload: function(payload, handleEntity) {
// check if payload has context responses
if (payload.contextResponses) {
payload.contextResponses.forEach(function(item) {
// check if item has context element
if (item.contextElement) {
// create new entity object
var entity = {
type: 'entity',
id: item.contextElement.id,
attributes: {
type: item.contextElement.type,
properties: []
}
}
item.contextElement.attributes.forEach(function(attribute) {
var property = {
name: attribute.name,
value: attribute.value,
type: attribute.type
}
entity.attributes.properties.push(property);
});
// pass entity to caller function
if (handleEntity(entity) == false) {
// if false returned the caller needs no more entites
return;
}
}
});
}
}
});