diff options
| author | Abhi <[email protected]> | 2025-06-11 16:40:31 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-11 16:40:31 -0400 |
| commit | 7a72d255d8effec1396170306cc6be57f598a6d8 (patch) | |
| tree | eab86a4d4d5f145a033eed06d16dedeba7b23a37 /packages/cli/src/ui/components/StatsDisplay.tsx | |
| parent | 4160d904da8328eb7168b5b652d4c0f17682546c (diff) | |
feat: Add exit UI w/ stats (#924)
Diffstat (limited to 'packages/cli/src/ui/components/StatsDisplay.tsx')
| -rw-r--r-- | packages/cli/src/ui/components/StatsDisplay.tsx | 91 |
1 files changed, 7 insertions, 84 deletions
diff --git a/packages/cli/src/ui/components/StatsDisplay.tsx b/packages/cli/src/ui/components/StatsDisplay.tsx index be447595..76d48821 100644 --- a/packages/cli/src/ui/components/StatsDisplay.tsx +++ b/packages/cli/src/ui/components/StatsDisplay.tsx @@ -9,6 +9,7 @@ import { Box, Text } from 'ink'; import { Colors } from '../colors.js'; import { formatDuration } from '../utils/formatters.js'; import { CumulativeStats } from '../contexts/SessionContext.js'; +import { FormattedStats, StatRow, StatsColumn } from './Stats.js'; // --- Constants --- @@ -22,89 +23,6 @@ interface StatsDisplayProps { duration: string; } -interface FormattedStats { - inputTokens: number; - outputTokens: number; - toolUseTokens: number; - thoughtsTokens: number; - cachedTokens: number; - totalTokens: number; -} - -// --- Helper Components --- - -/** - * Renders a single row with a colored label on the left and a value on the right. - */ -const StatRow: React.FC<{ - label: string; - value: string | number; - valueColor?: string; -}> = ({ label, value, valueColor }) => ( - <Box justifyContent="space-between"> - <Text color={Colors.LightBlue}>{label}</Text> - <Text color={valueColor}>{value}</Text> - </Box> -); - -/** - * Renders a full column for either "Last Turn" or "Cumulative" stats. - */ -const StatsColumn: React.FC<{ - title: string; - stats: FormattedStats; - isCumulative?: boolean; -}> = ({ title, stats, isCumulative = false }) => { - const cachedDisplay = - isCumulative && stats.totalTokens > 0 - ? `${stats.cachedTokens.toLocaleString()} (${((stats.cachedTokens / stats.totalTokens) * 100).toFixed(1)}%)` - : stats.cachedTokens.toLocaleString(); - - const cachedColor = - isCumulative && stats.cachedTokens > 0 ? Colors.AccentGreen : undefined; - - return ( - <Box flexDirection="column" width={COLUMN_WIDTH}> - <Text bold>{title}</Text> - <Box marginTop={1} flexDirection="column"> - <StatRow - label="Input Tokens" - value={stats.inputTokens.toLocaleString()} - /> - <StatRow - label="Output Tokens" - value={stats.outputTokens.toLocaleString()} - /> - <StatRow - label="Tool Use Tokens" - value={stats.toolUseTokens.toLocaleString()} - /> - <StatRow - label="Thoughts Tokens" - value={stats.thoughtsTokens.toLocaleString()} - /> - <StatRow - label="Cached Tokens" - value={cachedDisplay} - valueColor={cachedColor} - /> - {/* Divider Line */} - <Box - borderTop={true} - borderLeft={false} - borderRight={false} - borderBottom={false} - borderStyle="single" - /> - <StatRow - label="Total Tokens" - value={stats.totalTokens.toLocaleString()} - /> - </Box> - </Box> - ); -}; - // --- Main Component --- export const StatsDisplay: React.FC<StatsDisplayProps> = ({ @@ -143,11 +61,16 @@ export const StatsDisplay: React.FC<StatsDisplayProps> = ({ </Text> <Box flexDirection="row" justifyContent="space-between" marginTop={1}> - <StatsColumn title="Last Turn" stats={lastTurnFormatted} /> + <StatsColumn + title="Last Turn" + stats={lastTurnFormatted} + width={COLUMN_WIDTH} + /> <StatsColumn title={`Cumulative (${stats.turnCount} Turns)`} stats={cumulativeFormatted} isCumulative={true} + width={COLUMN_WIDTH} /> </Box> |
