2025-09-19 08:30:29 +08:00
|
|
|
|
import React, { useEffect, useState } from "react";
|
2025-09-28 20:47:44 +08:00
|
|
|
|
import { useTranslation } from "react-i18next";
|
2025-08-27 11:00:53 +08:00
|
|
|
|
import { Provider } from "../types";
|
2025-09-28 23:00:43 +08:00
|
|
|
|
import { Play, Edit3, Trash2, CheckCircle2, Users, Check } from "lucide-react";
|
2025-09-08 15:38:06 +08:00
|
|
|
|
import { buttonStyles, cardStyles, badgeStyles, cn } from "../lib/styles";
|
2025-09-19 08:30:29 +08:00
|
|
|
|
import { AppType } from "../lib/tauri-api";
|
2025-09-11 22:33:55 +08:00
|
|
|
|
// 不再在列表中显示分类徽章,避免造成困惑
|
2025-08-04 22:16:26 +08:00
|
|
|
|
|
|
|
|
|
|
interface ProviderListProps {
|
2025-08-27 11:00:53 +08:00
|
|
|
|
providers: Record<string, Provider>;
|
|
|
|
|
|
currentProviderId: string;
|
|
|
|
|
|
onSwitch: (id: string) => void;
|
|
|
|
|
|
onDelete: (id: string) => void;
|
|
|
|
|
|
onEdit: (id: string) => void;
|
2025-09-19 08:30:29 +08:00
|
|
|
|
appType?: AppType;
|
2025-09-19 14:22:39 +08:00
|
|
|
|
onNotify?: (
|
|
|
|
|
|
message: string,
|
|
|
|
|
|
type: "success" | "error",
|
2025-09-21 10:50:08 +08:00
|
|
|
|
duration?: number
|
2025-09-19 14:22:39 +08:00
|
|
|
|
) => void;
|
2025-08-04 22:16:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const ProviderList: React.FC<ProviderListProps> = ({
|
|
|
|
|
|
providers,
|
|
|
|
|
|
currentProviderId,
|
|
|
|
|
|
onSwitch,
|
2025-08-05 09:51:41 +08:00
|
|
|
|
onDelete,
|
2025-08-27 11:00:53 +08:00
|
|
|
|
onEdit,
|
2025-09-19 08:30:29 +08:00
|
|
|
|
appType,
|
|
|
|
|
|
onNotify,
|
2025-08-04 22:16:26 +08:00
|
|
|
|
}) => {
|
2025-09-28 20:47:44 +08:00
|
|
|
|
const { t } = useTranslation();
|
2025-09-06 23:57:10 +08:00
|
|
|
|
// 提取API地址(兼容不同供应商配置:Claude env / Codex TOML)
|
2025-08-07 15:48:30 +08:00
|
|
|
|
const getApiUrl = (provider: Provider): string => {
|
|
|
|
|
|
try {
|
2025-09-06 23:57:10 +08:00
|
|
|
|
const cfg = provider.settingsConfig;
|
|
|
|
|
|
// Claude/Anthropic: 从 env 中读取
|
|
|
|
|
|
if (cfg?.env?.ANTHROPIC_BASE_URL) {
|
|
|
|
|
|
return cfg.env.ANTHROPIC_BASE_URL;
|
2025-08-07 15:48:30 +08:00
|
|
|
|
}
|
2025-09-06 23:57:10 +08:00
|
|
|
|
// Codex: 从 TOML 配置中解析 base_url
|
|
|
|
|
|
if (typeof cfg?.config === "string" && cfg.config.includes("base_url")) {
|
2025-09-19 09:41:08 +08:00
|
|
|
|
// 支持单/双引号
|
|
|
|
|
|
const match = cfg.config.match(/base_url\s*=\s*(['"])([^'\"]+)\1/);
|
|
|
|
|
|
if (match && match[2]) return match[2];
|
2025-09-06 23:57:10 +08:00
|
|
|
|
}
|
2025-09-28 20:47:44 +08:00
|
|
|
|
return t("provider.notConfigured");
|
2025-08-07 15:48:30 +08:00
|
|
|
|
} catch {
|
2025-09-28 20:47:44 +08:00
|
|
|
|
return t("provider.configError");
|
2025-08-07 15:48:30 +08:00
|
|
|
|
}
|
2025-08-27 11:00:53 +08:00
|
|
|
|
};
|
2025-08-07 15:48:30 +08:00
|
|
|
|
|
2025-08-06 09:56:27 +08:00
|
|
|
|
const handleUrlClick = async (url: string) => {
|
|
|
|
|
|
try {
|
2025-08-27 11:00:53 +08:00
|
|
|
|
await window.api.openExternal(url);
|
2025-08-06 09:56:27 +08:00
|
|
|
|
} catch (error) {
|
2025-09-28 20:47:44 +08:00
|
|
|
|
console.error(t("console.openLinkFailed"), error);
|
2025-08-06 09:56:27 +08:00
|
|
|
|
}
|
2025-08-27 11:00:53 +08:00
|
|
|
|
};
|
2025-08-06 09:56:27 +08:00
|
|
|
|
|
2025-10-01 21:23:55 +08:00
|
|
|
|
const [claudeApplied, setClaudeApplied] = useState<boolean>(false);
|
2025-09-19 08:30:29 +08:00
|
|
|
|
|
2025-10-01 21:23:55 +08:00
|
|
|
|
// 检查 Claude 插件配置是否已应用
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
const checkClaude = async () => {
|
|
|
|
|
|
if (appType !== "claude" || !currentProviderId) {
|
|
|
|
|
|
setClaudeApplied(false);
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
try {
|
|
|
|
|
|
const applied = await window.api.isClaudePluginApplied();
|
|
|
|
|
|
setClaudeApplied(applied);
|
|
|
|
|
|
} catch (error) {
|
2025-10-07 23:31:00 +08:00
|
|
|
|
console.error(t("console.setupListenerFailed"), error);
|
2025-10-01 21:23:55 +08:00
|
|
|
|
setClaudeApplied(false);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
checkClaude();
|
2025-10-07 23:31:00 +08:00
|
|
|
|
}, [appType, currentProviderId, providers, t]);
|
2025-10-01 21:23:55 +08:00
|
|
|
|
|
|
|
|
|
|
const handleApplyToClaudePlugin = async () => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
await window.api.applyClaudePluginConfig({ official: false });
|
|
|
|
|
|
onNotify?.(t("notifications.appliedToClaudePlugin"), "success", 3000);
|
|
|
|
|
|
setClaudeApplied(true);
|
|
|
|
|
|
} catch (error: any) {
|
|
|
|
|
|
console.error(error);
|
|
|
|
|
|
const msg =
|
|
|
|
|
|
error && error.message
|
|
|
|
|
|
? error.message
|
|
|
|
|
|
: t("notifications.syncClaudePluginFailed");
|
|
|
|
|
|
onNotify?.(msg, "error", 5000);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleRemoveFromClaudePlugin = async () => {
|
|
|
|
|
|
try {
|
|
|
|
|
|
await window.api.applyClaudePluginConfig({ official: true });
|
|
|
|
|
|
onNotify?.(t("notifications.removedFromClaudePlugin"), "success", 3000);
|
|
|
|
|
|
setClaudeApplied(false);
|
|
|
|
|
|
} catch (error: any) {
|
|
|
|
|
|
console.error(error);
|
|
|
|
|
|
const msg =
|
|
|
|
|
|
error && error.message
|
|
|
|
|
|
? error.message
|
|
|
|
|
|
: t("notifications.syncClaudePluginFailed");
|
|
|
|
|
|
onNotify?.(msg, "error", 5000);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-09-07 22:29:08 +08:00
|
|
|
|
// 对供应商列表进行排序
|
|
|
|
|
|
const sortedProviders = Object.values(providers).sort((a, b) => {
|
|
|
|
|
|
// 按添加时间排序
|
|
|
|
|
|
// 没有时间戳的视为最早添加的(排在最前面)
|
|
|
|
|
|
// 有时间戳的按时间升序排列
|
|
|
|
|
|
const timeA = a.createdAt || 0;
|
|
|
|
|
|
const timeB = b.createdAt || 0;
|
2025-09-13 15:36:43 +08:00
|
|
|
|
|
2025-09-07 22:29:08 +08:00
|
|
|
|
// 如果都没有时间戳,按名称排序
|
|
|
|
|
|
if (timeA === 0 && timeB === 0) {
|
2025-09-13 15:36:43 +08:00
|
|
|
|
return a.name.localeCompare(b.name, "zh-CN");
|
2025-09-07 22:29:08 +08:00
|
|
|
|
}
|
2025-09-13 15:36:43 +08:00
|
|
|
|
|
2025-09-07 22:29:08 +08:00
|
|
|
|
// 如果只有一个没有时间戳,没有时间戳的排在前面
|
|
|
|
|
|
if (timeA === 0) return -1;
|
|
|
|
|
|
if (timeB === 0) return 1;
|
2025-09-13 15:36:43 +08:00
|
|
|
|
|
2025-09-07 22:29:08 +08:00
|
|
|
|
// 都有时间戳,按时间升序
|
|
|
|
|
|
return timeA - timeB;
|
|
|
|
|
|
});
|
|
|
|
|
|
|
2025-08-04 22:16:26 +08:00
|
|
|
|
return (
|
2025-09-06 16:21:21 +08:00
|
|
|
|
<div className="space-y-4">
|
2025-09-07 22:29:08 +08:00
|
|
|
|
{sortedProviders.length === 0 ? (
|
2025-09-06 16:21:21 +08:00
|
|
|
|
<div className="text-center py-12">
|
2025-09-08 11:48:05 +08:00
|
|
|
|
<div className="w-16 h-16 mx-auto mb-4 bg-gray-100 rounded-full flex items-center justify-center">
|
|
|
|
|
|
<Users size={24} className="text-gray-400" />
|
2025-09-06 16:21:21 +08:00
|
|
|
|
</div>
|
2025-09-08 15:57:29 +08:00
|
|
|
|
<h3 className="text-lg font-medium text-gray-900 dark:text-gray-100 mb-2">
|
2025-09-28 20:47:44 +08:00
|
|
|
|
{t("provider.noProviders")}
|
2025-09-06 16:21:21 +08:00
|
|
|
|
</h3>
|
2025-09-08 15:57:29 +08:00
|
|
|
|
<p className="text-gray-500 dark:text-gray-400 text-sm">
|
2025-09-28 20:47:44 +08:00
|
|
|
|
{t("provider.noProvidersDescription")}
|
2025-09-06 16:21:21 +08:00
|
|
|
|
</p>
|
2025-08-04 22:16:26 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
) : (
|
2025-09-06 16:21:21 +08:00
|
|
|
|
<div className="space-y-3">
|
2025-09-07 22:29:08 +08:00
|
|
|
|
{sortedProviders.map((provider) => {
|
2025-08-27 11:00:53 +08:00
|
|
|
|
const isCurrent = provider.id === currentProviderId;
|
2025-09-06 16:21:21 +08:00
|
|
|
|
const apiUrl = getApiUrl(provider);
|
2025-08-27 11:00:53 +08:00
|
|
|
|
|
2025-08-04 22:16:26 +08:00
|
|
|
|
return (
|
2025-08-27 11:00:53 +08:00
|
|
|
|
<div
|
|
|
|
|
|
key={provider.id}
|
2025-09-08 15:38:06 +08:00
|
|
|
|
className={cn(
|
2025-09-21 10:50:08 +08:00
|
|
|
|
isCurrent ? cardStyles.selected : cardStyles.interactive
|
2025-09-08 15:38:06 +08:00
|
|
|
|
)}
|
2025-08-04 22:16:26 +08:00
|
|
|
|
>
|
2025-09-06 16:21:21 +08:00
|
|
|
|
<div className="flex items-start justify-between">
|
|
|
|
|
|
<div className="flex-1">
|
|
|
|
|
|
<div className="flex items-center gap-3 mb-2">
|
2025-09-08 15:57:29 +08:00
|
|
|
|
<h3 className="font-medium text-gray-900 dark:text-gray-100">
|
2025-09-06 16:21:21 +08:00
|
|
|
|
{provider.name}
|
|
|
|
|
|
</h3>
|
2025-09-11 22:33:55 +08:00
|
|
|
|
{/* 分类徽章已移除 */}
|
2025-09-19 14:22:39 +08:00
|
|
|
|
<div
|
|
|
|
|
|
className={cn(
|
|
|
|
|
|
badgeStyles.success,
|
2025-09-21 10:50:08 +08:00
|
|
|
|
!isCurrent && "invisible"
|
2025-09-19 14:22:39 +08:00
|
|
|
|
)}
|
|
|
|
|
|
>
|
2025-09-19 11:26:51 +08:00
|
|
|
|
<CheckCircle2 size={12} />
|
2025-09-28 20:47:44 +08:00
|
|
|
|
{t("provider.currentlyUsing")}
|
2025-09-19 11:26:51 +08:00
|
|
|
|
</div>
|
2025-09-06 16:21:21 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-09-06 23:57:10 +08:00
|
|
|
|
<div className="flex items-center gap-2 text-sm">
|
2025-09-06 16:21:21 +08:00
|
|
|
|
{provider.websiteUrl ? (
|
|
|
|
|
|
<button
|
|
|
|
|
|
onClick={(e) => {
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
handleUrlClick(provider.websiteUrl!);
|
|
|
|
|
|
}}
|
2025-09-08 15:57:29 +08:00
|
|
|
|
className="inline-flex items-center gap-1 text-blue-500 dark:text-blue-400 hover:opacity-90 transition-colors"
|
2025-10-07 23:31:00 +08:00
|
|
|
|
title={t("providerForm.visitWebsite", { url: provider.websiteUrl })}
|
2025-09-06 16:21:21 +08:00
|
|
|
|
>
|
|
|
|
|
|
{provider.websiteUrl}
|
|
|
|
|
|
</button>
|
|
|
|
|
|
) : (
|
2025-09-07 11:36:09 +08:00
|
|
|
|
<span
|
2025-09-08 15:57:29 +08:00
|
|
|
|
className="text-gray-500 dark:text-gray-400"
|
2025-09-07 11:36:09 +08:00
|
|
|
|
title={apiUrl}
|
|
|
|
|
|
>
|
2025-09-06 16:21:21 +08:00
|
|
|
|
{apiUrl}
|
|
|
|
|
|
</span>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
2025-08-06 09:56:27 +08:00
|
|
|
|
</div>
|
2025-08-27 11:00:53 +08:00
|
|
|
|
|
2025-09-06 16:21:21 +08:00
|
|
|
|
<div className="flex items-center gap-2 ml-4">
|
2025-10-01 21:33:29 +08:00
|
|
|
|
{appType === "claude" ? (
|
2025-10-05 11:09:03 +08:00
|
|
|
|
<div className="flex-shrink-0">
|
2025-10-01 21:33:29 +08:00
|
|
|
|
{provider.category !== "official" && isCurrent && (
|
2025-10-01 21:23:55 +08:00
|
|
|
|
<button
|
|
|
|
|
|
onClick={() =>
|
|
|
|
|
|
claudeApplied
|
|
|
|
|
|
? handleRemoveFromClaudePlugin()
|
|
|
|
|
|
: handleApplyToClaudePlugin()
|
|
|
|
|
|
}
|
|
|
|
|
|
className={cn(
|
|
|
|
|
|
"inline-flex items-center gap-1 px-3 py-1.5 text-sm font-medium rounded-md transition-colors w-full whitespace-nowrap justify-center",
|
|
|
|
|
|
claudeApplied
|
|
|
|
|
|
? "border border-gray-300 text-gray-600 hover:border-red-300 hover:text-red-600 hover:bg-red-50 dark:border-gray-600 dark:text-gray-400 dark:hover:border-red-800 dark:hover:text-red-400 dark:hover:bg-red-900/20"
|
|
|
|
|
|
: "border border-gray-300 text-gray-700 hover:border-green-300 hover:text-green-600 hover:bg-green-50 dark:border-gray-600 dark:text-gray-300 dark:hover:border-green-700 dark:hover:text-green-400 dark:hover:bg-green-900/20"
|
|
|
|
|
|
)}
|
|
|
|
|
|
title={
|
|
|
|
|
|
claudeApplied
|
|
|
|
|
|
? t("provider.removeFromClaudePlugin")
|
|
|
|
|
|
: t("provider.applyToClaudePlugin")
|
|
|
|
|
|
}
|
|
|
|
|
|
>
|
|
|
|
|
|
{claudeApplied
|
|
|
|
|
|
? t("provider.removeFromClaudePlugin")
|
|
|
|
|
|
: t("provider.applyToClaudePlugin")}
|
|
|
|
|
|
</button>
|
|
|
|
|
|
)}
|
2025-10-01 21:33:29 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
) : null}
|
2025-09-06 16:21:21 +08:00
|
|
|
|
<button
|
|
|
|
|
|
onClick={() => onSwitch(provider.id)}
|
|
|
|
|
|
disabled={isCurrent}
|
2025-09-08 15:38:06 +08:00
|
|
|
|
className={cn(
|
2025-09-28 23:00:43 +08:00
|
|
|
|
"inline-flex items-center gap-1.5 px-3 py-1.5 text-sm font-medium rounded-md transition-colors w-[90px] justify-center whitespace-nowrap",
|
2025-09-06 16:21:21 +08:00
|
|
|
|
isCurrent
|
2025-09-08 15:57:29 +08:00
|
|
|
|
? "bg-gray-100 text-gray-400 dark:bg-gray-800 dark:text-gray-500 cursor-not-allowed"
|
2025-09-21 10:50:08 +08:00
|
|
|
|
: "bg-blue-500 text-white hover:bg-blue-600 dark:bg-blue-600 dark:hover:bg-blue-700"
|
2025-09-08 15:38:06 +08:00
|
|
|
|
)}
|
2025-09-06 16:21:21 +08:00
|
|
|
|
>
|
2025-09-28 23:00:43 +08:00
|
|
|
|
{isCurrent ? <Check size={14} /> : <Play size={14} />}
|
2025-09-28 20:47:44 +08:00
|
|
|
|
{isCurrent ? t("provider.inUse") : t("provider.enable")}
|
2025-09-06 16:21:21 +08:00
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
|
|
<button
|
|
|
|
|
|
onClick={() => onEdit(provider.id)}
|
2025-09-08 15:38:06 +08:00
|
|
|
|
className={buttonStyles.icon}
|
2025-09-28 20:47:44 +08:00
|
|
|
|
title={t("provider.editProvider")}
|
2025-09-06 16:21:21 +08:00
|
|
|
|
>
|
|
|
|
|
|
<Edit3 size={16} />
|
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
|
|
<button
|
|
|
|
|
|
onClick={() => onDelete(provider.id)}
|
|
|
|
|
|
disabled={isCurrent}
|
2025-09-08 15:38:06 +08:00
|
|
|
|
className={cn(
|
|
|
|
|
|
buttonStyles.icon,
|
2025-09-06 16:21:21 +08:00
|
|
|
|
isCurrent
|
2025-09-08 11:48:05 +08:00
|
|
|
|
? "text-gray-400 cursor-not-allowed"
|
2025-09-21 10:50:08 +08:00
|
|
|
|
: "text-gray-500 hover:text-red-500 hover:bg-red-100 dark:text-gray-400 dark:hover:text-red-400 dark:hover:bg-red-500/10"
|
2025-09-08 15:38:06 +08:00
|
|
|
|
)}
|
2025-09-28 20:47:44 +08:00
|
|
|
|
title={t("provider.deleteProvider")}
|
2025-09-06 16:21:21 +08:00
|
|
|
|
>
|
|
|
|
|
|
<Trash2 size={16} />
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
2025-08-04 22:16:26 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-08-27 11:00:53 +08:00
|
|
|
|
);
|
2025-08-04 22:16:26 +08:00
|
|
|
|
})}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
2025-08-27 11:00:53 +08:00
|
|
|
|
);
|
|
|
|
|
|
};
|
2025-08-04 22:16:26 +08:00
|
|
|
|
|
2025-08-27 11:00:53 +08:00
|
|
|
|
export default ProviderList;
|