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

35 lines
1.1 KiB
JavaScript
Raw Normal View History

import { inject as service } from '@ember/service';
import { get } from '@ember/object';
import { assign } from '@ember/polyfills';
2017-11-29 01:21:56 +00:00
import ApplicationSerializer from './application';
import classic from 'ember-classic-decorator';
2017-11-29 01:21:56 +00:00
@classic
export default class Evaluation extends ApplicationSerializer {
@service system;
2017-11-29 01:21:56 +00:00
normalize(typeHash, hash) {
const failures = hash.FailedTGAllocs || {};
hash.FailedTGAllocs = Object.keys(failures).map(key => {
const propertiesForKey = failures[key] || {};
return assign({ Name: key }, propertiesForKey);
2017-11-29 01:21:56 +00:00
});
hash.PlainJobId = hash.JobID;
hash.Namespace =
hash.Namespace ||
get(hash, 'Job.Namespace') ||
this.get('system.activeNamespace.id') ||
'default';
hash.JobID = JSON.stringify([hash.JobID, hash.Namespace]);
hash.ModifyTimeNanos = hash.ModifyTime % 1000000;
hash.ModifyTime = Math.floor(hash.ModifyTime / 1000000);
hash.CreateTimeNanos = hash.CreateTime % 1000000;
hash.CreateTime = Math.floor(hash.CreateTime / 1000000);
return super.normalize(typeHash, hash);
}
}