open-nomad/ui/app/models/structured-attributes.js
2023-04-10 15:36:59 +00:00

49 lines
1.2 KiB
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { set } from '@ember/object';
import { get, computed } from '@ember/object';
import { attr } from '@ember-data/model';
import Fragment from 'ember-data-model-fragments/fragment';
import flat from 'flat';
const { unflatten } = flat;
export default class StructuredAttributes extends Fragment {
@attr() raw;
recomputeRawProperties(incoming) {
set(this, 'raw', incoming);
}
@computed('raw')
get structured() {
const original = this.raw;
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;
}, {});
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" } } ]
if (this.structured) {
return get(this.structured, key);
}
}
}