mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-05 22:53:45 +08:00
163 lines
4.9 KiB
TypeScript
163 lines
4.9 KiB
TypeScript
import { useEffect, useMemo, useState } from "react";
|
|
import { useLockFn } from "ahooks";
|
|
import { Box, Button, MenuItem, Paper, Select, TextField } from "@mui/material";
|
|
import { Virtuoso } from "react-virtuoso";
|
|
import { useTranslation } from "react-i18next";
|
|
import { closeAllConnections, getInformation } from "@/services/api";
|
|
import BasePage from "@/components/base/base-page";
|
|
import BaseEmpty from "@/components/base/base-empty";
|
|
import ConnectionItem from "@/components/connection/connection-item";
|
|
|
|
const initConn = { uploadTotal: 0, downloadTotal: 0, connections: [] };
|
|
|
|
type OrderFunc = (list: ApiType.ConnectionsItem[]) => ApiType.ConnectionsItem[];
|
|
|
|
const ConnectionsPage = () => {
|
|
const { t, i18n } = useTranslation();
|
|
|
|
const [filterText, setFilterText] = useState("");
|
|
const [curOrderOpt, setOrderOpt] = useState("Default");
|
|
const [connData, setConnData] = useState<ApiType.Connections>(initConn);
|
|
|
|
const orderOpts: Record<string, OrderFunc> = {
|
|
Default: (list) => list,
|
|
// "Download Traffic": (list) => list,
|
|
// "Upload Traffic": (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 connetions = connData.connections.filter((conn) =>
|
|
(conn.metadata.host || conn.metadata.destinationIP)?.includes(filterText)
|
|
);
|
|
|
|
if (orderFunc) return orderFunc(connetions);
|
|
return connetions;
|
|
}, [connData, filterText, curOrderOpt]);
|
|
|
|
useEffect(() => {
|
|
let ws: WebSocket | null = null;
|
|
|
|
getInformation().then((result) => {
|
|
const { server = "", secret = "" } = result;
|
|
ws = new WebSocket(`ws://${server}/connections?token=${secret}`);
|
|
|
|
ws.addEventListener("message", (event) => {
|
|
const data = JSON.parse(event.data) as ApiType.Connections;
|
|
|
|
// 与前一次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 };
|
|
});
|
|
});
|
|
});
|
|
|
|
return () => ws?.close();
|
|
}, []);
|
|
|
|
const onCloseAll = useLockFn(closeAllConnections);
|
|
|
|
return (
|
|
<BasePage
|
|
title={t("Connections")}
|
|
contentStyle={{ height: "100%" }}
|
|
header={
|
|
<Button
|
|
size="small"
|
|
sx={{ mt: 1 }}
|
|
variant="contained"
|
|
onClick={onCloseAll}
|
|
>
|
|
{t("Close All")}
|
|
</Button>
|
|
}
|
|
>
|
|
<Paper sx={{ boxShadow: 2, height: "100%" }}>
|
|
<Box
|
|
sx={{
|
|
pt: 1,
|
|
mb: 0.5,
|
|
mx: "12px",
|
|
height: "36px",
|
|
display: "flex",
|
|
alignItems: "center",
|
|
}}
|
|
>
|
|
<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"
|
|
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)">
|
|
{filterConn.length > 0 ? (
|
|
<Virtuoso
|
|
data={filterConn}
|
|
itemContent={(index, item) => <ConnectionItem value={item} />}
|
|
/>
|
|
) : (
|
|
<BaseEmpty text="No Connections" />
|
|
)}
|
|
</Box>
|
|
</Paper>
|
|
</BasePage>
|
|
);
|
|
};
|
|
|
|
export default ConnectionsPage;
|