mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-18 14:25:51 +00:00
* style(B1-1): 格式化 ink/buddy/cli/context/screens/tasks/services/keybindings/state (43 files) 纯格式化:移除分号、React Compiler import、import 多行展开。 修复了 Box.tsx 和 ScrollBox.tsx 中无效的 global.d.ts import。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style(B1-2): 格式化 commands (79 files) 纯格式化:移除分号、React Compiler import、import 多行展开。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style(B1-3): 格式化 components/messages,permissions,mcp,sandbox,shell (104 files) 纯格式化:移除分号、React Compiler import、import 多行展开。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style(B1-4): 格式化 components/PromptInput,FeedbackSurvey,tasks,agents,skills,design-system,wizard (73 files) 纯格式化:移除分号、React Compiler import、import 多行展开。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style(B1-5): 格式化 components其余 + hooks + tools (232 files) 纯格式化:移除分号、React Compiler import、import 多行展开。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * style(B1-6): 格式化 main/entrypoints/utils/moreright (21 files) 纯格式化:移除分号、React Compiler import、import 多行展开。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * docs: 更新 README,新增 Run.ps1/TODO.md,删除 V6.md - README.md: 大幅重写,更详细版本历史和配置示例 - Run.ps1: 新增 Windows 启动脚本 - TODO.md: 新增包完成清单 - V6.md: 删除(架构重构规划已不适用) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: 修复以前的问题 * fix: 修复 login 面板的问题 --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
101 lines
2.8 KiB
TypeScript
101 lines
2.8 KiB
TypeScript
import React from 'react'
|
|
import {
|
|
type ExitState,
|
|
useExitOnCtrlCDWithKeybindings,
|
|
} from '../../hooks/useExitOnCtrlCDWithKeybindings.js'
|
|
import { Box, Text } from '../../ink.js'
|
|
import { useKeybinding } from '../../keybindings/useKeybinding.js'
|
|
import type { Theme } from '../../utils/theme.js'
|
|
import { ConfigurableShortcutHint } from '../ConfigurableShortcutHint.js'
|
|
import { Byline } from './Byline.js'
|
|
import { KeyboardShortcutHint } from './KeyboardShortcutHint.js'
|
|
import { Pane } from './Pane.js'
|
|
|
|
type DialogProps = {
|
|
title: React.ReactNode
|
|
subtitle?: React.ReactNode
|
|
children: React.ReactNode
|
|
onCancel: () => void
|
|
color?: keyof Theme
|
|
hideInputGuide?: boolean
|
|
hideBorder?: boolean
|
|
/** Custom input guide content. Receives exitState for Ctrl+C/D pending display. */
|
|
inputGuide?: (exitState: ExitState) => React.ReactNode
|
|
/**
|
|
* Controls whether Dialog's built-in confirm:no (Esc/n) and app:exit/interrupt
|
|
* (Ctrl-C/D) keybindings are active. Set to `false` while an embedded text
|
|
* field is being edited so those keys reach the field instead of being
|
|
* consumed by Dialog. TextInput has its own ctrl+c/d handlers (cancel on
|
|
* press, delete-forward on ctrl+d with text). Defaults to `true`.
|
|
*/
|
|
isCancelActive?: boolean
|
|
}
|
|
|
|
export function Dialog({
|
|
title,
|
|
subtitle,
|
|
children,
|
|
onCancel,
|
|
color = 'permission',
|
|
hideInputGuide,
|
|
hideBorder,
|
|
inputGuide,
|
|
isCancelActive = true,
|
|
}: DialogProps): React.ReactNode {
|
|
const exitState = useExitOnCtrlCDWithKeybindings(
|
|
undefined,
|
|
undefined,
|
|
isCancelActive,
|
|
)
|
|
|
|
// Use configurable keybinding for ESC to cancel.
|
|
// isCancelActive lets consumers (e.g. ElicitationDialog) disable this while
|
|
// an embedded TextInput is focused, so that keys like 'n' reach the field
|
|
// instead of being consumed here.
|
|
useKeybinding('confirm:no', onCancel, {
|
|
context: 'Confirmation',
|
|
isActive: isCancelActive,
|
|
})
|
|
|
|
const defaultInputGuide = exitState.pending ? (
|
|
<Text>Press {exitState.keyName} again to exit</Text>
|
|
) : (
|
|
<Byline>
|
|
<KeyboardShortcutHint shortcut="Enter" action="confirm" />
|
|
<ConfigurableShortcutHint
|
|
action="confirm:no"
|
|
context="Confirmation"
|
|
fallback="Esc"
|
|
description="cancel"
|
|
/>
|
|
</Byline>
|
|
)
|
|
|
|
const content = (
|
|
<>
|
|
<Box flexDirection="column" gap={1}>
|
|
<Box flexDirection="column">
|
|
<Text bold color={color}>
|
|
{title}
|
|
</Text>
|
|
{subtitle && <Text dimColor>{subtitle}</Text>}
|
|
</Box>
|
|
{children}
|
|
</Box>
|
|
{!hideInputGuide && (
|
|
<Box marginTop={1}>
|
|
<Text dimColor italic>
|
|
{inputGuide ? inputGuide(exitState) : defaultInputGuide}
|
|
</Text>
|
|
</Box>
|
|
)}
|
|
</>
|
|
)
|
|
|
|
if (hideBorder) {
|
|
return content
|
|
}
|
|
|
|
return <Pane color={color}>{content}</Pane>
|
|
}
|