Spaces:
Paused
Paused
File size: 36,161 Bytes
9d7ddb9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 | "use client";
import { useEffect, useMemo, useRef, useState } from "react";
import {
Eye,
EyeOff,
Import,
Layers,
Link2,
LoaderCircle,
Mail,
Pencil,
Plus,
RefreshCcw,
Save,
Search,
ServerCog,
Trash2,
Unplug,
} from "lucide-react";
import { toast } from "sonner";
import { Badge } from "@/components/ui/badge";
import { Button } from "@/components/ui/button";
import { Card, CardContent } from "@/components/ui/card";
import { Checkbox } from "@/components/ui/checkbox";
import {
Dialog,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
} from "@/components/ui/dialog";
import { Input } from "@/components/ui/input";
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select";
import {
createSub2APIServer,
deleteSub2APIServer,
fetchSub2APIServerAccounts,
fetchSub2APIServerGroups,
fetchSub2APIServers,
startSub2APIImport,
updateSub2APIServer,
type Sub2APIRemoteAccount,
type Sub2APIRemoteGroup,
type Sub2APIServer,
} from "@/lib/api";
const PAGE_SIZE_OPTIONS = ["50", "100", "200"] as const;
type AuthMode = "password" | "api_key";
function normalizeAccounts(items: Sub2APIRemoteAccount[]) {
const seen = new Set<string>();
const accounts: Sub2APIRemoteAccount[] = [];
for (const item of items) {
const id = String(item.id || "").trim();
if (!id || seen.has(id)) {
continue;
}
seen.add(id);
accounts.push({
id,
name: String(item.name || "").trim(),
email: String(item.email || "").trim(),
plan_type: String(item.plan_type || "").trim(),
status: String(item.status || "").trim(),
expires_at: String(item.expires_at || "").trim(),
has_refresh_token: Boolean(item.has_refresh_token),
});
}
return accounts;
}
export function Sub2APIConnections() {
const didLoadRef = useRef(false);
const pollTimerRef = useRef<number | null>(null);
const [servers, setServers] = useState<Sub2APIServer[]>([]);
const [isLoading, setIsLoading] = useState(true);
const [dialogOpen, setDialogOpen] = useState(false);
const [editingServer, setEditingServer] = useState<Sub2APIServer | null>(null);
const [formName, setFormName] = useState("");
const [formBaseUrl, setFormBaseUrl] = useState("");
const [formEmail, setFormEmail] = useState("");
const [formPassword, setFormPassword] = useState("");
const [formApiKey, setFormApiKey] = useState("");
const [formGroupId, setFormGroupId] = useState("");
const [authMode, setAuthMode] = useState<AuthMode>("password");
const [showSecret, setShowSecret] = useState(false);
const [isSaving, setIsSaving] = useState(false);
const [remoteGroups, setRemoteGroups] = useState<Sub2APIRemoteGroup[] | null>(null);
const [isLoadingGroups, setIsLoadingGroups] = useState(false);
const [deletingId, setDeletingId] = useState<string | null>(null);
const [loadingAccountsId, setLoadingAccountsId] = useState<string | null>(null);
const [browserOpen, setBrowserOpen] = useState(false);
const [browserServer, setBrowserServer] = useState<Sub2APIServer | null>(null);
const [remoteAccounts, setRemoteAccounts] = useState<Sub2APIRemoteAccount[]>([]);
const [selectedIds, setSelectedIds] = useState<string[]>([]);
const [accountQuery, setAccountQuery] = useState("");
const [accountPage, setAccountPage] = useState(1);
const [pageSize, setPageSize] = useState<(typeof PAGE_SIZE_OPTIONS)[number]>("100");
const [isStartingImport, setIsStartingImport] = useState(false);
const loadServers = async () => {
setIsLoading(true);
try {
const data = await fetchSub2APIServers();
setServers(data.servers);
} catch (error) {
toast.error(error instanceof Error ? error.message : "加载 Sub2API 连接失败");
} finally {
setIsLoading(false);
}
};
useEffect(() => {
if (didLoadRef.current) {
return;
}
didLoadRef.current = true;
void loadServers();
}, []);
useEffect(() => {
const hasRunningJobs = servers.some(
(server) => server.import_job?.status === "pending" || server.import_job?.status === "running",
);
if (!hasRunningJobs) {
if (pollTimerRef.current !== null) {
window.clearInterval(pollTimerRef.current);
pollTimerRef.current = null;
}
return;
}
pollTimerRef.current = window.setInterval(() => {
void fetchSub2APIServers()
.then((data) => {
setServers(data.servers);
})
.catch((error) => {
if (pollTimerRef.current !== null) {
window.clearInterval(pollTimerRef.current);
pollTimerRef.current = null;
}
toast.error(error instanceof Error ? error.message : "查询导入进度失败");
});
}, 1500);
return () => {
if (pollTimerRef.current !== null) {
window.clearInterval(pollTimerRef.current);
pollTimerRef.current = null;
}
};
}, [servers]);
const openAddDialog = () => {
setEditingServer(null);
setFormName("");
setFormBaseUrl("");
setFormEmail("");
setFormPassword("");
setFormApiKey("");
setFormGroupId("");
setAuthMode("password");
setShowSecret(false);
setRemoteGroups(null);
setDialogOpen(true);
};
const openEditDialog = (server: Sub2APIServer) => {
setEditingServer(server);
setFormName(server.name);
setFormBaseUrl(server.base_url);
setFormEmail(server.email);
setFormPassword("");
setFormApiKey("");
setFormGroupId(server.group_id || "");
setAuthMode(server.has_api_key ? "api_key" : "password");
setShowSecret(false);
setRemoteGroups(null);
setDialogOpen(true);
};
const handleFetchGroups = async () => {
if (!editingServer) {
toast.error("请先保存连接后再拉取分组");
return;
}
setIsLoadingGroups(true);
try {
const data = await fetchSub2APIServerGroups(editingServer.id);
setRemoteGroups(data.groups);
if (data.groups.length === 0) {
toast.message("远端没有配置分组");
} else {
toast.success(`读取到 ${data.groups.length} 个分组`);
}
} catch (error) {
toast.error(error instanceof Error ? error.message : "拉取分组失败");
} finally {
setIsLoadingGroups(false);
}
};
const handleSave = async () => {
if (!formBaseUrl.trim()) {
toast.error("请输入 Sub2API 地址");
return;
}
if (authMode === "password") {
if (!formEmail.trim()) {
toast.error("请输入管理员邮箱");
return;
}
if (!editingServer && !formPassword.trim()) {
toast.error("请输入管理员密码");
return;
}
} else if (!editingServer && !formApiKey.trim()) {
toast.error("请输入 Admin API Key");
return;
}
setIsSaving(true);
try {
if (editingServer) {
const updates: Parameters<typeof updateSub2APIServer>[1] = {
name: formName.trim(),
base_url: formBaseUrl.trim(),
group_id: formGroupId.trim(),
};
if (authMode === "password") {
updates.email = formEmail.trim();
if (formPassword.trim()) {
updates.password = formPassword.trim();
}
updates.api_key = "";
} else {
if (formApiKey.trim()) {
updates.api_key = formApiKey.trim();
}
updates.email = "";
updates.password = "";
}
const data = await updateSub2APIServer(editingServer.id, updates);
setServers(data.servers);
toast.success("连接已更新");
} else {
const data = await createSub2APIServer({
name: formName.trim(),
base_url: formBaseUrl.trim(),
email: authMode === "password" ? formEmail.trim() : "",
password: authMode === "password" ? formPassword.trim() : "",
api_key: authMode === "api_key" ? formApiKey.trim() : "",
group_id: formGroupId.trim(),
});
setServers(data.servers);
toast.success("连接已添加");
}
setDialogOpen(false);
} catch (error) {
toast.error(error instanceof Error ? error.message : "保存失败");
} finally {
setIsSaving(false);
}
};
const handleDelete = async (server: Sub2APIServer) => {
setDeletingId(server.id);
try {
const data = await deleteSub2APIServer(server.id);
setServers(data.servers);
toast.success("连接已删除");
} catch (error) {
toast.error(error instanceof Error ? error.message : "删除失败");
} finally {
setDeletingId(null);
}
};
const handleBrowseAccounts = async (server: Sub2APIServer) => {
setLoadingAccountsId(server.id);
try {
const data = await fetchSub2APIServerAccounts(server.id);
const accounts = normalizeAccounts(data.accounts);
setBrowserServer(server);
setRemoteAccounts(accounts);
setSelectedIds([]);
setAccountQuery("");
setAccountPage(1);
setBrowserOpen(true);
toast.success(`读取成功,共 ${accounts.length} 个 OpenAI 账号`);
} catch (error) {
toast.error(error instanceof Error ? error.message : "读取 Sub2API 账号失败");
} finally {
setLoadingAccountsId(null);
}
};
const filteredAccounts = useMemo(() => {
const query = accountQuery.trim().toLowerCase();
if (!query) {
return remoteAccounts;
}
return remoteAccounts.filter((item) => {
return (
item.email.toLowerCase().includes(query) ||
item.name.toLowerCase().includes(query) ||
item.plan_type.toLowerCase().includes(query) ||
item.id.toLowerCase().includes(query)
);
});
}, [accountQuery, remoteAccounts]);
const currentPageSize = Number(pageSize);
const accountPageCount = Math.max(1, Math.ceil(filteredAccounts.length / currentPageSize));
const safeAccountPage = Math.min(accountPage, accountPageCount);
const pagedAccounts = filteredAccounts.slice(
(safeAccountPage - 1) * currentPageSize,
safeAccountPage * currentPageSize,
);
const allFilteredSelected =
filteredAccounts.length > 0 && filteredAccounts.every((item) => selectedIds.includes(item.id));
const toggleAccount = (id: string, checked: boolean) => {
setSelectedIds((prev) => {
if (checked) {
return Array.from(new Set([...prev, id]));
}
return prev.filter((item) => item !== id);
});
};
const handleToggleSelectAllFiltered = (checked: boolean) => {
if (checked) {
setSelectedIds(Array.from(new Set([...selectedIds, ...filteredAccounts.map((item) => item.id)])));
return;
}
const filteredSet = new Set(filteredAccounts.map((item) => item.id));
setSelectedIds((prev) => prev.filter((id) => !filteredSet.has(id)));
};
const handleStartImport = async () => {
if (!browserServer) {
return;
}
if (selectedIds.length === 0) {
toast.error("请先选择要导入的账号");
return;
}
setIsStartingImport(true);
try {
const result = await startSub2APIImport(browserServer.id, selectedIds);
setServers((prev) =>
prev.map((server) =>
server.id === browserServer.id ? { ...server, import_job: result.import_job } : server,
),
);
setBrowserOpen(false);
toast.success("导入任务已启动");
} catch (error) {
toast.error(error instanceof Error ? error.message : "启动导入失败");
} finally {
setIsStartingImport(false);
}
};
return (
<>
<Card className="rounded-2xl border-white/80 bg-white/90 shadow-sm">
<CardContent className="space-y-6 p-6">
<div className="flex items-start justify-between">
<div className="flex items-center gap-3">
<div className="flex size-10 items-center justify-center rounded-xl bg-stone-100">
<ServerCog className="size-5 text-stone-600" />
</div>
<div>
<h2 className="text-lg font-semibold tracking-tight">Sub2API 连接管理</h2>
<p className="text-sm text-stone-500">
配置 Sub2API 服务器后,可查询其中的 OpenAI OAuth 账号并批量导入本地号池。
</p>
</div>
</div>
<div className="flex items-center gap-2">
{servers.length > 0 ? <Badge className="rounded-md px-2.5 py-1">{servers.length} 个连接</Badge> : null}
<Button
className="h-9 rounded-xl bg-stone-950 px-4 text-white hover:bg-stone-800"
onClick={openAddDialog}
>
<Plus className="size-4" />
添加连接
</Button>
</div>
</div>
{isLoading ? (
<div className="flex items-center justify-center py-10">
<LoaderCircle className="size-5 animate-spin text-stone-400" />
</div>
) : servers.length === 0 ? (
<div className="flex flex-col items-center justify-center gap-3 rounded-xl bg-stone-50 px-6 py-10 text-center">
<ServerCog className="size-8 text-stone-300" />
<div className="space-y-1">
<p className="text-sm font-medium text-stone-600">暂无 Sub2API 连接</p>
<p className="text-sm text-stone-400">点击「添加连接」保存你的 Sub2API 信息。</p>
</div>
</div>
) : (
<div className="space-y-3">
{servers.map((server) => {
const isBusy = deletingId === server.id || loadingAccountsId === server.id;
const importJob = server.import_job ?? null;
return (
<div
key={server.id}
className="flex flex-col gap-3 rounded-xl border border-stone-200 bg-white px-4 py-3"
>
<div className="flex items-center justify-between gap-3">
<div className="min-w-0">
<div className="text-sm font-medium text-stone-800">{server.name || server.base_url}</div>
<div className="truncate text-xs text-stone-400">
{server.base_url}
{server.email ? ` · ${server.email}` : server.has_api_key ? " · API Key" : ""}
{server.group_id ? ` · 分组 ${server.group_id}` : " · 全部分组"}
</div>
</div>
<div className="flex items-center gap-1">
<button
type="button"
className="rounded-lg p-2 text-stone-400 transition hover:bg-stone-100 hover:text-stone-700"
onClick={() => openEditDialog(server)}
disabled={isBusy}
title="编辑"
>
<Pencil className="size-4" />
</button>
<button
type="button"
className="rounded-lg p-2 text-stone-400 transition hover:bg-rose-50 hover:text-rose-500"
onClick={() => void handleDelete(server)}
disabled={isBusy}
title="删除"
>
{deletingId === server.id ? (
<LoaderCircle className="size-4 animate-spin" />
) : (
<Trash2 className="size-4" />
)}
</button>
</div>
</div>
<div className="flex items-center gap-2">
<Button
variant="outline"
className="h-8 rounded-lg border-stone-200 bg-white px-3 text-xs text-stone-600"
onClick={() => void handleBrowseAccounts(server)}
disabled={isBusy}
>
{loadingAccountsId === server.id ? (
<LoaderCircle className="size-3.5 animate-spin" />
) : (
<Import className="size-3.5" />
)}
同步
</Button>
</div>
{importJob ? (
<div className="space-y-2 rounded-xl bg-stone-50 px-3 py-3">
<div className="text-xs font-medium tracking-[0.16em] text-stone-400 uppercase">导入任务</div>
{(() => {
const progress =
importJob.total > 0
? Math.round((importJob.completed / importJob.total) * 100)
: 0;
return (
<div className="rounded-lg border border-stone-200 bg-white px-3 py-3">
<div className="flex items-center justify-between gap-3">
<div className="min-w-0">
<div className="text-sm font-medium text-stone-700">
状态 {importJob.status},已处理 {importJob.completed}/{importJob.total}
</div>
<div className="truncate text-xs text-stone-400">
任务 {importJob.job_id.slice(0, 8)} · {importJob.created_at}
</div>
</div>
<Badge
variant={
importJob.status === "completed"
? "success"
: importJob.status === "failed"
? "danger"
: "info"
}
className="rounded-md"
>
{progress}%
</Badge>
</div>
<div className="mt-3 h-2 overflow-hidden rounded-full bg-stone-200">
<div
className="h-full rounded-full bg-stone-900 transition-all"
style={{ width: `${progress}%` }}
/>
</div>
<div className="mt-2 flex flex-wrap gap-2 text-xs text-stone-500">
<span>新增 {importJob.added}</span>
<span>跳过 {importJob.skipped}</span>
<span>刷新 {importJob.refreshed}</span>
<span>失败 {importJob.failed}</span>
</div>
</div>
);
})()}
</div>
) : null}
</div>
);
})}
</div>
)}
<div className="rounded-xl bg-stone-50 px-4 py-3 text-sm leading-6 text-stone-500">
<p className="font-medium text-stone-600">使用说明</p>
<ul className="mt-1 list-inside list-disc space-y-0.5">
<li>输入 Sub2API 地址和管理员账户(或 Admin API Key),保存为一个连接。</li>
<li>点击某个连接的「同步」会拉取其中 platform=openai 且 type=oauth 的账号列表。</li>
<li>勾选需要的账号后后端会并发拉取 access_token,自动导入本地号池并刷新状态。</li>
<li>仅会读取 sub2api 凭据中的 access_token;refresh_token 等字段不会写入本地。</li>
</ul>
</div>
</CardContent>
</Card>
<Dialog open={dialogOpen} onOpenChange={setDialogOpen}>
<DialogContent showCloseButton={false} className="rounded-2xl p-6">
<DialogHeader className="gap-2">
<DialogTitle>{editingServer ? "编辑连接" : "添加连接"}</DialogTitle>
<DialogDescription className="text-sm leading-6">
{editingServer ? "修改 Sub2API 连接信息" : "添加一个新的 Sub2API 连接"}
</DialogDescription>
</DialogHeader>
<div className="space-y-4">
<div className="space-y-2">
<label className="text-sm font-medium text-stone-700">名称(可选)</label>
<Input
value={formName}
onChange={(event) => setFormName(event.target.value)}
placeholder="例如:自建 sub2api"
className="h-11 rounded-xl border-stone-200 bg-white"
/>
</div>
<div className="space-y-2">
<label className="flex items-center gap-1.5 text-sm font-medium text-stone-700">
<Link2 className="size-3.5" />
Sub2API 地址
</label>
<Input
value={formBaseUrl}
onChange={(event) => setFormBaseUrl(event.target.value)}
placeholder="http://your-sub2api-host:8080"
className="h-11 rounded-xl border-stone-200 bg-white"
/>
</div>
<div className="space-y-2">
<label className="text-sm font-medium text-stone-700">认证方式</label>
<Select value={authMode} onValueChange={(value) => setAuthMode(value as AuthMode)}>
<SelectTrigger className="h-11 rounded-xl border-stone-200 bg-white">
<SelectValue />
</SelectTrigger>
<SelectContent>
<SelectItem value="password">管理员邮箱 + 密码</SelectItem>
<SelectItem value="api_key">Admin API Key</SelectItem>
</SelectContent>
</Select>
</div>
{authMode === "password" ? (
<>
<div className="space-y-2">
<label className="flex items-center gap-1.5 text-sm font-medium text-stone-700">
<Mail className="size-3.5" />
管理员邮箱
</label>
<Input
value={formEmail}
onChange={(event) => setFormEmail(event.target.value)}
placeholder="admin@example.com"
className="h-11 rounded-xl border-stone-200 bg-white"
/>
</div>
<div className="space-y-2">
<label className="flex items-center gap-1.5 text-sm font-medium text-stone-700">
<Unplug className="size-3.5" />
管理员密码
</label>
<div className="relative">
<Input
type={showSecret ? "text" : "password"}
value={formPassword}
onChange={(event) => setFormPassword(event.target.value)}
placeholder={editingServer ? "留空则不修改密码" : "管理员密码"}
className="h-11 rounded-xl border-stone-200 bg-white pr-10"
/>
<button
type="button"
className="absolute top-1/2 right-3 -translate-y-1/2 text-stone-400 transition hover:text-stone-600"
onClick={() => setShowSecret((prev) => !prev)}
>
{showSecret ? <EyeOff className="size-4" /> : <Eye className="size-4" />}
</button>
</div>
</div>
</>
) : (
<div className="space-y-2">
<label className="flex items-center gap-1.5 text-sm font-medium text-stone-700">
<Unplug className="size-3.5" />
Admin API Key
</label>
<div className="relative">
<Input
type={showSecret ? "text" : "password"}
value={formApiKey}
onChange={(event) => setFormApiKey(event.target.value)}
placeholder={editingServer ? "留空则不修改密钥" : "Sub2API Admin API Key"}
className="h-11 rounded-xl border-stone-200 bg-white pr-10"
/>
<button
type="button"
className="absolute top-1/2 right-3 -translate-y-1/2 text-stone-400 transition hover:text-stone-600"
onClick={() => setShowSecret((prev) => !prev)}
>
{showSecret ? <EyeOff className="size-4" /> : <Eye className="size-4" />}
</button>
</div>
</div>
)}
<div className="space-y-2">
<label className="flex items-center gap-1.5 text-sm font-medium text-stone-700">
<Layers className="size-3.5" />
分组(可选)
</label>
{remoteGroups && remoteGroups.length > 0 ? (
<Select value={formGroupId || "__all__"} onValueChange={(value) => setFormGroupId(value === "__all__" ? "" : value)}>
<SelectTrigger className="h-11 rounded-xl border-stone-200 bg-white">
<SelectValue placeholder="选择分组" />
</SelectTrigger>
<SelectContent>
<SelectItem value="__all__">全部分组(不限制)</SelectItem>
<SelectItem value="ungrouped">未分组</SelectItem>
{remoteGroups.map((group) => (
<SelectItem key={group.id} value={group.id}>
{group.name || `Group ${group.id}`}
{group.platform ? `(${group.platform})` : ""}
{group.account_count
? ` · ${group.active_account_count}/${group.account_count}`
: ""}
</SelectItem>
))}
</SelectContent>
</Select>
) : (
<Input
value={formGroupId}
onChange={(event) => setFormGroupId(event.target.value)}
placeholder="留空则同步所有分组;或填写分组 ID / ungrouped"
className="h-11 rounded-xl border-stone-200 bg-white"
/>
)}
{editingServer ? (
<div className="flex items-center justify-between gap-2 text-xs text-stone-500">
<span>同步时会用分组 ID 过滤,留空 = 同步所有 OpenAI OAuth 账号。</span>
<Button
variant="outline"
className="h-8 rounded-lg border-stone-200 bg-white px-2 text-xs text-stone-600"
onClick={() => void handleFetchGroups()}
disabled={isLoadingGroups}
>
{isLoadingGroups ? (
<LoaderCircle className="size-3.5 animate-spin" />
) : (
<RefreshCcw className="size-3.5" />
)}
{remoteGroups ? "重新拉取" : "拉取分组"}
</Button>
</div>
) : (
<div className="text-xs text-stone-500">
添加完连接后可在编辑对话框里点「拉取分组」选择具体分组。
</div>
)}
</div>
</div>
<DialogFooter className="pt-2">
<Button
variant="secondary"
className="h-10 rounded-xl bg-stone-100 px-5 text-stone-700 hover:bg-stone-200"
onClick={() => setDialogOpen(false)}
disabled={isSaving}
>
取消
</Button>
<Button
className="h-10 rounded-xl bg-stone-950 px-5 text-white hover:bg-stone-800"
onClick={() => void handleSave()}
disabled={isSaving}
>
{isSaving ? <LoaderCircle className="size-4 animate-spin" /> : <Save className="size-4" />}
{editingServer ? "保存修改" : "添加"}
</Button>
</DialogFooter>
</DialogContent>
</Dialog>
<Dialog open={browserOpen} onOpenChange={setBrowserOpen}>
<DialogContent showCloseButton={false} className="max-h-[90vh] max-w-5xl rounded-2xl p-6">
<DialogHeader className="gap-2">
<DialogTitle>选择要导入的账号</DialogTitle>
<DialogDescription className="text-sm leading-6">
{browserServer ? `来自 ${browserServer.name || browserServer.base_url}` : "Sub2API 上的 OpenAI OAuth 账号"}
</DialogDescription>
</DialogHeader>
<div className="flex flex-col gap-3 lg:flex-row lg:items-center lg:justify-between">
<div className="relative min-w-[260px]">
<Search className="pointer-events-none absolute top-1/2 left-3 size-4 -translate-y-1/2 text-stone-400" />
<Input
value={accountQuery}
onChange={(event) => {
setAccountQuery(event.target.value);
setAccountPage(1);
}}
placeholder="搜索邮箱、套餐或名称"
className="h-10 rounded-xl border-stone-200 bg-white pl-10"
/>
</div>
<div className="flex items-center gap-2">
<Select
value={pageSize}
onValueChange={(value) => {
setPageSize(value as (typeof PAGE_SIZE_OPTIONS)[number]);
setAccountPage(1);
}}
>
<SelectTrigger className="h-10 w-[120px] rounded-xl border-stone-200 bg-white">
<SelectValue />
</SelectTrigger>
<SelectContent>
{PAGE_SIZE_OPTIONS.map((item) => (
<SelectItem key={item} value={item}>
{item} / 页
</SelectItem>
))}
</SelectContent>
</Select>
<Button
variant="outline"
className="h-10 rounded-xl border-stone-200 bg-white px-4 text-stone-700"
onClick={() => handleToggleSelectAllFiltered(!allFilteredSelected)}
>
{allFilteredSelected ? "取消全选" : "全选筛选结果"}
</Button>
</div>
</div>
<div className="rounded-xl border border-stone-200">
<div className="flex items-center justify-between border-b border-stone-100 px-4 py-3 text-sm text-stone-500">
<div className="flex items-center gap-3">
<Checkbox
checked={allFilteredSelected}
onCheckedChange={(checked) => handleToggleSelectAllFiltered(Boolean(checked))}
/>
<span>筛选结果 {filteredAccounts.length} 个</span>
</div>
<span>已选 {selectedIds.length} 个</span>
</div>
<div className="max-h-[420px] overflow-auto">
{pagedAccounts.length === 0 ? (
<div className="flex items-center justify-center py-12 text-sm text-stone-400">没有匹配的账号</div>
) : (
<div className="divide-y divide-stone-100">
{pagedAccounts.map((item) => (
<label
key={item.id}
className="flex cursor-pointer items-center gap-3 px-4 py-3 hover:bg-stone-50"
>
<Checkbox
checked={selectedIds.includes(item.id)}
onCheckedChange={(checked) => toggleAccount(item.id, Boolean(checked))}
/>
<div className="min-w-0 flex-1">
<div className="flex items-center gap-2">
<span className="truncate text-sm font-medium text-stone-700">
{item.email || item.name || item.id}
</span>
{item.plan_type ? (
<Badge className="rounded-md bg-stone-100 text-stone-600">{item.plan_type}</Badge>
) : null}
{item.status ? (
<Badge
variant={item.status === "active" ? "success" : "info"}
className="rounded-md"
>
{item.status}
</Badge>
) : null}
</div>
<div className="truncate text-xs text-stone-400">
id {item.id}
{item.expires_at ? ` · 过期 ${item.expires_at}` : ""}
</div>
</div>
</label>
))}
</div>
)}
</div>
</div>
<div className="flex items-center justify-between text-sm text-stone-500">
<span>
第 {filteredAccounts.length === 0 ? 0 : (safeAccountPage - 1) * currentPageSize + 1} -{" "}
{Math.min(safeAccountPage * currentPageSize, filteredAccounts.length)} 条,共 {filteredAccounts.length} 条
</span>
<div className="flex items-center gap-2">
<Button
variant="outline"
className="h-9 rounded-xl border-stone-200 bg-white px-3"
onClick={() => setAccountPage((prev) => Math.max(1, prev - 1))}
disabled={safeAccountPage <= 1}
>
上一页
</Button>
<span>
{safeAccountPage}/{accountPageCount}
</span>
<Button
variant="outline"
className="h-9 rounded-xl border-stone-200 bg-white px-3"
onClick={() => setAccountPage((prev) => Math.min(accountPageCount, prev + 1))}
disabled={safeAccountPage >= accountPageCount}
>
下一页
</Button>
</div>
</div>
<DialogFooter className="pt-2">
<Button
variant="secondary"
className="h-10 rounded-xl bg-stone-100 px-5 text-stone-700 hover:bg-stone-200"
onClick={() => setBrowserOpen(false)}
disabled={isStartingImport}
>
取消
</Button>
<Button
className="h-10 rounded-xl bg-stone-950 px-5 text-white hover:bg-stone-800"
onClick={() => void handleStartImport()}
disabled={isStartingImport || selectedIds.length === 0}
>
{isStartingImport ? <LoaderCircle className="size-4 animate-spin" /> : <Import className="size-4" />}
导入选中账号
</Button>
</DialogFooter>
</DialogContent>
</Dialog>
</>
);
}
|