mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-05 18:53:45 +08:00
134 lines
3.8 KiB
TypeScript
134 lines
3.8 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";
|
|
import { SearchState } from "@/components/base/base-search-box";
|
|
|
|
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 [searchState, setSearchState] = useState<SearchState>();
|
|
|
|
const filterLogs = useMemo(() => {
|
|
return logData
|
|
? logData.filter((data) => {
|
|
// 构建完整的搜索文本,包含时间、类型和内容
|
|
const searchText =
|
|
`${data.time || ""} ${data.type} ${data.payload}`.toLowerCase();
|
|
|
|
return logLevel === "all"
|
|
? match(searchText)
|
|
: data.type.toLowerCase() === logLevel && match(searchText);
|
|
})
|
|
: [];
|
|
}, [logData, logLevel, match]);
|
|
|
|
return (
|
|
<BasePage
|
|
full
|
|
title={t("Logs")}
|
|
contentStyle={{
|
|
height: "100%",
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
overflow: "auto",
|
|
}}
|
|
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();
|
|
}}
|
|
>
|
|
{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={(matcher, state) => {
|
|
setMatch(() => matcher);
|
|
setSearchState(state);
|
|
}}
|
|
/>
|
|
</Box>
|
|
|
|
{filterLogs.length > 0 ? (
|
|
<Virtuoso
|
|
initialTopMostItemIndex={999}
|
|
data={filterLogs}
|
|
style={{
|
|
flex: 1,
|
|
}}
|
|
itemContent={(index, item) => (
|
|
<LogItem value={item} searchState={searchState} />
|
|
)}
|
|
followOutput={"smooth"}
|
|
/>
|
|
) : (
|
|
<BaseEmpty />
|
|
)}
|
|
</BasePage>
|
|
);
|
|
};
|
|
|
|
export default LogPage;
|