open-vault/ui/app/components/clients/attribution.js
2022-02-24 14:04:40 -06:00

141 lines
5.5 KiB
JavaScript

import Component from '@glimmer/component';
import { action } from '@ember/object';
import { tracked } from '@glimmer/tracking';
import { inject as service } from '@ember/service';
/**
* @module Attribution
* Attribution components display the top 10 total client counts for namespaces or auth methods (mounts) during a billing period.
* A horizontal bar chart shows on the right, with the top namespace/auth method and respective client totals on the left.
*
* @example
* ```js
* <Clients::Attribution
* @chartLegend={{this.chartLegend}}
* @totalClientsData={{this.totalClientsData}}
* @totalUsageCounts={{this.totalUsageCounts}}
* @selectedNamespace={{this.selectedNamespace}}
* @startTimeDisplay={{this.startTimeDisplay}}
* @endTimeDisplay={{this.endTimeDisplay}}
* @isDateRange={{this.isDateRange}}
* @timestamp={{this.responseTimestamp}}
* />
* ```
* @param {array} chartLegend - (passed to child) array of objects with key names 'key' and 'label' so data can be stacked
* @param {array} totalClientsData - array of objects containing a label and breakdown of total, entity and non-entity clients
* @param {object} totalUsageCounts - object with total client counts for chart tooltip text
* @param {string} selectedNamespace - namespace selected from filter bar
* @param {string} startTimeDisplay - start date for CSV modal
* @param {string} endTimeDisplay - end date for CSV modal
* @param {boolean} isDateRange - getter calculated in parent to relay if dataset is a date range or single month
* @param {string} timestamp - timestamp response was received from API
*/
export default class Attribution extends Component {
@tracked showCSVDownloadModal = false;
@service downloadCsv;
get isDateRange() {
return this.args.isDateRange;
}
get isSingleNamespace() {
if (!this.args.totalClientsData) {
return 'no data';
}
// if a namespace is selected, then we're viewing top 10 auth methods (mounts)
return !!this.args.selectedNamespace;
}
// truncate data before sending to chart component
// move truncating to serializer when we add separate request to fetch and export ALL namespace data
get barChartTotalClients() {
return this.args.totalClientsData?.slice(0, 10);
}
get topClientCounts() {
// get top namespace or auth method
return this.args.totalClientsData ? this.args.totalClientsData[0] : null;
}
get attributionBreakdown() {
// display text for hbs
return this.isSingleNamespace ? 'auth method' : 'namespace';
}
get chartText() {
let dateText = this.isDateRange ? 'date range' : 'month';
switch (this.isSingleNamespace) {
case true:
return {
description:
'This data shows the top ten authentication methods by client count within this namespace, and can be used to understand where clients are originating. Authentication methods are organized by path.',
newCopy: `The new clients used by the auth method for this ${dateText}. This aids in understanding which auth methods create and use new clients
${dateText === 'date range' ? ' over time.' : '.'}`,
totalCopy: `The total clients used by the auth method for this ${dateText}. This number is useful for identifying overall usage volume. `,
};
case false:
return {
description:
'This data shows the top ten namespaces by client count and can be used to understand where clients are originating. Namespaces are identified by path. To see all namespaces, export this data.',
newCopy: `The new clients in the namespace for this ${dateText}.
This aids in understanding which namespaces create and use new clients
${dateText === 'date range' ? ' over time.' : '.'}`,
totalCopy: `The total clients in the namespace for this ${dateText}. This number is useful for identifying overall usage volume.`,
};
case 'no data':
return {
description: 'There is a problem gathering data',
};
default:
return '';
}
}
get getCsvData() {
let csvData = [],
graphData = this.args.totalClientsData,
csvHeader = [
`Namespace path`,
'Authentication method',
'Total clients',
'Entity clients',
'Non-entity clients',
];
// each array will be a row in the csv file
if (this.isSingleNamespace) {
graphData.forEach((mount) => {
csvData.push(['', mount.label, mount.clients, mount.entity_clients, mount.non_entity_clients]);
});
csvData.forEach((d) => (d[0] = this.args.selectedNamespace));
} else {
graphData.forEach((ns) => {
csvData.push([ns.label, '', ns.clients, ns.entity_clients, ns.non_entity_clients]);
if (ns.mounts) {
ns.mounts.forEach((m) => {
csvData.push([ns.label, m.label, m.clients, m.entity_clients, m.non_entity_clients]);
});
}
});
}
csvData.unshift(csvHeader);
// make each nested array a comma separated string, join each array in csvData with line break (\n)
return csvData.map((d) => d.join()).join('\n');
}
get getCsvFileName() {
let endRange = this.isDateRange ? `-${this.args.endTimeDisplay}` : '';
let csvDateRange = this.args.startTimeDisplay + endRange;
return this.isSingleNamespace
? `clients_by_auth_method_${csvDateRange}`
: `clients_by_namespace_${csvDateRange}`;
}
// ACTIONS
@action
exportChartData(filename, contents) {
this.downloadCsv.download(filename, contents);
this.showCSVDownloadModal = false;
}
}