mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 13:55:50 +00:00
* feat: acp-link 支持 --group 参数指定 channel group - 添加 --group CLI flag,校验格式 [a-zA-Z0-9_-]+ - 支持 ACP_RCS_GROUP 环境变量 fallback - 传递 channelGroupId 到 RcsUpstreamClient - 更新 README 文档说明 --group 和相关环境变量 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: RCS 后端 session 复用与 group 绑定 - storeFindEnvironmentByMachineName 匹配 offline 状态,防止重连创建重复 session - registerEnvironment 复用已有 session 而非每次新建 - EnvironmentResponse 返回 channel_group_id 字段 - 注册时将 session 绑定到 group ID,支持 web UI 按 group 查询 - apiKeyAuth 不再设置 uuid,由 uuidAuth 统一处理 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: Web UI Token Manager — 多 token 切换与 session 隔离 - 新增 useTokens hook 管理 localStorage token CRUD - 新增 TokenManagerDialog 弹窗组件(添加/编辑/删除/切换 token) - api client 支持Bearer token 认证,UUID 跟随 token 变化 - Navbar 添加 token 切换按钮 - 切换 token 时自动 reload,实现 session 数据隔离 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: 修复 useTokens useState 初始化函数签名错误 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
147 lines
5.3 KiB
TypeScript
147 lines
5.3 KiB
TypeScript
import { useState, useEffect, useCallback, lazy, Suspense } from "react";
|
|
import { Navbar } from "./components/Navbar";
|
|
import { IdentityPanel } from "./components/IdentityPanel";
|
|
import { TokenManagerDialog } from "./components/TokenManagerDialog";
|
|
import { ThemeProvider } from "./lib/theme";
|
|
import { getUuid, setUuid, apiBind, setActiveApiToken } from "./api/client";
|
|
import { ACPDirectView } from "./components/ACPDirectView";
|
|
import { useTokens } from "./hooks/useTokens";
|
|
|
|
const Dashboard = lazy(() => import("./pages/Dashboard").then((m) => ({ default: m.Dashboard })));
|
|
const SessionDetail = lazy(() => import("./pages/SessionDetail").then((m) => ({ default: m.SessionDetail })));
|
|
|
|
export default function App() {
|
|
const [currentSessionId, setCurrentSessionId] = useState<string | null>(null);
|
|
const [identityOpen, setIdentityOpen] = useState(false);
|
|
const [tokenDialogOpen, setTokenDialogOpen] = useState(false);
|
|
const [acpDirect, setAcpDirect] = useState<{ url: string; token: string } | null>(null);
|
|
const { tokens, activeTokenId, activeLabel, activeTokenValue, setActiveTokenId, addToken, removeToken, updateToken } = useTokens();
|
|
|
|
// Sync active token to API client
|
|
useEffect(() => {
|
|
setActiveApiToken(activeTokenValue);
|
|
}, [activeTokenValue]);
|
|
|
|
const handleSetActiveToken = useCallback((id: string) => {
|
|
setActiveTokenId(id);
|
|
}, [setActiveTokenId]);
|
|
|
|
// Simple hash-based router
|
|
const parseRoute = useCallback(() => {
|
|
// Ensure UUID exists
|
|
getUuid();
|
|
|
|
const path = window.location.pathname;
|
|
|
|
// Check for UUID import from QR scan (?uuid=xxx)
|
|
const params = new URLSearchParams(window.location.search);
|
|
const importUuid = params.get("uuid");
|
|
if (importUuid) {
|
|
setUuid(importUuid);
|
|
const url = new URL(window.location.href);
|
|
url.searchParams.delete("uuid");
|
|
window.history.replaceState(null, "", url);
|
|
}
|
|
|
|
// Check for ACP direct connection (?acp=1)
|
|
const acpParam = params.get("acp");
|
|
if (acpParam === "1") {
|
|
const stored = sessionStorage.getItem("acp_connection");
|
|
if (stored) {
|
|
try {
|
|
const acpData = JSON.parse(stored);
|
|
if (acpData.url && acpData.token) {
|
|
setAcpDirect({ url: acpData.url, token: acpData.token });
|
|
sessionStorage.removeItem("acp_connection");
|
|
// Clean URL
|
|
const url = new URL(window.location.href);
|
|
url.searchParams.delete("acp");
|
|
window.history.replaceState(null, "", url);
|
|
return;
|
|
}
|
|
} catch {
|
|
sessionStorage.removeItem("acp_connection");
|
|
}
|
|
}
|
|
}
|
|
|
|
// Check for CLI session bind (?sid=xxx) — bind session to current UUID
|
|
const sid = params.get("sid");
|
|
if (sid) {
|
|
const url = new URL(window.location.href);
|
|
url.searchParams.delete("sid");
|
|
window.history.replaceState(null, "", `/code/${sid}`);
|
|
setCurrentSessionId(sid);
|
|
// Bind this session to the current user's UUID for ownership
|
|
apiBind(sid).catch((err: unknown) => {
|
|
console.warn("Failed to bind session:", err);
|
|
});
|
|
return;
|
|
}
|
|
|
|
// Path-based routing: /code/session_xxx → session detail
|
|
const match = path.match(/^\/code\/([^/]+)/);
|
|
if (match && match[1]) {
|
|
setCurrentSessionId(match[1]);
|
|
} else {
|
|
setCurrentSessionId(null);
|
|
}
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
parseRoute();
|
|
window.addEventListener("popstate", parseRoute);
|
|
return () => window.removeEventListener("popstate", parseRoute);
|
|
}, [parseRoute]);
|
|
|
|
const navigateToSession = useCallback((sessionId: string) => {
|
|
window.history.pushState(null, "", `/code/${sessionId}`);
|
|
setCurrentSessionId(sessionId);
|
|
}, []);
|
|
|
|
const navigateToDashboard = useCallback(() => {
|
|
window.history.pushState(null, "", "/code/");
|
|
setCurrentSessionId(null);
|
|
setAcpDirect(null);
|
|
}, []);
|
|
|
|
return (
|
|
<ThemeProvider defaultTheme="system">
|
|
<div className="flex h-screen flex-col bg-surface-0 text-text-primary">
|
|
<Navbar
|
|
onIdentityClick={() => setIdentityOpen(true)}
|
|
onTokenClick={() => setTokenDialogOpen(true)}
|
|
activeTokenLabel={currentSessionId ? undefined : activeLabel}
|
|
sessionTitle={currentSessionId || (acpDirect ? "ACP" : undefined)}
|
|
onBack={(currentSessionId || acpDirect) ? navigateToDashboard : undefined}
|
|
/>
|
|
|
|
<Suspense fallback={<div className="flex flex-1 items-center justify-center text-text-muted">Loading...</div>}>
|
|
{acpDirect ? (
|
|
<ACPDirectView url={acpDirect.url} token={acpDirect.token} onBack={navigateToDashboard} />
|
|
) : currentSessionId ? (
|
|
<SessionDetail key={currentSessionId} sessionId={currentSessionId} />
|
|
) : (
|
|
<div className="flex-1 overflow-y-auto">
|
|
<Dashboard onNavigateSession={navigateToSession} />
|
|
</div>
|
|
)}
|
|
</Suspense>
|
|
|
|
<IdentityPanel open={identityOpen} onClose={() => setIdentityOpen(false)} />
|
|
|
|
<TokenManagerDialog
|
|
open={tokenDialogOpen}
|
|
onClose={() => setTokenDialogOpen(false)}
|
|
tokens={tokens}
|
|
activeTokenId={activeTokenId}
|
|
onSetActive={handleSetActiveToken}
|
|
onAdd={addToken}
|
|
onRemove={removeToken}
|
|
onUpdate={updateToken}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
}
|