mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 22:05:50 +00:00
70 lines
1.9 KiB
TypeScript
70 lines
1.9 KiB
TypeScript
import * as React from 'react'
|
|
import { useMemo } from 'react'
|
|
import { type Command, formatDescriptionWithSource } from '../../commands.js'
|
|
import { Box, Text } from '@anthropic/ink'
|
|
import { useTabHeaderFocus } from '../design-system/Tabs.js'
|
|
|
|
type Props = {
|
|
commands: Command[]
|
|
maxHeight: number
|
|
columns: number
|
|
title: string
|
|
onCancel: () => void
|
|
emptyMessage?: string
|
|
}
|
|
|
|
export function Commands({
|
|
commands,
|
|
maxHeight,
|
|
columns,
|
|
title,
|
|
onCancel,
|
|
emptyMessage,
|
|
}: Props): React.ReactNode {
|
|
const { headerFocused, focusHeader } = useTabHeaderFocus()
|
|
const maxWidth = Math.max(1, columns - 10)
|
|
const visibleCount = Math.max(1, Math.floor((maxHeight - 10) / 2))
|
|
|
|
const options = useMemo(() => {
|
|
// Custom commands can appear more than once (e.g. same name at user and
|
|
// project scope). Dedupe by name to avoid React key collisions in Select.
|
|
const seen = new Set<string>()
|
|
return commands
|
|
.filter(cmd => {
|
|
if (seen.has(cmd.name)) return false
|
|
seen.add(cmd.name)
|
|
return true
|
|
})
|
|
.sort((a, b) => a.name.localeCompare(b.name))
|
|
.map(cmd => ({
|
|
label: `/${cmd.name}`,
|
|
value: cmd.name,
|
|
description: truncate(formatDescriptionWithSource(cmd), maxWidth, true),
|
|
}))
|
|
}, [commands, maxWidth])
|
|
|
|
return (
|
|
<Box flexDirection="column" paddingY={1}>
|
|
{commands.length === 0 && emptyMessage ? (
|
|
<Text dimColor>{emptyMessage}</Text>
|
|
) : (
|
|
<>
|
|
<Text>{title}</Text>
|
|
<Box marginTop={1}>
|
|
<Select
|
|
options={options}
|
|
visibleOptionCount={visibleCount}
|
|
onCancel={onCancel}
|
|
disableSelection
|
|
hideIndexes
|
|
layout="compact-vertical"
|
|
onUpFromFirstItem={focusHeader}
|
|
isDisabled={headerFocused}
|
|
/>
|
|
</Box>
|
|
</>
|
|
)}
|
|
</Box>
|
|
)
|
|
}
|