mirror of
https://github.com/hashicorp/vault.git
synced 2025-09-19 04:41:09 +02:00
* render export activity in table by client type * refactor filter toolbar to apply filters when selected * finish filter toolbar refactor * finish building client-list page * remaing test updates from the filter-toolbar refactor * WIP tests * finish tests for export tab! * add test for bar chart colors * reveal client list tab * add changelog * filter root namespace on empty string or "root" Co-authored-by: claire bontempo <68122737+hellobontempo@users.noreply.github.com>
106 lines
3.5 KiB
TypeScript
106 lines
3.5 KiB
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import ActivityComponent, { Args } from '../activity';
|
|
import { tracked } from '@glimmer/tracking';
|
|
import { action } from '@ember/object';
|
|
import { HTMLElementEvent } from 'vault/forms';
|
|
|
|
import { filterIsSupported, filterTableData, type ActivityExportData } from 'core/utils/client-count-utils';
|
|
|
|
// Define the base mapping to derive types from
|
|
const CLIENT_TYPE_MAP = {
|
|
entity: 'Entity',
|
|
'non-entity-token': 'Non-entity',
|
|
'pki-acme': 'ACME',
|
|
'secret-sync': 'Secret sync',
|
|
} as const;
|
|
|
|
// Dynamically derive the tab values from the mapping
|
|
type ClientListTabs = (typeof CLIENT_TYPE_MAP)[keyof typeof CLIENT_TYPE_MAP];
|
|
|
|
export default class ClientsClientListPageComponent extends ActivityComponent {
|
|
@tracked selectedTab: ClientListTabs;
|
|
@tracked exportDataByTab;
|
|
|
|
constructor(owner: unknown, args: Args) {
|
|
super(owner, args);
|
|
|
|
this.exportDataByTab = this.args.exportData.reduce(
|
|
(obj, data) => {
|
|
const clientLabel = CLIENT_TYPE_MAP[data.client_type];
|
|
if (!obj[clientLabel]) {
|
|
obj[clientLabel] = [];
|
|
}
|
|
obj[clientLabel].push(data);
|
|
return obj;
|
|
},
|
|
{} as Record<ClientListTabs, ActivityExportData[]>
|
|
);
|
|
|
|
const firstTab = Object.keys(this.exportDataByTab)[0] as ClientListTabs;
|
|
this.selectedTab = firstTab;
|
|
}
|
|
|
|
get selectedTabIndex() {
|
|
return Object.keys(this.exportDataByTab).indexOf(this.selectedTab);
|
|
}
|
|
|
|
// Only render tabs for whatever the export data returns
|
|
get tabs(): ClientListTabs[] {
|
|
return Object.keys(this.exportDataByTab) as ClientListTabs[];
|
|
}
|
|
|
|
@action
|
|
onClickTab(_event: HTMLElementEvent<HTMLInputElement>, idx: number) {
|
|
const tab = this.tabs[idx];
|
|
this.selectedTab = tab ?? this.tabs[0]!;
|
|
}
|
|
|
|
get anyFilters() {
|
|
return (
|
|
Object.keys(this.args.filterQueryParams).every((f) => filterIsSupported(f)) &&
|
|
Object.values(this.args.filterQueryParams).some((v) => !!v)
|
|
);
|
|
}
|
|
|
|
// TEMPLATE HELPERS
|
|
filterData = (dataset: ActivityExportData[]) => filterTableData(dataset, this.args.filterQueryParams);
|
|
|
|
tableColumns(tab: ClientListTabs) {
|
|
// all client types have values for these columns
|
|
const defaultColumns = [
|
|
{ key: 'client_id', label: 'Client ID' },
|
|
{ key: 'client_type', label: 'Client type' },
|
|
{ key: 'namespace_path', label: 'Namespace path' },
|
|
{ key: 'namespace_id', label: 'Namespace ID' },
|
|
{
|
|
key: 'client_first_used_time',
|
|
label: 'Initial usage',
|
|
tooltip: 'When the client ID was first used in the selected billing period.',
|
|
},
|
|
{ key: 'mount_path', label: 'Mount path' },
|
|
{ key: 'mount_type', label: 'Mount type' },
|
|
{ key: 'mount_accessor', label: 'Mount accessor' },
|
|
];
|
|
// these params only have value for "entity" client types
|
|
const entityOnly = [
|
|
{
|
|
key: 'entity_name',
|
|
label: 'Entity name',
|
|
tooltip: 'Entity name will be empty in the case of a deleted entity.',
|
|
},
|
|
{ key: 'entity_alias_name', label: 'Entity alias name' },
|
|
{ key: 'local_entity_alias', label: 'Local entity alias' },
|
|
{ key: 'policies', label: 'Policies' },
|
|
{ key: 'entity_metadata', label: 'Entity metadata' },
|
|
{ key: 'entity_alias_metadata', label: 'Entity alias metadata' },
|
|
{ key: 'entity_alias_custom_metadata', label: 'Entity alias custom metadata' },
|
|
{ key: 'entity_group_ids', label: 'Entity group IDs' },
|
|
];
|
|
return tab === 'Entity' ? [...defaultColumns, ...entityOnly] : defaultColumns;
|
|
}
|
|
}
|