mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-05 15:13:45 +08:00
122 lines
3.4 KiB
TypeScript
122 lines
3.4 KiB
TypeScript
import { useMemo, useState } from "react";
|
|
import { Box, Button, IconButton, MenuItem } from "@mui/material";
|
|
import { Virtuoso } from "react-virtuoso";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useLocalStorage } from "foxact/use-local-storage";
|
|
|
|
import {
|
|
PlayCircleOutlineRounded,
|
|
PauseCircleOutlineRounded,
|
|
} from "@mui/icons-material";
|
|
import { useLogData, LogLevel, clearLogs } from "@/hooks/use-log-data";
|
|
import { useEnableLog } from "@/services/states";
|
|
import { BaseEmpty, BasePage } from "@/components/base";
|
|
import LogItem from "@/components/log/log-item";
|
|
import { useTheme } from "@mui/material/styles";
|
|
import { BaseSearchBox } from "@/components/base/base-search-box";
|
|
import { BaseStyledSelect } from "@/components/base/base-styled-select";
|
|
|
|
const LogPage = () => {
|
|
const { t } = useTranslation();
|
|
const [enableLog, setEnableLog] = useEnableLog();
|
|
const theme = useTheme();
|
|
const isDark = theme.palette.mode === "dark";
|
|
const [logLevel, setLogLevel] = useLocalStorage<LogLevel>(
|
|
"log:log-level",
|
|
"info",
|
|
);
|
|
const [match, setMatch] = useState(() => (_: string) => true);
|
|
const logData = useLogData(logLevel);
|
|
|
|
const filterLogs = useMemo(() => {
|
|
return logData
|
|
? logData.filter((data) =>
|
|
logLevel === "all"
|
|
? match(data.payload)
|
|
: data.type.includes(logLevel) && match(data.payload),
|
|
)
|
|
: [];
|
|
}, [logData, logLevel, match]);
|
|
|
|
return (
|
|
<BasePage
|
|
full
|
|
title={t("Logs")}
|
|
contentStyle={{ height: "100%" }}
|
|
header={
|
|
<Box sx={{ display: "flex", alignItems: "center", gap: 2 }}>
|
|
<IconButton
|
|
title={t("Pause")}
|
|
size="small"
|
|
color="inherit"
|
|
onClick={() => setEnableLog((e) => !e)}
|
|
>
|
|
{enableLog ? (
|
|
<PauseCircleOutlineRounded />
|
|
) : (
|
|
<PlayCircleOutlineRounded />
|
|
)}
|
|
</IconButton>
|
|
|
|
{enableLog === true && (
|
|
<Button
|
|
size="small"
|
|
variant="contained"
|
|
onClick={() => {
|
|
clearLogs(logLevel);
|
|
}}
|
|
>
|
|
{t("Clear")}
|
|
</Button>
|
|
)}
|
|
</Box>
|
|
}
|
|
>
|
|
<Box
|
|
sx={{
|
|
pt: 1,
|
|
mb: 0.5,
|
|
mx: "10px",
|
|
height: "36px",
|
|
display: "flex",
|
|
alignItems: "center",
|
|
}}
|
|
>
|
|
<BaseStyledSelect
|
|
value={logLevel}
|
|
onChange={(e) => setLogLevel(e.target.value as LogLevel)}
|
|
>
|
|
<MenuItem value="all">ALL</MenuItem>
|
|
<MenuItem value="info">INFO</MenuItem>
|
|
<MenuItem value="warning">WARNING</MenuItem>
|
|
<MenuItem value="error">ERROR</MenuItem>
|
|
<MenuItem value="debug">DEBUG</MenuItem>
|
|
</BaseStyledSelect>
|
|
<BaseSearchBox onSearch={(match) => setMatch(() => match)} />
|
|
</Box>
|
|
|
|
<Box
|
|
height="calc(100% - 65px)"
|
|
sx={{
|
|
margin: "10px",
|
|
borderRadius: "8px",
|
|
bgcolor: isDark ? "#282a36" : "#ffffff",
|
|
}}
|
|
>
|
|
{filterLogs.length > 0 && enableLog === true ? (
|
|
<Virtuoso
|
|
initialTopMostItemIndex={999}
|
|
data={filterLogs}
|
|
itemContent={(index, item) => <LogItem value={item} />}
|
|
followOutput={"smooth"}
|
|
/>
|
|
) : (
|
|
<BaseEmpty />
|
|
)}
|
|
</Box>
|
|
</BasePage>
|
|
);
|
|
};
|
|
|
|
export default LogPage;
|