mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-19 14:55:50 +00:00
纯格式化:移除分号、React Compiler import、import 多行展开。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
import { basename } from 'path'
|
|
import * as React from 'react'
|
|
import { useIdeConnectionStatus } from '../hooks/useIdeConnectionStatus.js'
|
|
import type { IDESelection } from '../hooks/useIdeSelection.js'
|
|
import { Text } from '../ink.js'
|
|
import type { MCPServerConnection } from '../services/mcp/types.js'
|
|
|
|
type IdeStatusIndicatorProps = {
|
|
ideSelection: IDESelection | undefined
|
|
mcpClients?: MCPServerConnection[]
|
|
}
|
|
|
|
export function IdeStatusIndicator({
|
|
ideSelection,
|
|
mcpClients,
|
|
}: IdeStatusIndicatorProps): React.ReactNode {
|
|
const { status: ideStatus } = useIdeConnectionStatus(mcpClients)
|
|
|
|
// Check if we should show the IDE selection indicator
|
|
const shouldShowIdeSelection =
|
|
ideStatus === 'connected' &&
|
|
(ideSelection?.filePath ||
|
|
(ideSelection?.text && ideSelection.lineCount > 0))
|
|
|
|
if (ideStatus === null || !shouldShowIdeSelection || !ideSelection) {
|
|
return null
|
|
}
|
|
|
|
if (ideSelection.text && ideSelection.lineCount > 0) {
|
|
return (
|
|
<Text color="ide" key="selection-indicator" wrap="truncate">
|
|
⧉ {ideSelection.lineCount}{' '}
|
|
{ideSelection.lineCount === 1 ? 'line' : 'lines'} selected
|
|
</Text>
|
|
)
|
|
}
|
|
|
|
if (ideSelection.filePath) {
|
|
return (
|
|
<Text color="ide" key="selection-indicator" wrap="truncate">
|
|
⧉ In {basename(ideSelection.filePath)}
|
|
</Text>
|
|
)
|
|
}
|
|
}
|