mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-22 00:05:51 +00:00
style: 完成所有文件的lint
This commit is contained in:
@@ -1,22 +1,22 @@
|
||||
import { feature } from 'bun:bundle'
|
||||
import type { TextBlockParam } from '@anthropic-ai/sdk/resources/index.mjs'
|
||||
import React, { useContext, useMemo } from 'react'
|
||||
import { getKairosActive, getUserMsgOptIn } from '../../bootstrap/state.js'
|
||||
import { Box } from '@anthropic/ink'
|
||||
import { getFeatureValue_CACHED_MAY_BE_STALE } from '../../services/analytics/growthbook.js'
|
||||
import { useAppState } from '../../state/AppState.js'
|
||||
import { isEnvTruthy } from '../../utils/envUtils.js'
|
||||
import { logError } from '../../utils/log.js'
|
||||
import { countCharInString } from '../../utils/stringUtils.js'
|
||||
import { MessageActionsSelectedContext } from '../messageActions.js'
|
||||
import { HighlightedThinkingText } from './HighlightedThinkingText.js'
|
||||
import { feature } from 'bun:bundle';
|
||||
import type { TextBlockParam } from '@anthropic-ai/sdk/resources/index.mjs';
|
||||
import React, { useContext, useMemo } from 'react';
|
||||
import { getKairosActive, getUserMsgOptIn } from '../../bootstrap/state.js';
|
||||
import { Box } from '@anthropic/ink';
|
||||
import { getFeatureValue_CACHED_MAY_BE_STALE } from '../../services/analytics/growthbook.js';
|
||||
import { useAppState } from '../../state/AppState.js';
|
||||
import { isEnvTruthy } from '../../utils/envUtils.js';
|
||||
import { logError } from '../../utils/log.js';
|
||||
import { countCharInString } from '../../utils/stringUtils.js';
|
||||
import { MessageActionsSelectedContext } from '../messageActions.js';
|
||||
import { HighlightedThinkingText } from './HighlightedThinkingText.js';
|
||||
|
||||
type Props = {
|
||||
addMargin: boolean
|
||||
param: TextBlockParam
|
||||
isTranscriptMode?: boolean
|
||||
timestamp?: string
|
||||
}
|
||||
addMargin: boolean;
|
||||
param: TextBlockParam;
|
||||
isTranscriptMode?: boolean;
|
||||
timestamp?: string;
|
||||
};
|
||||
|
||||
// Hard cap on displayed prompt text. Piping large files via stdin
|
||||
// (e.g. `cat 11k-line-file | claude`) creates a single user message whose
|
||||
@@ -26,16 +26,11 @@ type Props = {
|
||||
// avoids this via <Static> (print-and-forget to terminal scrollback).
|
||||
// Head+tail because `{ cat file; echo prompt; } | claude` puts the user's
|
||||
// actual question at the end.
|
||||
const MAX_DISPLAY_CHARS = 10_000
|
||||
const TRUNCATE_HEAD_CHARS = 2_500
|
||||
const TRUNCATE_TAIL_CHARS = 2_500
|
||||
const MAX_DISPLAY_CHARS = 10_000;
|
||||
const TRUNCATE_HEAD_CHARS = 2_500;
|
||||
const TRUNCATE_TAIL_CHARS = 2_500;
|
||||
|
||||
export function UserPromptMessage({
|
||||
addMargin,
|
||||
param: { text },
|
||||
isTranscriptMode,
|
||||
timestamp,
|
||||
}: Props): React.ReactNode {
|
||||
export function UserPromptMessage({ addMargin, param: { text }, isTranscriptMode, timestamp }: Props): React.ReactNode {
|
||||
// REPL.tsx passes isBriefOnly={viewedTeammateTask ? false : isBriefOnly}
|
||||
// but that prop isn't threaded this deep — replicate the override by
|
||||
// reading viewingAgentTaskId directly. Computed here (not in the child)
|
||||
@@ -48,65 +43,45 @@ export function UserPromptMessage({
|
||||
// bypasses React.memo). Runtime-gated like isBriefEnabled() but inlined
|
||||
// to avoid pulling BriefTool.ts → prompt.ts tool-name strings into
|
||||
// external builds.
|
||||
const isBriefOnly =
|
||||
feature('KAIROS') || feature('KAIROS_BRIEF')
|
||||
?
|
||||
useAppState(s => s.isBriefOnly)
|
||||
: false
|
||||
const isBriefOnly = feature('KAIROS') || feature('KAIROS_BRIEF') ? useAppState(s => s.isBriefOnly) : false;
|
||||
const viewingAgentTaskId =
|
||||
feature('KAIROS') || feature('KAIROS_BRIEF')
|
||||
?
|
||||
useAppState(s => s.viewingAgentTaskId)
|
||||
: null
|
||||
feature('KAIROS') || feature('KAIROS_BRIEF') ? useAppState(s => s.viewingAgentTaskId) : null;
|
||||
// Hoisted to mount-time — per-message component, re-renders on every scroll.
|
||||
const briefEnvEnabled =
|
||||
feature('KAIROS') || feature('KAIROS_BRIEF')
|
||||
?
|
||||
useMemo(() => isEnvTruthy(process.env.CLAUDE_CODE_BRIEF), [])
|
||||
: false
|
||||
? useMemo(() => isEnvTruthy(process.env.CLAUDE_CODE_BRIEF), [])
|
||||
: false;
|
||||
const useBriefLayout =
|
||||
feature('KAIROS') || feature('KAIROS_BRIEF')
|
||||
? (getKairosActive() ||
|
||||
(getUserMsgOptIn() &&
|
||||
(briefEnvEnabled ||
|
||||
getFeatureValue_CACHED_MAY_BE_STALE(
|
||||
'tengu_kairos_brief',
|
||||
false,
|
||||
)))) &&
|
||||
(briefEnvEnabled || getFeatureValue_CACHED_MAY_BE_STALE('tengu_kairos_brief', false)))) &&
|
||||
isBriefOnly &&
|
||||
!isTranscriptMode &&
|
||||
!viewingAgentTaskId
|
||||
: false
|
||||
: false;
|
||||
|
||||
// Truncate before the early return so the hook order is stable.
|
||||
const displayText = useMemo(() => {
|
||||
if (text.length <= MAX_DISPLAY_CHARS) return text
|
||||
const head = text.slice(0, TRUNCATE_HEAD_CHARS)
|
||||
const tail = text.slice(-TRUNCATE_TAIL_CHARS)
|
||||
const hiddenLines =
|
||||
countCharInString(text, '\n', TRUNCATE_HEAD_CHARS) -
|
||||
countCharInString(tail, '\n')
|
||||
return `${head}\n… +${hiddenLines} lines …\n${tail}`
|
||||
}, [text])
|
||||
if (text.length <= MAX_DISPLAY_CHARS) return text;
|
||||
const head = text.slice(0, TRUNCATE_HEAD_CHARS);
|
||||
const tail = text.slice(-TRUNCATE_TAIL_CHARS);
|
||||
const hiddenLines = countCharInString(text, '\n', TRUNCATE_HEAD_CHARS) - countCharInString(tail, '\n');
|
||||
return `${head}\n… +${hiddenLines} lines …\n${tail}`;
|
||||
}, [text]);
|
||||
|
||||
const isSelected = useContext(MessageActionsSelectedContext)
|
||||
const isSelected = useContext(MessageActionsSelectedContext);
|
||||
|
||||
if (!text) {
|
||||
logError(new Error('No content found in user prompt message'))
|
||||
return null
|
||||
logError(new Error('No content found in user prompt message'));
|
||||
return null;
|
||||
}
|
||||
|
||||
return (
|
||||
<Box
|
||||
flexDirection="column"
|
||||
marginTop={addMargin ? 1 : 0}
|
||||
backgroundColor={
|
||||
isSelected
|
||||
? 'messageActionsBackground'
|
||||
: useBriefLayout
|
||||
? undefined
|
||||
: 'userMessageBackground'
|
||||
}
|
||||
backgroundColor={isSelected ? 'messageActionsBackground' : useBriefLayout ? undefined : 'userMessageBackground'}
|
||||
paddingRight={useBriefLayout ? 0 : 1}
|
||||
>
|
||||
<HighlightedThinkingText
|
||||
@@ -115,5 +90,5 @@ export function UserPromptMessage({
|
||||
timestamp={useBriefLayout ? timestamp : undefined}
|
||||
/>
|
||||
</Box>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user