2018-02-08 23:02:48 +00:00
|
|
|
import { get } from '@ember/object';
|
|
|
|
import ApplicationSerializer from './application';
|
|
|
|
|
|
|
|
export default ApplicationSerializer.extend({
|
|
|
|
normalize(modelClass, hash) {
|
|
|
|
// Transform the map-based Summary object into an array-based
|
|
|
|
// TaskGroupSummary fragment list
|
|
|
|
hash.PlainJobId = hash.JobID;
|
|
|
|
hash.ID = JSON.stringify([hash.JobID, hash.Namespace || 'default']);
|
2018-03-28 21:56:15 +00:00
|
|
|
hash.JobID = hash.ID;
|
2018-02-08 23:02:48 +00:00
|
|
|
|
2018-12-13 00:24:57 +00:00
|
|
|
const fullSummary = hash.Summary || {};
|
|
|
|
hash.TaskGroupSummaries = Object.keys(fullSummary).map(key => {
|
|
|
|
const allocStats = fullSummary[key] || {};
|
2018-02-08 23:02:48 +00:00
|
|
|
const summary = { Name: key };
|
|
|
|
|
|
|
|
Object.keys(allocStats).forEach(
|
|
|
|
allocKey => (summary[`${allocKey}Allocs`] = allocStats[allocKey])
|
|
|
|
);
|
|
|
|
|
|
|
|
return summary;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Lift the children stats out of the Children object
|
|
|
|
const childrenStats = get(hash, 'Children');
|
|
|
|
if (childrenStats) {
|
|
|
|
Object.keys(childrenStats).forEach(
|
|
|
|
childrenKey => (hash[`${childrenKey}Children`] = childrenStats[childrenKey])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this._super(modelClass, hash);
|
|
|
|
},
|
|
|
|
});
|