/** * Storage Tab — per-PV capacity usage view. * * Mirrors the GPU Instances Tab structure: * 1. Top filter bar (date range + scope) * 2. KPI row (GB-Days / GB-Hours / Active Volumes / Dangling Volumes) * 3. Daily bar chart with metric switch * 4. Bottom tab table grouped by Volume / User * * Talks to ``/usage/storage/{meta,breakdown}``. PV is lifecycle-gated * (capacity is metered from CREATED to DELETED regardless of attach state), * so there's no phase filter — just date / scope / volume / user. */ import useCoolColors from '@/hooks/use-cool-colors'; import { formatLargeNumber } from '@/utils'; import { SimpleCard } from '@gpustack/core-ui'; import { useAccess, useIntl } from '@umijs/max'; import { Tabs } from 'antd'; import dayjs from 'dayjs'; import React, { useEffect, useMemo, useState } from 'react'; import { queryStorageBreakdown, ResourceBreakdownRequest, ResourceBreakdownResponse } from '../apis/resource'; import MetricChartCard from '../components/metric-chart-card'; import MetricLabel from '../components/metric-label'; import ResourceExportData from '../components/resource-export-data'; import ResourceFilterBar from '../components/resource-filter-bar'; import useResourceMeta from '../hooks/use-resource-meta'; import { bucketKey, generateBucketRange, Granularity } from '../utils/time-buckets'; import { buildTrendSeries } from '../utils/trend-series'; import StorageBreakdownTable from './tables/storage-breakdown-table'; import useStorageColumns from './tables/use-storage-columns'; type Scope = 'self' | 'all'; type Metric = 'storage_gb_days' | 'storage_gb_hours'; type GroupKey = 'volume' | 'user'; const StorageTab: React.FC = () => { const access = useAccess(); const intl = useIntl(); // Factory kept for the grouped trend (sized to group count); 4-slot palette // for the KPI cards. const colorFactory = useCoolColors(); const coolColors = colorFactory(4); const METRIC_OPTIONS: { value: Metric; label: string }[] = useMemo( () => [ { value: 'storage_gb_days', label: intl.formatMessage({ id: 'usage.metric.gbDays' }) }, { value: 'storage_gb_hours', label: intl.formatMessage({ id: 'usage.metric.gbHours' }) } ], [intl] ); const TABLE_TABS: { key: GroupKey; label: string }[] = useMemo(() => { return access.canSeeOrgAdmin ? [ { key: 'volume', label: intl.formatMessage({ id: 'usage.tabs.storage' }) }, { key: 'user', label: intl.formatMessage({ id: 'usage.table.users' }) } ] : [ { key: 'volume', label: intl.formatMessage({ id: 'usage.tabs.storage' }) } ]; }, [intl, access.canSeeOrgAdmin]); // No All/My dropdown (matches the Tokens tab): managers see the org-wide // view and narrow it with the user filter, others only their own rows. const canManageUsers = !!access.canSeeOrgAdmin; const scope: Scope = canManageUsers ? 'all' : 'self'; const [dateRange, setDateRange] = useState<[dayjs.Dayjs, dayjs.Dayjs]>([ dayjs().subtract(29, 'day'), dayjs() ]); const [selectedUsers, setSelectedUsers] = useState([]); const [selectedVolumes, setSelectedVolumes] = useState([]); const [refreshKey, setRefreshKey] = useState(0); const [metric, setMetric] = useState('storage_gb_days'); const [granularity, setGranularity] = useState('day'); // Optional trend group-by (split the chart into one series per group). const [chartGroupBy, setChartGroupBy] = useState(null); const [activeTableTab, setActiveTableTab] = useState('volume'); const { creators: userOptions, volumes: volumeOptions } = useResourceMeta(scope); const [chartData, setChartData] = useState( null ); // Bumped on any filter change to snap every mounted table back to page 1; // each table owns its own page/sort state otherwise. const [pageResetKey, setPageResetKey] = useState(0); const baseRequest = (): Omit => ({ start_date: dateRange[0].format('YYYY-MM-DD'), end_date: dateRange[1].format('YYYY-MM-DD'), scope, granularity, filters: selectedUsers.length || selectedVolumes.length ? { ...(selectedUsers.length ? { creator_ids: selectedUsers } : {}), ...(selectedVolumes.length ? { volume_ids: selectedVolumes } : {}) } : undefined, page: 1, perPage: 50 }); const fetchChart = async () => { try { const data = await queryStorageBreakdown({ ...baseRequest(), // Split each bucket by the chosen dimension when grouping. group_by: chartGroupBy ? ['date', chartGroupBy] : ['date'], // A trend is a time series, not a paginated table: always fetch the // whole range. The default order is metric-desc, so partial (current/ // recent) buckets have smaller values and would be pushed onto later // pages — dropping the newest hours from the chart under a small page. perPage: 10000 }); setChartData(data); } catch { // Surfacing handled by global interceptor; keep last data. } }; useEffect(() => { fetchChart(); }, [ dateRange, selectedUsers, selectedVolumes, granularity, chartGroupBy, refreshKey ]); const summary = chartData?.summary; const summaryCards = useMemo( () => [ { label: formatLargeNumber( Math.round((summary?.storage_gb_days ?? 0) * 10) / 10 ) as string, value: ( ), color: coolColors[0] }, { label: formatLargeNumber( Math.round((summary?.storage_gb_hours ?? 0) * 10) / 10 ) as string, value: ( ), color: coolColors[1] }, { label: (summary?.active_volumes ?? 0).toString(), value: intl.formatMessage({ id: 'usage.tabs.storage' }), color: coolColors[2] }, { label: (summary?.active_users ?? 0).toString(), value: intl.formatMessage({ id: 'usage.metric.activeUsers' }), color: coolColors[3] } ], [summary, coolColors, intl] ); const xAxis = useMemo(() => { const keys = new Set( generateBucketRange( dateRange[0].format('YYYY-MM-DD'), dateRange[1].format('YYYY-MM-DD'), granularity ) ); chartData?.items?.forEach((i) => { if (i.date) keys.add(bucketKey(i.date, granularity)); }); return Array.from(keys).sort(); }, [chartData, dateRange, granularity]); const seriesData = useMemo( () => buildTrendSeries({ items: chartData?.items, metric, granularity, xAxis, groupBy: chartGroupBy, palette: colorFactory, singleName: METRIC_OPTIONS.find((m) => m.value === metric)?.label || metric }), [ chartData, metric, granularity, xAxis, chartGroupBy, colorFactory, METRIC_OPTIONS ] ); const chartGroupByOptions = useMemo( () => TABLE_TABS.map((t) => ({ value: t.key, label: t.label })), [TABLE_TABS, scope] ); // Columns for the export preview of the active tab (sort arrows omitted — // the in-tab table owns its own sort state). Same factory the tables use. const exportTableColumns = useStorageColumns(activeTableTab); // Export opens a preview modal (matches the Tokens tab): re-filter + preview // the rows, then download. "Chart" = the by-date trend, "Table" = the active // bottom-table grouping. const [exportMode, setExportMode] = useState<'chart' | 'table' | null>(null); const dateSuffix = `${dateRange[0].format('YYYY-MM-DD')}_${dateRange[1].format( 'YYYY-MM-DD' )}`; const chartExportColumns = [ { title: intl.formatMessage({ id: 'usage.table.date' }), dataIndex: 'date', key: 'date' }, { title: intl.formatMessage({ id: 'usage.metric.gbDays' }), dataIndex: 'storage_gb_days', key: 'storage_gb_days', render: (v: number) => (v ?? 0).toFixed(2) }, { title: intl.formatMessage({ id: 'usage.metric.gbHours' }), dataIndex: 'storage_gb_hours', key: 'storage_gb_hours', render: (v: number) => (v ?? 0).toFixed(2) }, { title: intl.formatMessage({ id: 'usage.metric.activeVolumes' }), dataIndex: 'active_volumes', key: 'active_volumes' }, { title: intl.formatMessage({ id: 'usage.metric.activeUsers' }), dataIndex: 'active_users', key: 'active_users' } ]; const tabLabel = TABLE_TABS.find((t) => t.key === activeTableTab)?.label; const exportConfig = exportMode === 'chart' ? { groupBy: ['date'], columns: chartExportColumns, fileName: `storage_chart_${dateSuffix}.xlsx`, sheetName: intl.formatMessage({ id: 'usage.tabs.storage' }) } : { groupBy: [activeTableTab], columns: exportTableColumns, fileName: `storage_${activeTableTab}_${dateSuffix}.xlsx`, sheetName: tabLabel || 'storage' }; return (
{ setDateRange(dates); setPageResetKey((k) => k + 1); }} canManageUsers={canManageUsers} userOptions={userOptions} selectedUsers={selectedUsers} onUsersChange={(ids) => { setSelectedUsers(ids); setPageResetKey((k) => k + 1); }} resourceFilter={{ options: volumeOptions, value: selectedVolumes, onChange: (ids) => { setSelectedVolumes(ids); setPageResetKey((k) => k + 1); }, placeholder: intl.formatMessage({ id: 'usage.filter.storage' }) }} onRefresh={() => setRefreshKey((k) => k + 1)} onExportChart={() => setExportMode('chart')} onExportTable={() => setExportMode('table')} />
setMetric(v as Metric)} onGranularityChange={(v) => setGranularity(v as Granularity)} seriesData={seriesData} xAxisData={xAxis} groupBy={chartGroupBy} groupByOptions={chartGroupByOptions} onGroupByChange={(v) => setChartGroupBy(v as GroupKey | null)} />
setActiveTableTab(k as GroupKey)} items={TABLE_TABS.map((t) => ({ key: t.key, label: t.label, // Keep every pane mounted so each table holds its own page/sort and // switching tabs neither refetches nor resets the other. forceRender: true, children: ( ) }))} /> setExportMode(null)} title={ exportMode === 'chart' ? intl.formatMessage({ id: 'usage.export.chart' }) : intl.formatMessage( { id: 'usage.export.tableNamed' }, { name: tabLabel } ) } queryFn={queryStorageBreakdown} groupBy={exportConfig.groupBy} columns={exportConfig.columns} fileName={exportConfig.fileName} sheetName={exportConfig.sheetName} scope={scope} canManageUsers={canManageUsers} userOptions={userOptions} resourceFilter={{ options: volumeOptions, placeholder: intl.formatMessage({ id: 'usage.filter.storage' }), key: 'volume_ids' }} initialDateRange={dateRange} initialSelectedUsers={selectedUsers} initialSelectedResources={selectedVolumes} />
); }; export default StorageTab;