open-nomad/ui/app/serializers/node.js

38 lines
966 B
JavaScript
Raw Normal View History

import { assign } from '@ember/polyfills';
import { inject as service } from '@ember/service';
2017-09-19 14:47:10 +00:00
import ApplicationSerializer from './application';
export default ApplicationSerializer.extend({
config: service(),
2017-09-19 14:47:10 +00:00
attrs: {
isDraining: 'Drain',
2017-09-19 14:47:10 +00:00
httpAddr: 'HTTPAddr',
},
normalize(modelClass, hash) {
// Transform the map-based Drivers object into an array-based NodeDriver fragment list
const drivers = hash.Drivers || {};
hash.Drivers = Object.keys(drivers).map(key => {
return assign({}, drivers[key], { Name: key });
});
return this._super(modelClass, hash);
},
2017-09-19 14:47:10 +00:00
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`,
},
},
};
},
});