2025-10-10 16:35:21 +08:00
|
|
|
|
import React 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-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 14:22:39 +08:00
|
|
|
|
onNotify?: (
|
|
|
|
|
|
message: string,
|
|
|
|
|
|
type: "success" | "error",
|
2025-10-08 21:22:56 +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
|
|
|
|
onNotify,
|
2025-08-04 22:16:26 +08:00
|
|
|
|
}) => {
|
2025-10-08 11:02:09 +08:00
|
|
|
|
const { t, i18n } = 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-10-10 20:52:16 +08:00
|
|
|
|
onNotify?.(
|
|
|
|
|
|
`${t("console.openLinkFailed")}: ${String(error)}`,
|
|
|
|
|
|
"error",
|
|
|
|
|
|
4000,
|
|
|
|
|
|
);
|
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-10 16:35:21 +08:00
|
|
|
|
// 列表页不再提供 Claude 插件按钮,统一在“设置”中控制
|
2025-10-01 21:23:55 +08:00
|
|
|
|
|
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-10-08 11:02:09 +08:00
|
|
|
|
const locale = i18n.language === "zh" ? "zh-CN" : "en-US";
|
|
|
|
|
|
return a.name.localeCompare(b.name, locale);
|
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-10-08 21:22:56 +08:00
|
|
|
|
isCurrent ? cardStyles.selected : cardStyles.interactive,
|
2025-09-08 15:38:06 +08:00
|
|
|
|
)}
|
2025-08-04 22:16:26 +08:00
|
|
|
|
>
|
2025-10-12 13:17:38 +08:00
|
|
|
|
<div className="flex items-center justify-between">
|
2025-09-06 16:21:21 +08:00
|
|
|
|
<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-10-08 21:22:56 +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-08 21:22:56 +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">
|
|
|
|
|
|
<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-10-08 21:22:56 +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-10-08 21:22:56 +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;
|