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

39 lines
1 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 class NodeAttributes extends Fragment {
@attr() nodeAttributes;
2017-09-19 14:47:10 +00:00
@computed('nodeAttributes')
get attributesStructured() {
2019-10-08 18:44:19 +00:00
const original = this.nodeAttributes;
if (!original) {
return undefined;
}
// `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 });
}
2017-09-19 14:47:10 +00:00
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);
}
}
}