mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 12:07:02 +02:00
* adds serializer * removes all 1.11 related work to monthly/new client counting * move from new-init-activity to activity * merge setup changes add monthly model/adapter * delete new-init-activity files * add graph to current month view
145 lines
4.2 KiB
JavaScript
145 lines
4.2 KiB
JavaScript
import Component from '@glimmer/component';
|
|
import { action } from '@ember/object';
|
|
import { inject as service } from '@ember/service';
|
|
import { tracked } from '@glimmer/tracking';
|
|
import { format, formatRFC3339, isSameMonth } from 'date-fns';
|
|
|
|
export default class Dashboard extends Component {
|
|
arrayOfMonths = [
|
|
'January',
|
|
'February',
|
|
'March',
|
|
'April',
|
|
'May',
|
|
'June',
|
|
'July',
|
|
'August',
|
|
'September',
|
|
'October',
|
|
'November',
|
|
'December',
|
|
];
|
|
maxNamespaces = 10;
|
|
chartLegend = [
|
|
{ key: 'entity_clients', label: 'unique entities' },
|
|
{ key: 'non_entity_clients', label: 'non-entity tokens' },
|
|
];
|
|
// TODO remove this adapter variable? or set to /clients/activity ?
|
|
adapter = this.store.adapterFor('clients/new-init-activity');
|
|
|
|
@service store;
|
|
|
|
@tracked barChartSelection = false;
|
|
@tracked isEditStartMonthOpen = false;
|
|
@tracked startTime = this.args.model.startTime;
|
|
@tracked endTime = this.args.model.endTime;
|
|
@tracked startMonth = null;
|
|
@tracked startYear = null;
|
|
@tracked selectedNamespace = null;
|
|
// @tracked selectedNamespace = 'namespacelonglonglong4/'; // for testing namespace selection view
|
|
|
|
get startTimeDisplay() {
|
|
if (!this.startTime) {
|
|
// otherwise will return date of new Date(null)
|
|
return null;
|
|
}
|
|
let formattedAsDate = new Date(this.startTime); // on init it's formatted as a Date object, but when modified by modal it's formatted as RFC3339
|
|
return format(formattedAsDate, 'MMMM yyyy');
|
|
}
|
|
|
|
get endTimeDisplay() {
|
|
if (!this.endTime) {
|
|
// otherwise will return date of new Date(null)
|
|
return null;
|
|
}
|
|
let formattedAsDate = new Date(this.endTime);
|
|
return format(formattedAsDate, 'MMMM yyyy');
|
|
}
|
|
|
|
get isDateRange() {
|
|
return !isSameMonth(new Date(this.startTime), new Date(this.endTime));
|
|
}
|
|
|
|
// Determine if we have client count data based on the current tab
|
|
get hasClientData() {
|
|
if (this.args.tab === 'current') {
|
|
// Show the current numbers as long as config is on
|
|
return this.args.model.config?.enabled !== 'Off';
|
|
}
|
|
return this.args.model.activity && this.args.model.activity.total;
|
|
}
|
|
|
|
// top level TOTAL client counts from response for given date range
|
|
get runningTotals() {
|
|
if (!this.args.model.activity || !this.args.model.activity.total) {
|
|
return null;
|
|
}
|
|
return this.args.model.activity.total;
|
|
}
|
|
|
|
// for horizontal bar chart in Attribution component
|
|
get topTenNamespaces() {
|
|
if (!this.args.model.activity || !this.args.model.activity.byNamespace) {
|
|
return null;
|
|
}
|
|
return this.args.model.activity.byNamespace;
|
|
}
|
|
|
|
@action
|
|
async handleClientActivityQuery(month, year, dateType) {
|
|
if (dateType === 'cancel') {
|
|
return;
|
|
}
|
|
// dateType is either startTime or endTime
|
|
let monthIndex = this.arrayOfMonths.indexOf(month);
|
|
if (dateType === 'startTime') {
|
|
this.startTime = formatRFC3339(new Date(year, monthIndex));
|
|
this.endTime = null;
|
|
}
|
|
if (dateType === 'endTime') {
|
|
// this month comes in as an index
|
|
this.endTime = formatRFC3339(new Date(year, month));
|
|
}
|
|
try {
|
|
let response = await this.adapter.queryClientActivity(this.startTime, this.endTime);
|
|
// resets the endTime to what is returned on the response
|
|
this.endTime = response.data.end_time;
|
|
|
|
return response;
|
|
// ARG TODO this is the response you need to use to repopulate the chart data
|
|
} catch (e) {
|
|
// ARG TODO handle error
|
|
}
|
|
}
|
|
|
|
// ARG TODO this might be a carry over from history, will need to confirm
|
|
@action
|
|
resetData() {
|
|
this.barChartSelection = false;
|
|
this.selectedNamespace = null;
|
|
}
|
|
|
|
@action
|
|
selectNamespace(value) {
|
|
// In case of search select component, value returned is an array
|
|
if (Array.isArray(value)) {
|
|
this.selectedNamespace = this.getNamespace(value[0]);
|
|
this.barChartSelection = false;
|
|
} else if (typeof value === 'object') {
|
|
// While D3 bar selection returns an object
|
|
this.selectedNamespace = this.getNamespace(value.label);
|
|
this.barChartSelection = true;
|
|
}
|
|
}
|
|
|
|
@action
|
|
selectStartMonth(month) {
|
|
this.startMonth = month;
|
|
}
|
|
|
|
@action
|
|
selectStartYear(year) {
|
|
this.startYear = year;
|
|
}
|
|
}
|