mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-07-27 08:14:33 +08:00
e7badb1a24
* refactor(ui): simplify UpdateBadge to minimal dot indicator * feat(provider): add individual test and proxy config for providers Add support for provider-specific model test and proxy configurations: - Add ProviderTestConfig and ProviderProxyConfig types in Rust and TypeScript - Create ProviderAdvancedConfig component with collapsible panels - Update stream_check service to merge provider config with global config - Proxy config UI follows global proxy style (single URL input) Provider-level configs stored in meta field, no database schema changes needed. * feat(ui): add failover toggle and improve proxy controls - Add FailoverToggle component with slide animation - Simplify ProxyToggle style to match FailoverToggle - Add usage statistics button when proxy is active - Fix i18n parameter passing for failover messages - Add missing failover translation keys (inQueue, addQueue, priority) - Replace AboutSection icon with app logo * fix(proxy): support system proxy fallback and provider-level proxy config - Remove no_proxy() calls in http_client.rs to allow system proxy fallback - Add get_for_provider() to build HTTP client with provider-specific proxy - Update forwarder.rs and stream_check.rs to use provider proxy config - Fix EditProviderDialog.tsx to include provider.meta in useMemo deps - Add useEffect in ProviderAdvancedConfig.tsx to sync expand state Fixes #636 Fixes #583 * fix(ui): sync toast theme with app setting * feat(settings): add log config management Fixes #612 Fixes #514 * fix(proxy): increase request body size limit to 200MB Fixes #666 * docs(proxy): update timeout config descriptions and defaults Fixes #612 * fix(proxy): filter x-goog-api-key header to prevent duplication * fix(proxy): prevent proxy recursion when system proxy points to localhost Detect if HTTP_PROXY, HTTPS_PROXY, or ALL_PROXY environment variables point to loopback addresses (localhost, 127.0.0.1), and bypass system proxy in such cases to avoid infinite request loops. * fix(i18n): add providerAdvanced i18n keys and fix failover toast parameter - Add providerAdvanced.* i18n keys to en.json, zh.json, and ja.json - Fix failover toggleFailed toast to pass detail parameter - Remove Chinese fallback text from UI for English/Japanese users * fix(tray): restore tray-provider events and enable Auto failover properly - Emit provider-switched event on tray provider click (backward compatibility) - Auto button now: starts proxy, takes over live config, enables failover * fix(log): enable dynamic log level and single file mode - Initialize log at Trace level for dynamic adjustment - Change rotation strategy to KeepSome(1) for single file - Set max file size to 1GB - Delete old log file on startup for clean start * fix(tray): fix clippy uninlined format args warning Use inline format arguments: {app_type_str} instead of {} * fix(provider): allow typing :// in endpoint URL inputs Change input type from "url" to "text" to prevent browser URL validation from blocking :// input. Closes #681 * fix(stream-check): use Gemini native streaming API format - Change endpoint from OpenAI-compatible to native streamGenerateContent - Add alt=sse parameter for SSE format response - Use x-goog-api-key header instead of Bearer token - Convert request body to Gemini contents/parts format * feat(proxy): add request logging for debugging Add debug logs for outgoing requests including URL and body content with byte size, matching the existing response logging format. * fix(log): prevent usize underflow in KeepSome rotation strategy KeepSome(n) internally computes n-2, so n=1 causes underflow. Use KeepSome(2) as the minimum safe value.
260 lines
7.1 KiB
TypeScript
260 lines
7.1 KiB
TypeScript
import {
|
|
BarChart3,
|
|
Check,
|
|
Copy,
|
|
Edit,
|
|
Loader2,
|
|
Minus,
|
|
Play,
|
|
Plus,
|
|
Terminal,
|
|
TestTube2,
|
|
Trash2,
|
|
} from "lucide-react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { Button } from "@/components/ui/button";
|
|
import { cn } from "@/lib/utils";
|
|
import type { AppId } from "@/lib/api";
|
|
|
|
interface ProviderActionsProps {
|
|
appId?: AppId;
|
|
isCurrent: boolean;
|
|
/** OpenCode: 是否已添加到配置 */
|
|
isInConfig?: boolean;
|
|
isTesting?: boolean;
|
|
isProxyTakeover?: boolean;
|
|
onSwitch: () => void;
|
|
onEdit: () => void;
|
|
onDuplicate: () => void;
|
|
onTest?: () => void;
|
|
onConfigureUsage: () => void;
|
|
onDelete: () => void;
|
|
/** OpenCode: remove from live config (not delete from database) */
|
|
onRemoveFromConfig?: () => void;
|
|
onOpenTerminal?: () => void;
|
|
// 故障转移相关
|
|
isAutoFailoverEnabled?: boolean;
|
|
isInFailoverQueue?: boolean;
|
|
onToggleFailover?: (enabled: boolean) => void;
|
|
}
|
|
|
|
export function ProviderActions({
|
|
appId,
|
|
isCurrent,
|
|
isInConfig = false,
|
|
isTesting,
|
|
isProxyTakeover = false,
|
|
onSwitch,
|
|
onEdit,
|
|
onDuplicate,
|
|
onTest,
|
|
onConfigureUsage,
|
|
onDelete,
|
|
onRemoveFromConfig,
|
|
onOpenTerminal,
|
|
// 故障转移相关
|
|
isAutoFailoverEnabled = false,
|
|
isInFailoverQueue = false,
|
|
onToggleFailover,
|
|
}: ProviderActionsProps) {
|
|
const { t } = useTranslation();
|
|
const iconButtonClass = "h-8 w-8 p-1";
|
|
|
|
// OpenCode 使用累加模式
|
|
const isOpenCodeMode = appId === "opencode";
|
|
|
|
// 故障转移模式下的按钮逻辑(OpenCode 不支持故障转移)
|
|
const isFailoverMode =
|
|
!isOpenCodeMode && isAutoFailoverEnabled && onToggleFailover;
|
|
|
|
// 处理主按钮点击
|
|
const handleMainButtonClick = () => {
|
|
if (isOpenCodeMode) {
|
|
// OpenCode 模式:切换配置状态(添加/移除)
|
|
if (isInConfig) {
|
|
// Use onRemoveFromConfig if available, otherwise fall back to onDelete
|
|
if (onRemoveFromConfig) {
|
|
onRemoveFromConfig();
|
|
} else {
|
|
onDelete();
|
|
}
|
|
} else {
|
|
onSwitch(); // 添加到配置
|
|
}
|
|
} else if (isFailoverMode) {
|
|
// 故障转移模式:切换队列状态
|
|
onToggleFailover(!isInFailoverQueue);
|
|
} else {
|
|
// 普通模式:切换供应商
|
|
onSwitch();
|
|
}
|
|
};
|
|
|
|
// 主按钮的状态和样式
|
|
const getMainButtonState = () => {
|
|
// OpenCode 累加模式
|
|
if (isOpenCodeMode) {
|
|
if (isInConfig) {
|
|
return {
|
|
disabled: false,
|
|
variant: "secondary" as const,
|
|
className:
|
|
"bg-orange-100 text-orange-600 hover:bg-orange-200 dark:bg-orange-900/50 dark:text-orange-400 dark:hover:bg-orange-900/70",
|
|
icon: <Minus className="h-4 w-4" />,
|
|
text: t("provider.removeFromConfig", { defaultValue: "移除" }),
|
|
};
|
|
}
|
|
return {
|
|
disabled: false,
|
|
variant: "default" as const,
|
|
className:
|
|
"bg-emerald-500 hover:bg-emerald-600 dark:bg-emerald-600 dark:hover:bg-emerald-700",
|
|
icon: <Plus className="h-4 w-4" />,
|
|
text: t("provider.addToConfig", { defaultValue: "添加" }),
|
|
};
|
|
}
|
|
|
|
// 故障转移模式
|
|
if (isFailoverMode) {
|
|
if (isInFailoverQueue) {
|
|
return {
|
|
disabled: false,
|
|
variant: "secondary" as const,
|
|
className:
|
|
"bg-blue-100 text-blue-600 hover:bg-blue-200 dark:bg-blue-900/50 dark:text-blue-400 dark:hover:bg-blue-900/70",
|
|
icon: <Check className="h-4 w-4" />,
|
|
text: t("failover.inQueue", { defaultValue: "已加入" }),
|
|
};
|
|
}
|
|
return {
|
|
disabled: false,
|
|
variant: "default" as const,
|
|
className:
|
|
"bg-blue-500 hover:bg-blue-600 dark:bg-blue-600 dark:hover:bg-blue-700",
|
|
icon: <Plus className="h-4 w-4" />,
|
|
text: t("failover.addQueue", { defaultValue: "加入" }),
|
|
};
|
|
}
|
|
|
|
// 普通模式
|
|
if (isCurrent) {
|
|
return {
|
|
disabled: true,
|
|
variant: "secondary" as const,
|
|
className:
|
|
"bg-gray-200 text-muted-foreground hover:bg-gray-200 hover:text-muted-foreground dark:bg-gray-700 dark:hover:bg-gray-700",
|
|
icon: <Check className="h-4 w-4" />,
|
|
text: t("provider.inUse"),
|
|
};
|
|
}
|
|
|
|
return {
|
|
disabled: false,
|
|
variant: "default" as const,
|
|
className: isProxyTakeover
|
|
? "bg-emerald-500 hover:bg-emerald-600 dark:bg-emerald-600 dark:hover:bg-emerald-700"
|
|
: "",
|
|
icon: <Play className="h-4 w-4" />,
|
|
text: t("provider.enable"),
|
|
};
|
|
};
|
|
|
|
const buttonState = getMainButtonState();
|
|
|
|
// OpenCode 模式下删除按钮始终可用(主按钮"移除"是从 live 配置移除,删除是从数据库删除)
|
|
const canDelete = isOpenCodeMode ? true : !isCurrent;
|
|
|
|
return (
|
|
<div className="flex items-center gap-1.5">
|
|
<Button
|
|
size="sm"
|
|
variant={buttonState.variant}
|
|
onClick={handleMainButtonClick}
|
|
disabled={buttonState.disabled}
|
|
className={cn("w-[4.5rem] px-2.5", buttonState.className)}
|
|
>
|
|
{buttonState.icon}
|
|
{buttonState.text}
|
|
</Button>
|
|
|
|
<div className="flex items-center gap-1">
|
|
<Button
|
|
size="icon"
|
|
variant="ghost"
|
|
onClick={onEdit}
|
|
title={t("common.edit")}
|
|
className={iconButtonClass}
|
|
>
|
|
<Edit className="h-4 w-4" />
|
|
</Button>
|
|
|
|
<Button
|
|
size="icon"
|
|
variant="ghost"
|
|
onClick={onDuplicate}
|
|
title={t("provider.duplicate")}
|
|
className={iconButtonClass}
|
|
>
|
|
<Copy className="h-4 w-4" />
|
|
</Button>
|
|
|
|
{onTest && (
|
|
<Button
|
|
size="icon"
|
|
variant="ghost"
|
|
onClick={onTest}
|
|
disabled={isTesting}
|
|
title={t("modelTest.testProvider", "测试模型")}
|
|
className={iconButtonClass}
|
|
>
|
|
{isTesting ? (
|
|
<Loader2 className="h-4 w-4 animate-spin" />
|
|
) : (
|
|
<TestTube2 className="h-4 w-4" />
|
|
)}
|
|
</Button>
|
|
)}
|
|
|
|
<Button
|
|
size="icon"
|
|
variant="ghost"
|
|
onClick={onConfigureUsage}
|
|
title={t("provider.configureUsage")}
|
|
className={iconButtonClass}
|
|
>
|
|
<BarChart3 className="h-4 w-4" />
|
|
</Button>
|
|
|
|
{onOpenTerminal && (
|
|
<Button
|
|
size="icon"
|
|
variant="ghost"
|
|
onClick={onOpenTerminal}
|
|
title={t("provider.openTerminal", "打开终端")}
|
|
className={cn(
|
|
iconButtonClass,
|
|
"hover:text-emerald-600 dark:hover:text-emerald-400",
|
|
)}
|
|
>
|
|
<Terminal className="h-4 w-4" />
|
|
</Button>
|
|
)}
|
|
|
|
<Button
|
|
size="icon"
|
|
variant="ghost"
|
|
onClick={canDelete ? onDelete : undefined}
|
|
title={t("common.delete")}
|
|
className={cn(
|
|
iconButtonClass,
|
|
canDelete && "hover:text-red-500 dark:hover:text-red-400",
|
|
!canDelete && "opacity-40 cursor-not-allowed text-muted-foreground",
|
|
)}
|
|
>
|
|
<Trash2 className="h-4 w-4" />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|