129 lines
3.4 KiB
TypeScript
129 lines
3.4 KiB
TypeScript
import { useMemo, useState } from "react";
|
|
import { useRecoilState } from "recoil";
|
|
import {
|
|
Box,
|
|
Button,
|
|
IconButton,
|
|
MenuItem,
|
|
Paper,
|
|
Select,
|
|
TextField,
|
|
} from "@mui/material";
|
|
import { Virtuoso } from "react-virtuoso";
|
|
import { useTranslation } from "react-i18next";
|
|
import {
|
|
PlayCircleOutlineRounded,
|
|
PauseCircleOutlineRounded,
|
|
} from "@mui/icons-material";
|
|
import { atomEnableLog, atomLogData } from "@/services/states";
|
|
import { BaseEmpty, BasePage } from "@/components/base";
|
|
import LogItem from "@/components/log/log-item";
|
|
|
|
const LogPage = () => {
|
|
const { t } = useTranslation();
|
|
const [logData, setLogData] = useRecoilState(atomLogData);
|
|
const [enableLog, setEnableLog] = useRecoilState(atomEnableLog);
|
|
|
|
const [logState, setLogState] = useState("all");
|
|
const [filterText, setFilterText] = useState("");
|
|
|
|
const filterLogs = useMemo(() => {
|
|
return logData.filter((data) => {
|
|
return (
|
|
data.payload.includes(filterText) &&
|
|
(logState === "all" ? true : data.type.includes(logState))
|
|
);
|
|
});
|
|
}, [logData, logState, filterText]);
|
|
|
|
return (
|
|
<BasePage
|
|
title={t("Logs")}
|
|
contentStyle={{ height: "100%" }}
|
|
header={
|
|
<Box sx={{ mt: 1, display: "flex", alignItems: "center", gap: 2 }}>
|
|
<IconButton
|
|
size="small"
|
|
color="inherit"
|
|
onClick={() => setEnableLog((e) => !e)}
|
|
>
|
|
{enableLog ? (
|
|
<PauseCircleOutlineRounded />
|
|
) : (
|
|
<PlayCircleOutlineRounded />
|
|
)}
|
|
</IconButton>
|
|
|
|
<Button
|
|
size="small"
|
|
variant="contained"
|
|
onClick={() => setLogData([])}
|
|
>
|
|
{t("Clear")}
|
|
</Button>
|
|
</Box>
|
|
}
|
|
>
|
|
<Paper
|
|
sx={{
|
|
boxSizing: "border-box",
|
|
boxShadow: 2,
|
|
height: "100%",
|
|
userSelect: "text",
|
|
}}
|
|
>
|
|
<Box
|
|
sx={{
|
|
pt: 1,
|
|
mb: 0.5,
|
|
mx: "12px",
|
|
height: "36px",
|
|
display: "flex",
|
|
alignItems: "center",
|
|
}}
|
|
>
|
|
<Select
|
|
size="small"
|
|
autoComplete="off"
|
|
value={logState}
|
|
onChange={(e) => setLogState(e.target.value)}
|
|
sx={{ width: 120, mr: 1, '[role="button"]': { py: 0.65 } }}
|
|
>
|
|
<MenuItem value="all">ALL</MenuItem>
|
|
<MenuItem value="inf">INFO</MenuItem>
|
|
<MenuItem value="warn">WARN</MenuItem>
|
|
<MenuItem value="err">ERROR</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)">
|
|
{filterLogs.length > 0 ? (
|
|
<Virtuoso
|
|
initialTopMostItemIndex={999}
|
|
data={filterLogs}
|
|
itemContent={(index, item) => <LogItem value={item} />}
|
|
followOutput={"smooth"}
|
|
/>
|
|
) : (
|
|
<BaseEmpty text="No Logs" />
|
|
)}
|
|
</Box>
|
|
</Paper>
|
|
</BasePage>
|
|
);
|
|
};
|
|
|
|
export default LogPage;
|