open-nomad/ui/app/models/node-attributes.js

38 lines
1.0 KiB
JavaScript
Raw Normal View History

import { get, computed } from '@ember/object';
2017-09-19 14:47:10 +00:00
import attr from 'ember-data/attr';
import Fragment from 'ember-data-model-fragments/fragment';
import flat from 'flat';
2017-09-19 14:47:10 +00:00
const { unflatten } = flat;
export default Fragment.extend({
2019-10-08 18:44:19 +00:00
nodeAttributes: attr(),
2017-09-19 14:47:10 +00:00
2019-10-08 18:44:19 +00:00
attributesStructured: computed('nodeAttributes', function() {
const original = this.nodeAttributes;
if (!original) {
return;
}
// `unflatten` doesn't sort keys before unflattening, so manual preprocessing is necessary.
const attrs = Object.keys(original)
.sort()
.reduce((obj, key) => {
obj[key] = original[key];
return obj;
}, {});
2017-09-19 14:47:10 +00:00
return unflatten(attrs, { overwrite: true });
}),
unknownProperty(key) {
// Returns the exact value in index 0 and the subtree in index 1
//
// ex: nodeAttrs.get('driver.docker')
// [ "1", { version: "17.05.0-ce", volumes: { enabled: "1" } } ]
2019-10-08 18:44:19 +00:00
if (this.attributesStructured) {
return get(this.attributesStructured, key);
}
2017-09-19 14:47:10 +00:00
},
});