mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-05 22:53:45 +08:00
203 lines
6.0 KiB
TypeScript
203 lines
6.0 KiB
TypeScript
import { useEffect, useMemo, useState } from "react";
|
|
import { useLockFn } from "ahooks";
|
|
import {
|
|
Box,
|
|
Button,
|
|
IconButton,
|
|
MenuItem,
|
|
Paper,
|
|
Select,
|
|
TextField,
|
|
} from "@mui/material";
|
|
import { useRecoilState } from "recoil";
|
|
import { Virtuoso } from "react-virtuoso";
|
|
import { useTranslation } from "react-i18next";
|
|
import { TableChartRounded, TableRowsRounded } from "@mui/icons-material";
|
|
import { closeAllConnections } from "@/services/api";
|
|
import { atomConnectionSetting } from "@/services/states";
|
|
import { useClashInfo } from "@/hooks/use-clash";
|
|
import { BaseEmpty, BasePage } from "@/components/base";
|
|
import { useWebsocket } from "@/hooks/use-websocket";
|
|
import ConnectionItem from "@/components/connection/connection-item";
|
|
import ConnectionTable from "@/components/connection/connection-table";
|
|
|
|
const initConn = { uploadTotal: 0, downloadTotal: 0, connections: [] };
|
|
|
|
type OrderFunc = (list: IConnectionsItem[]) => IConnectionsItem[];
|
|
|
|
const ConnectionsPage = () => {
|
|
const { t, i18n } = useTranslation();
|
|
const { clashInfo } = useClashInfo();
|
|
|
|
const [filterText, setFilterText] = useState("");
|
|
const [curOrderOpt, setOrderOpt] = useState("Default");
|
|
const [connData, setConnData] = useState<IConnections>(initConn);
|
|
|
|
const [setting, setSetting] = useRecoilState(atomConnectionSetting);
|
|
|
|
const isTableLayout = setting.layout === "table";
|
|
|
|
const orderOpts: Record<string, OrderFunc> = {
|
|
Default: (list) => list,
|
|
"Upload Speed": (list) => list.sort((a, b) => b.curUpload! - a.curUpload!),
|
|
"Download Speed": (list) =>
|
|
list.sort((a, b) => b.curDownload! - a.curDownload!),
|
|
};
|
|
|
|
const filterConn = useMemo(() => {
|
|
const orderFunc = orderOpts[curOrderOpt];
|
|
const connections = connData.connections.filter((conn) =>
|
|
(conn.metadata.host || conn.metadata.destinationIP)?.includes(filterText)
|
|
);
|
|
|
|
if (orderFunc) return orderFunc(connections);
|
|
return connections;
|
|
}, [connData, filterText, curOrderOpt]);
|
|
|
|
const { connect, disconnect } = useWebsocket(
|
|
(event) => {
|
|
// meta v1.15.0 出现data.connections为null的情况
|
|
const data = JSON.parse(event.data) as IConnections;
|
|
// 尽量与前一次connections的展示顺序保持一致
|
|
setConnData((old) => {
|
|
const oldConn = old.connections;
|
|
const maxLen = data.connections?.length;
|
|
|
|
const connections: typeof oldConn = [];
|
|
|
|
const rest = data.connections?.filter((each) => {
|
|
const index = oldConn.findIndex((o) => o.id === each.id);
|
|
|
|
if (index >= 0 && index < maxLen) {
|
|
const old = oldConn[index];
|
|
each.curUpload = each.upload - old.upload;
|
|
each.curDownload = each.download - old.download;
|
|
|
|
connections[index] = each;
|
|
return false;
|
|
}
|
|
return true;
|
|
});
|
|
|
|
for (let i = 0; i < maxLen; ++i) {
|
|
if (!connections[i] && rest.length > 0) {
|
|
connections[i] = rest.shift()!;
|
|
connections[i].curUpload = 0;
|
|
connections[i].curDownload = 0;
|
|
}
|
|
}
|
|
|
|
return { ...data, connections };
|
|
});
|
|
},
|
|
{ errorCount: 3, retryInterval: 1000 }
|
|
);
|
|
|
|
useEffect(() => {
|
|
if (!clashInfo) return;
|
|
|
|
const { server = "", secret = "" } = clashInfo;
|
|
connect(`ws://${server}/connections?token=${encodeURIComponent(secret)}`);
|
|
|
|
return () => {
|
|
disconnect();
|
|
};
|
|
}, [clashInfo]);
|
|
|
|
const onCloseAll = useLockFn(closeAllConnections);
|
|
|
|
return (
|
|
<BasePage
|
|
title={t("Connections")}
|
|
contentStyle={{ height: "100%" }}
|
|
header={
|
|
<Box sx={{ mt: 1, display: "flex", alignItems: "center", gap: 2 }}>
|
|
<IconButton
|
|
color="inherit"
|
|
size="small"
|
|
onClick={() =>
|
|
setSetting((o) =>
|
|
o.layout === "list"
|
|
? { ...o, layout: "table" }
|
|
: { ...o, layout: "list" }
|
|
)
|
|
}
|
|
>
|
|
{isTableLayout ? (
|
|
<TableChartRounded fontSize="inherit" />
|
|
) : (
|
|
<TableRowsRounded fontSize="inherit" />
|
|
)}
|
|
</IconButton>
|
|
|
|
<Button size="small" variant="contained" onClick={onCloseAll}>
|
|
{t("Close All")}
|
|
</Button>
|
|
</Box>
|
|
}
|
|
>
|
|
<Paper sx={{ boxShadow: 2, height: "100%" }}>
|
|
<Box
|
|
sx={{
|
|
pt: 1,
|
|
mb: 0.5,
|
|
mx: "12px",
|
|
height: "36px",
|
|
display: "flex",
|
|
alignItems: "center",
|
|
userSelect: "text",
|
|
}}
|
|
>
|
|
{!isTableLayout && (
|
|
<Select
|
|
size="small"
|
|
autoComplete="off"
|
|
value={curOrderOpt}
|
|
onChange={(e) => setOrderOpt(e.target.value)}
|
|
sx={{
|
|
mr: 1,
|
|
width: i18n.language === "en" ? 190 : 120,
|
|
'[role="button"]': { py: 0.65 },
|
|
}}
|
|
>
|
|
{Object.keys(orderOpts).map((opt) => (
|
|
<MenuItem key={opt} value={opt}>
|
|
<span style={{ fontSize: 14 }}>{t(opt)}</span>
|
|
</MenuItem>
|
|
))}
|
|
</Select>
|
|
)}
|
|
|
|
<TextField
|
|
hiddenLabel
|
|
fullWidth
|
|
size="small"
|
|
autoComplete="off"
|
|
spellCheck="false"
|
|
variant="outlined"
|
|
placeholder={t("Filter conditions")}
|
|
value={filterText}
|
|
onChange={(e) => setFilterText(e.target.value)}
|
|
sx={{ input: { py: 0.65, px: 1.25 } }}
|
|
/>
|
|
</Box>
|
|
|
|
<Box height="calc(100% - 50px)" sx={{ userSelect: "text" }}>
|
|
{filterConn.length === 0 ? (
|
|
<BaseEmpty text="No Connections" />
|
|
) : isTableLayout ? (
|
|
<ConnectionTable connections={filterConn} />
|
|
) : (
|
|
<Virtuoso
|
|
data={filterConn}
|
|
itemContent={(index, item) => <ConnectionItem value={item} />}
|
|
/>
|
|
)}
|
|
</Box>
|
|
</Paper>
|
|
</BasePage>
|
|
);
|
|
};
|
|
|
|
export default ConnectionsPage;
|