import { assign } from '@ember/polyfills'; import { inject as service } from '@ember/service'; import ApplicationSerializer from './application'; export default ApplicationSerializer.extend({ config: service(), attrs: { isDraining: 'Drain', httpAddr: 'HTTPAddr', }, normalize(modelClass, hash) { // Transform map-based objects into array-based fragment lists const drivers = hash.Drivers || {}; hash.Drivers = Object.keys(drivers).map(key => { return assign({}, drivers[key], { Name: key }); }); const hostVolumes = hash.HostVolumes || {}; hash.HostVolumes = Object.keys(hostVolumes).map(key => hostVolumes[key]); return this._super(modelClass, hash); }, extractRelationships(modelClass, hash) { const { modelName } = modelClass; const nodeURL = this.store .adapterFor(modelName) .buildURL(modelName, this.extractId(modelClass, hash), hash, 'findRecord'); return { allocations: { links: { related: `${nodeURL}/allocations`, }, }, }; }, });