feat: 网络出口列表改为表格展示
This commit is contained in:
@@ -15,6 +15,7 @@ import {
|
||||
PageState,
|
||||
Select,
|
||||
StatusPill,
|
||||
Table,
|
||||
conflictMessage,
|
||||
} from "./lib/ui.jsx";
|
||||
import { useTitle } from "./lib/hooks.js";
|
||||
@@ -239,50 +240,90 @@ function ExitCreateModal({ open, onClose, onSubmit, busy, error }) {
|
||||
);
|
||||
}
|
||||
|
||||
function ExitCard({ exit, boundAccounts, bindingsError, busy, onAction }) {
|
||||
return (
|
||||
<Card>
|
||||
<CardContent className="space-y-3">
|
||||
<div className="flex min-w-0 items-start justify-between gap-3">
|
||||
<div className="min-w-0">
|
||||
<Link
|
||||
to={`/network-exits/${encodeURIComponent(exit.id)}`}
|
||||
className="anywhere font-semibold text-ink hover:text-primary"
|
||||
>
|
||||
{exit.protocol}://{exit.host}:{exit.port}
|
||||
</Link>
|
||||
<p className="anywhere text-xs text-muted">
|
||||
{exit.id} · 用户名 {exit.username || "无"} · 密码{" "}
|
||||
{exit.password || "无"}
|
||||
</p>
|
||||
</div>
|
||||
<ExitHealthPill exit={exit} />
|
||||
function ExitTable({ exits, accountsByExit, bindingsError, busy, onAction }) {
|
||||
const columns = [
|
||||
{
|
||||
header: "出口",
|
||||
width: "20%",
|
||||
render: (exit) => (
|
||||
<div className="min-w-0">
|
||||
<Link
|
||||
to={`/network-exits/${encodeURIComponent(exit.id)}`}
|
||||
className="anywhere font-semibold text-ink hover:text-primary"
|
||||
>
|
||||
{exit.protocol}://{exit.host}:{exit.port}
|
||||
</Link>
|
||||
<p className="anywhere text-xs text-muted">{exit.id}</p>
|
||||
</div>
|
||||
<div className="text-sm">
|
||||
<span className="text-muted">出口IP:</span>
|
||||
),
|
||||
},
|
||||
{
|
||||
header: "状态",
|
||||
width: "9%",
|
||||
render: (exit) => <ExitHealthPill exit={exit} />,
|
||||
},
|
||||
{
|
||||
header: "用户名",
|
||||
width: "11%",
|
||||
render: (exit) => (
|
||||
<span className="anywhere">{exit.username || "无"}</span>
|
||||
),
|
||||
},
|
||||
{
|
||||
header: "密码",
|
||||
width: "11%",
|
||||
render: (exit) => (
|
||||
<span className="anywhere">{exit.password || "无"}</span>
|
||||
),
|
||||
},
|
||||
{
|
||||
header: "出口IP",
|
||||
width: "13%",
|
||||
render: (exit) => (
|
||||
<span className="anywhere">{exit.observed_public_ip || "尚无观测"}</span>
|
||||
),
|
||||
},
|
||||
{
|
||||
header: "最近检测",
|
||||
width: "15%",
|
||||
render: (exit) =>
|
||||
exit.last_checked_at
|
||||
? new Date(exit.last_checked_at).toLocaleString("zh-CN")
|
||||
: "未检测",
|
||||
},
|
||||
{
|
||||
header: "绑定账号",
|
||||
width: "13%",
|
||||
render: (exit) => {
|
||||
if (bindingsError) return <span className="text-muted">状态未知</span>;
|
||||
const accounts = accountsByExit.get(exit.id);
|
||||
return (
|
||||
<span className="anywhere">
|
||||
{exit.observed_public_ip || "尚无观测"}
|
||||
{accounts?.length ? accounts.join("、") : "未绑定"}
|
||||
</span>
|
||||
</div>
|
||||
<p className="text-xs text-muted">
|
||||
最近检测:
|
||||
{exit.last_checked_at
|
||||
? new Date(exit.last_checked_at).toLocaleString("zh-CN")
|
||||
: "未检测"}
|
||||
</p>
|
||||
<div className="text-sm">
|
||||
<span className="text-muted">绑定账号:</span>
|
||||
{bindingsError ? (
|
||||
"状态未知"
|
||||
) : (
|
||||
<span className="anywhere">
|
||||
{boundAccounts?.length ? boundAccounts.join("、") : "未绑定"}
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
<ExitActions exit={exit} busy={busy} onAction={onAction} />
|
||||
</CardContent>
|
||||
</Card>
|
||||
);
|
||||
},
|
||||
},
|
||||
{
|
||||
header: "操作",
|
||||
width: "8%",
|
||||
align: "right",
|
||||
render: (exit) => (
|
||||
<ExitActions
|
||||
exit={exit}
|
||||
busy={busy === exit.id}
|
||||
onAction={onAction}
|
||||
/>
|
||||
),
|
||||
},
|
||||
];
|
||||
return (
|
||||
<Table
|
||||
columns={columns}
|
||||
rows={exits}
|
||||
rowKey={(exit) => exit.id}
|
||||
minWidth="1100px"
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -402,22 +443,15 @@ export function NetworkExitList() {
|
||||
empty={exits.length === 0}
|
||||
emptyText="暂无网络出口。创建并检测健康后,才能绑定运行环境。"
|
||||
>
|
||||
<div className="grid gap-4 md:grid-cols-2 xl:grid-cols-3">
|
||||
{exits.map((exit) => (
|
||||
<ExitCard
|
||||
key={exit.id}
|
||||
exit={exit}
|
||||
boundAccounts={accountsByExit.get(exit.id)}
|
||||
bindingsError={!!bindingsError}
|
||||
busy={busy === exit.id}
|
||||
onAction={(exit, action) =>
|
||||
action === "disable"
|
||||
? setDisabling(exit)
|
||||
: runAction(exit, action)
|
||||
}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
<ExitTable
|
||||
exits={exits}
|
||||
accountsByExit={accountsByExit}
|
||||
bindingsError={!!bindingsError}
|
||||
busy={busy}
|
||||
onAction={(exit, action) =>
|
||||
action === "disable" ? setDisabling(exit) : runAction(exit, action)
|
||||
}
|
||||
/>
|
||||
</PageState>
|
||||
<ExitCreateModal
|
||||
open={createOpen}
|
||||
|
||||
Reference in New Issue
Block a user