mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 05:45:51 +00:00
68 lines
1.7 KiB
TypeScript
68 lines
1.7 KiB
TypeScript
import React from 'react'
|
|
import { Box, Text } from '@anthropic/ink'
|
|
import { formatTokens } from '../utils/format.js'
|
|
import { Select } from './CustomSelect/index.js'
|
|
import { Dialog } from '@anthropic/ink'
|
|
|
|
type IdleReturnAction = 'continue' | 'clear' | 'dismiss' | 'never'
|
|
|
|
type Props = {
|
|
idleMinutes: number
|
|
totalInputTokens: number
|
|
onDone: (action: IdleReturnAction) => void
|
|
}
|
|
|
|
export function IdleReturnDialog({
|
|
idleMinutes,
|
|
totalInputTokens,
|
|
onDone,
|
|
}: Props): React.ReactNode {
|
|
const formattedIdle = formatIdleDuration(idleMinutes)
|
|
const formattedTokens = formatTokens(totalInputTokens)
|
|
|
|
return (
|
|
<Dialog
|
|
title={`You've been away ${formattedIdle} and this conversation is ${formattedTokens} tokens.`}
|
|
onCancel={() => onDone('dismiss')}
|
|
>
|
|
<Box flexDirection="column">
|
|
<Text>
|
|
If this is a new task, clearing context will save usage and be faster.
|
|
</Text>
|
|
</Box>
|
|
<Select
|
|
options={[
|
|
{
|
|
value: 'continue' as const,
|
|
label: 'Continue this conversation',
|
|
},
|
|
{
|
|
value: 'clear' as const,
|
|
label: 'Send message as a new conversation',
|
|
},
|
|
{
|
|
value: 'never' as const,
|
|
label: "Don't ask me again",
|
|
},
|
|
]}
|
|
onChange={(value: IdleReturnAction) => onDone(value)}
|
|
/>
|
|
</Dialog>
|
|
)
|
|
}
|
|
|
|
function formatIdleDuration(minutes: number): string {
|
|
if (minutes < 1) {
|
|
return '< 1m'
|
|
}
|
|
if (minutes < 60) {
|
|
return `${Math.floor(minutes)}m`
|
|
}
|
|
const hours = Math.floor(minutes / 60)
|
|
const remainingMinutes = Math.floor(minutes % 60)
|
|
if (remainingMinutes === 0) {
|
|
return `${hours}h`
|
|
}
|
|
return `${hours}h ${remainingMinutes}m`
|
|
}
|