mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-18 14:25:51 +00:00
更新大量 tsx 原始文件; 已经迁移 login panel; 部分 (#121)
* 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>
This commit is contained in:
@@ -1,136 +1,52 @@
|
||||
import { c as _c } from "react/compiler-runtime";
|
||||
import type { TextBlockParam } from '@anthropic-ai/sdk/resources/index.mjs';
|
||||
import * as React from 'react';
|
||||
import { CHANNEL_ARROW } from '../../constants/figures.js';
|
||||
import { CHANNEL_TAG } from '../../constants/xml.js';
|
||||
import { Box, Text } from '../../ink.js';
|
||||
import { truncateToWidth } from '../../utils/format.js';
|
||||
import type { TextBlockParam } from '@anthropic-ai/sdk/resources/index.mjs'
|
||||
import * as React from 'react'
|
||||
import { CHANNEL_ARROW } from '../../constants/figures.js'
|
||||
import { CHANNEL_TAG } from '../../constants/xml.js'
|
||||
import { Box, Text } from '../../ink.js'
|
||||
import { truncateToWidth } from '../../utils/format.js'
|
||||
|
||||
type Props = {
|
||||
addMargin: boolean;
|
||||
param: TextBlockParam;
|
||||
};
|
||||
addMargin: boolean
|
||||
param: TextBlockParam
|
||||
}
|
||||
|
||||
// <channel source="..." user="..." chat_id="...">content</channel>
|
||||
// source is always first (wrapChannelMessage writes it), user is optional.
|
||||
const CHANNEL_RE = new RegExp(`<${CHANNEL_TAG}\\s+source="([^"]+)"([^>]*)>\\n?([\\s\\S]*?)\\n?</${CHANNEL_TAG}>`);
|
||||
const USER_ATTR_RE = /\buser="([^"]+)"/;
|
||||
const CHANNEL_RE = new RegExp(
|
||||
`<${CHANNEL_TAG}\\s+source="([^"]+)"([^>]*)>\\n?([\\s\\S]*?)\\n?</${CHANNEL_TAG}>`,
|
||||
)
|
||||
const USER_ATTR_RE = /\buser="([^"]+)"/
|
||||
|
||||
// Plugin-provided servers get names like plugin:slack-channel:slack via
|
||||
// addPluginScopeToServers — show just the leaf. Matches the suffix-match
|
||||
// logic in isServerInChannels.
|
||||
function displayServerName(name: string): string {
|
||||
const i = name.lastIndexOf(':');
|
||||
return i === -1 ? name : name.slice(i + 1);
|
||||
const i = name.lastIndexOf(':')
|
||||
return i === -1 ? name : name.slice(i + 1)
|
||||
}
|
||||
const TRUNCATE_AT = 60;
|
||||
export function UserChannelMessage(t0) {
|
||||
const $ = _c(29);
|
||||
const {
|
||||
addMargin,
|
||||
param: t1
|
||||
} = t0;
|
||||
const {
|
||||
text
|
||||
} = t1;
|
||||
let T0;
|
||||
let T1;
|
||||
let T2;
|
||||
let t2;
|
||||
let t3;
|
||||
let t4;
|
||||
let t5;
|
||||
let t6;
|
||||
let t7;
|
||||
let truncated;
|
||||
let user;
|
||||
if ($[0] !== addMargin || $[1] !== text) {
|
||||
t7 = Symbol.for("react.early_return_sentinel");
|
||||
bb0: {
|
||||
const m = CHANNEL_RE.exec(text);
|
||||
if (!m) {
|
||||
t7 = null;
|
||||
break bb0;
|
||||
}
|
||||
const [, source, attrs, content] = m;
|
||||
user = USER_ATTR_RE.exec(attrs ?? "")?.[1];
|
||||
const body = (content ?? "").trim().replace(/\s+/g, " ");
|
||||
truncated = truncateToWidth(body, TRUNCATE_AT);
|
||||
T2 = Box;
|
||||
t6 = addMargin ? 1 : 0;
|
||||
T1 = Text;
|
||||
if ($[13] === Symbol.for("react.memo_cache_sentinel")) {
|
||||
t4 = <Text color="suggestion">{CHANNEL_ARROW}</Text>;
|
||||
$[13] = t4;
|
||||
} else {
|
||||
t4 = $[13];
|
||||
}
|
||||
t5 = " ";
|
||||
T0 = Text;
|
||||
t2 = true;
|
||||
t3 = displayServerName(source ?? "");
|
||||
}
|
||||
$[0] = addMargin;
|
||||
$[1] = text;
|
||||
$[2] = T0;
|
||||
$[3] = T1;
|
||||
$[4] = T2;
|
||||
$[5] = t2;
|
||||
$[6] = t3;
|
||||
$[7] = t4;
|
||||
$[8] = t5;
|
||||
$[9] = t6;
|
||||
$[10] = t7;
|
||||
$[11] = truncated;
|
||||
$[12] = user;
|
||||
} else {
|
||||
T0 = $[2];
|
||||
T1 = $[3];
|
||||
T2 = $[4];
|
||||
t2 = $[5];
|
||||
t3 = $[6];
|
||||
t4 = $[7];
|
||||
t5 = $[8];
|
||||
t6 = $[9];
|
||||
t7 = $[10];
|
||||
truncated = $[11];
|
||||
user = $[12];
|
||||
}
|
||||
if (t7 !== Symbol.for("react.early_return_sentinel")) {
|
||||
return t7;
|
||||
}
|
||||
const t8 = user ? ` \u00b7 ${user}` : "";
|
||||
let t9;
|
||||
if ($[14] !== T0 || $[15] !== t2 || $[16] !== t3 || $[17] !== t8) {
|
||||
t9 = <T0 dimColor={t2}>{t3}{t8}:</T0>;
|
||||
$[14] = T0;
|
||||
$[15] = t2;
|
||||
$[16] = t3;
|
||||
$[17] = t8;
|
||||
$[18] = t9;
|
||||
} else {
|
||||
t9 = $[18];
|
||||
}
|
||||
let t10;
|
||||
if ($[19] !== T1 || $[20] !== t4 || $[21] !== t5 || $[22] !== t9 || $[23] !== truncated) {
|
||||
t10 = <T1>{t4}{t5}{t9}{" "}{truncated}</T1>;
|
||||
$[19] = T1;
|
||||
$[20] = t4;
|
||||
$[21] = t5;
|
||||
$[22] = t9;
|
||||
$[23] = truncated;
|
||||
$[24] = t10;
|
||||
} else {
|
||||
t10 = $[24];
|
||||
}
|
||||
let t11;
|
||||
if ($[25] !== T2 || $[26] !== t10 || $[27] !== t6) {
|
||||
t11 = <T2 marginTop={t6}>{t10}</T2>;
|
||||
$[25] = T2;
|
||||
$[26] = t10;
|
||||
$[27] = t6;
|
||||
$[28] = t11;
|
||||
} else {
|
||||
t11 = $[28];
|
||||
}
|
||||
return t11;
|
||||
|
||||
const TRUNCATE_AT = 60
|
||||
|
||||
export function UserChannelMessage({
|
||||
addMargin,
|
||||
param: { text },
|
||||
}: Props): React.ReactNode {
|
||||
const m = CHANNEL_RE.exec(text)
|
||||
if (!m) return null
|
||||
const [, source, attrs, content] = m
|
||||
const user = USER_ATTR_RE.exec(attrs ?? '')?.[1]
|
||||
const body = (content ?? '').trim().replace(/\s+/g, ' ')
|
||||
const truncated = truncateToWidth(body, TRUNCATE_AT)
|
||||
return (
|
||||
<Box marginTop={addMargin ? 1 : 0}>
|
||||
<Text>
|
||||
<Text color="suggestion">{CHANNEL_ARROW}</Text>{' '}
|
||||
<Text dimColor>
|
||||
{displayServerName(source ?? '')}
|
||||
{user ? ` \u00b7 ${user}` : ''}:
|
||||
</Text>{' '}
|
||||
{truncated}
|
||||
</Text>
|
||||
</Box>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user