mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-18 14:25:51 +00:00
删除未使用的文件(BuiltinStatusLine.tsx、4 个重复的 .ts stub)、 移除约 55 个文件中未使用的 React 导入、 清理约 50 处未使用的导入/变量/参数。 净减少 ~296 行代码,precheck 4077 测试全部通过。 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
86 lines
3.9 KiB
TypeScript
86 lines
3.9 KiB
TypeScript
import * as React from 'react';
|
|
import { resetCostState } from '../../bootstrap/state.js';
|
|
import { clearTrustedDeviceToken, enrollTrustedDevice } from '../../bridge/trustedDevice.js';
|
|
import type { LocalJSXCommandContext } from '../../commands.js';
|
|
import { ConfigurableShortcutHint } from '../../components/ConfigurableShortcutHint.js';
|
|
import { ConsoleOAuthFlow } from '../../components/ConsoleOAuthFlow.js';
|
|
import { Dialog } from '@anthropic/ink';
|
|
import { useMainLoopModel } from '../../hooks/useMainLoopModel.js';
|
|
import { Text } from '@anthropic/ink';
|
|
import { refreshGrowthBookAfterAuthChange } from '../../services/analytics/growthbook.js';
|
|
import { refreshPolicyLimits } from '../../services/policyLimits/index.js';
|
|
import { refreshRemoteManagedSettings } from '../../services/remoteManagedSettings/index.js';
|
|
import type { LocalJSXCommandOnDone } from '../../types/command.js';
|
|
import { stripSignatureBlocks } from '../../utils/messages.js';
|
|
import {
|
|
checkAndDisableAutoModeIfNeeded,
|
|
resetAutoModeGateCheck,
|
|
} from '../../utils/permissions/bypassPermissionsKillswitch.js';
|
|
import { resetUserCache } from '../../utils/user.js';
|
|
|
|
export async function call(onDone: LocalJSXCommandOnDone, context: LocalJSXCommandContext): Promise<React.ReactNode> {
|
|
return (
|
|
<Login
|
|
onDone={async success => {
|
|
context.onChangeAPIKey();
|
|
// Signature-bearing blocks (thinking, connector_text) are bound to the API key —
|
|
// strip them so the new key doesn't reject stale signatures.
|
|
context.setMessages(stripSignatureBlocks);
|
|
if (success) {
|
|
// Post-login refresh logic. Keep in sync with onboarding in src/interactiveHelpers.tsx
|
|
// Reset cost state when switching accounts
|
|
resetCostState();
|
|
// Refresh remotely managed settings after login (non-blocking)
|
|
void refreshRemoteManagedSettings();
|
|
// Refresh policy limits after login (non-blocking)
|
|
void refreshPolicyLimits();
|
|
// Clear user data cache BEFORE GrowthBook refresh so it picks up fresh credentials
|
|
resetUserCache();
|
|
// Refresh GrowthBook after login to get updated feature flags (e.g., for claude.ai MCPs)
|
|
refreshGrowthBookAfterAuthChange();
|
|
// Clear any stale trusted device token from a previous account before
|
|
// re-enrolling — prevents sending the old token on bridge calls while
|
|
// the async enrollTrustedDevice() is in-flight.
|
|
clearTrustedDeviceToken();
|
|
// Enroll as a trusted device for Remote Control (10-min fresh-session window)
|
|
void enrollTrustedDevice();
|
|
// Reset killswitch gate checks and re-run with new org
|
|
resetAutoModeGateCheck();
|
|
const appState = context.getAppState();
|
|
void checkAndDisableAutoModeIfNeeded(appState.toolPermissionContext, context.setAppState, appState.fastMode);
|
|
// Increment authVersion to trigger re-fetching of auth-dependent data in hooks (e.g., MCP servers)
|
|
context.setAppState(prev => ({
|
|
...prev,
|
|
authVersion: prev.authVersion + 1,
|
|
}));
|
|
}
|
|
onDone(success ? 'Login successful' : 'Login interrupted');
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function Login(props: {
|
|
onDone: (success: boolean, mainLoopModel: string) => void;
|
|
startingMessage?: string;
|
|
}): React.ReactNode {
|
|
const mainLoopModel = useMainLoopModel();
|
|
|
|
return (
|
|
<Dialog
|
|
title="Login"
|
|
onCancel={() => props.onDone(false, mainLoopModel)}
|
|
color="permission"
|
|
inputGuide={exitState =>
|
|
exitState.pending ? (
|
|
<Text>Press {exitState.keyName} again to exit</Text>
|
|
) : (
|
|
<ConfigurableShortcutHint action="confirm:no" context="Confirmation" fallback="Esc" description="cancel" />
|
|
)
|
|
}
|
|
>
|
|
<ConsoleOAuthFlow onDone={() => props.onDone(true, mainLoopModel)} startingMessage={props.startingMessage} />
|
|
</Dialog>
|
|
);
|
|
}
|