5f5bd1126e
* updates data with response returned after dates queried * alphabetize todo * clarify comments * change dashboard.js to history.js * separate clients route, add history and config * add loading to config template * Add failsafes for no data * remove commented code * update all LinkTos with new routes, remove params * return response if no data * fix tests * cleanup * fixes template with namespace filter * fixes tests with namespace filter merged * fix namespace array mapping * add version history to test object Co-authored-by: hashishaw <cshaw@hashicorp.com>
67 lines
2.6 KiB
JavaScript
67 lines
2.6 KiB
JavaScript
import ApplicationSerializer from '../application';
|
|
import { formatISO } from 'date-fns';
|
|
export default class MonthlySerializer extends ApplicationSerializer {
|
|
flattenDataset(byNamespaceArray) {
|
|
return byNamespaceArray.map((ns) => {
|
|
// 'namespace_path' is an empty string for root
|
|
if (ns['namespace_id'] === 'root') ns['namespace_path'] = 'root';
|
|
let label = ns['namespace_path'];
|
|
let flattenedNs = {};
|
|
// we don't want client counts nested within the 'counts' object for stacked charts
|
|
Object.keys(ns['counts']).forEach((key) => (flattenedNs[key] = ns['counts'][key]));
|
|
flattenedNs = this.homogenizeClientNaming(flattenedNs);
|
|
|
|
// TODO CMB check how this works with actual API endpoint
|
|
// if no mounts, mounts will be an empty array
|
|
flattenedNs.mounts = ns.mounts
|
|
? ns.mounts.map((mount) => {
|
|
let flattenedMount = {};
|
|
flattenedMount.label = mount['path'];
|
|
Object.keys(mount['counts']).forEach((key) => (flattenedMount[key] = mount['counts'][key]));
|
|
return flattenedMount;
|
|
})
|
|
: [];
|
|
|
|
return {
|
|
label,
|
|
...flattenedNs,
|
|
};
|
|
});
|
|
}
|
|
|
|
// For 1.10 release naming changed from 'distinct_entities' to 'entity_clients' and
|
|
// 'non_entity_tokens' to 'non_entity_clients'
|
|
// accounting for deprecated API keys here and updating to latest nomenclature
|
|
homogenizeClientNaming(object) {
|
|
// TODO CMB check with API payload, latest draft includes both new and old key names
|
|
// TODO CMB Delete old key names IF correct ones exist?
|
|
if (Object.keys(object).includes('distinct_entities', 'non_entity_tokens')) {
|
|
let entity_clients = object.distinct_entities;
|
|
let non_entity_clients = object.non_entity_tokens;
|
|
let { clients } = object;
|
|
return {
|
|
clients,
|
|
entity_clients,
|
|
non_entity_clients,
|
|
};
|
|
}
|
|
return object;
|
|
}
|
|
|
|
normalizeResponse(store, primaryModelClass, payload, id, requestType) {
|
|
if (payload.id === 'no-data') {
|
|
return super.normalizeResponse(store, primaryModelClass, payload, id, requestType);
|
|
}
|
|
let response_timestamp = formatISO(new Date());
|
|
let transformedPayload = {
|
|
...payload,
|
|
response_timestamp,
|
|
by_namespace: this.flattenDataset(payload.data.by_namespace),
|
|
// nest within 'total' object to mimic /activity response shape
|
|
total: this.homogenizeClientNaming(payload.data),
|
|
};
|
|
delete payload.data.by_namespace;
|
|
return super.normalizeResponse(store, primaryModelClass, transformedPayload, id, requestType);
|
|
}
|
|
}
|