-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathTenantStorage.tsx
75 lines (67 loc) · 2.47 KB
/
TenantStorage.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import React from 'react';
import {InfoViewer} from '../../../../../components/InfoViewer/InfoViewer';
import {LabelWithPopover} from '../../../../../components/LabelWithPopover';
import {ProgressViewer} from '../../../../../components/ProgressViewer/ProgressViewer';
import {formatStorageValues} from '../../../../../utils/dataFormatters/dataFormatters';
import {TenantDashboard} from '../TenantDashboard/TenantDashboard';
import i18n from '../i18n';
import {b} from '../utils';
import {TopGroups} from './TopGroups';
import {TopTables} from './TopTables';
import {storageDashboardConfig} from './storageDashboardConfig';
import '../TenantOverview.scss';
export interface TenantStorageMetrics {
blobStorageUsed?: number;
blobStorageLimit?: number;
tabletStorageUsed?: number;
tabletStorageLimit?: number;
}
interface TenantStorageProps {
tenantName: string;
metrics: TenantStorageMetrics;
}
export function TenantStorage({tenantName, metrics}: TenantStorageProps) {
const {blobStorageUsed, tabletStorageUsed, blobStorageLimit, tabletStorageLimit} = metrics;
const info = [
{
label: (
<LabelWithPopover
text={i18n('storage.tablet-storage-title')}
popoverContent={i18n('storage.tablet-storage-description')}
/>
),
value: (
<ProgressViewer
value={tabletStorageUsed}
capacity={tabletStorageLimit}
formatValues={formatStorageValues}
colorizeProgress={true}
/>
),
},
{
label: (
<LabelWithPopover
text={i18n('storage.db-storage-title')}
popoverContent={i18n('storage.db-storage-description')}
/>
),
value: (
<ProgressViewer
value={blobStorageUsed}
capacity={blobStorageLimit}
formatValues={formatStorageValues}
colorizeProgress={true}
/>
),
},
];
return (
<React.Fragment>
<TenantDashboard database={tenantName} charts={storageDashboardConfig} />
<InfoViewer className={b('storage-info')} title="Storage details" info={info} />
<TopTables database={tenantName} />
<TopGroups tenant={tenantName} />
</React.Fragment>
);
}