mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 00:09:51 +03:00
131 lines
3.6 KiB
TypeScript
131 lines
3.6 KiB
TypeScript
import RefreshIcon from '@mui/icons-material/Refresh';
|
|
import { Box, Button } from '@mui/material';
|
|
import { Body, Cell, Header, HeaderCell, HeaderRow, Row, Table } from '@table-library/react-table-library/table';
|
|
import { useTheme as tableTheme } from '@table-library/react-table-library/theme';
|
|
import { useRequest } from 'alova';
|
|
import { useEffect } from 'react';
|
|
|
|
import * as EMSESP from './api';
|
|
import type { Stat } from './types';
|
|
|
|
import type { Translation } from 'i18n/i18n-types';
|
|
import type { FC } from 'react';
|
|
import { ButtonRow, FormLoader, SectionContent, useLayoutTitle } from 'components';
|
|
import { useI18nContext } from 'i18n/i18n-react';
|
|
|
|
const SystemActivity: FC = () => {
|
|
const { data: data, send: loadData, error } = useRequest(EMSESP.readActivity);
|
|
|
|
const { LL } = useI18nContext();
|
|
|
|
useLayoutTitle(LL.ACTIVITY());
|
|
|
|
const stats_theme = tableTheme({
|
|
Table: `
|
|
--data-table-library_grid-template-columns: repeat(1, minmax(0, 1fr)) 90px 90px 80px;
|
|
`,
|
|
BaseRow: `
|
|
font-size: 14px;
|
|
`,
|
|
HeaderRow: `
|
|
text-transform: uppercase;
|
|
background-color: black;
|
|
color: #90CAF9;
|
|
|
|
.th {
|
|
height: 36px;
|
|
border-bottom: 1px solid #565656;
|
|
}
|
|
`,
|
|
Row: `
|
|
.td {
|
|
padding: 8px;
|
|
border-top: 1px solid #565656;
|
|
border-bottom: 1px solid #565656;
|
|
}
|
|
|
|
&:nth-of-type(odd) .td {
|
|
background-color: #303030;
|
|
}
|
|
&:nth-of-type(even) .td {
|
|
background-color: #1e1e1e;
|
|
}
|
|
`,
|
|
BaseCell: `
|
|
&:not(:first-of-type) {
|
|
text-align: center;
|
|
}
|
|
`
|
|
});
|
|
|
|
useEffect(() => {
|
|
const timer = setInterval(() => loadData(), 30000);
|
|
return () => {
|
|
clearInterval(timer);
|
|
};
|
|
});
|
|
|
|
const showName = (id: any) => {
|
|
const name: keyof Translation['STATUS_NAMES'] = id;
|
|
return LL.STATUS_NAMES[name]();
|
|
};
|
|
|
|
const showQuality = (stat: Stat) => {
|
|
if (stat.q === 0 || stat.s + stat.f === 0) {
|
|
return;
|
|
}
|
|
if (stat.q === 100) {
|
|
return <div style={{ color: '#00FF7F' }}>{stat.q}%</div>;
|
|
}
|
|
if (stat.q >= 95) {
|
|
return <div style={{ color: 'orange' }}>{stat.q}%</div>;
|
|
} else {
|
|
return <div style={{ color: 'red' }}>{stat.q}%</div>;
|
|
}
|
|
};
|
|
|
|
const content = () => {
|
|
if (!data) {
|
|
return <FormLoader onRetry={loadData} errorMessage={error?.message} />;
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Table data={{ nodes: data.stats }} theme={stats_theme} layout={{ custom: true }}>
|
|
{(tableList: any) => (
|
|
<>
|
|
<Header>
|
|
<HeaderRow>
|
|
<HeaderCell resize />
|
|
<HeaderCell stiff>{LL.SUCCESS()}</HeaderCell>
|
|
<HeaderCell stiff>{LL.FAIL()}</HeaderCell>
|
|
<HeaderCell stiff>{LL.QUALITY()}</HeaderCell>
|
|
</HeaderRow>
|
|
</Header>
|
|
<Body>
|
|
{tableList.map((stat: Stat) => (
|
|
<Row key={stat.id} item={stat}>
|
|
<Cell>{showName(stat.id)}</Cell>
|
|
<Cell stiff>{Intl.NumberFormat().format(stat.s)}</Cell>
|
|
<Cell stiff>{Intl.NumberFormat().format(stat.f)}</Cell>
|
|
<Cell stiff>{showQuality(stat)}</Cell>
|
|
</Row>
|
|
))}
|
|
</Body>
|
|
</>
|
|
)}
|
|
</Table>
|
|
<ButtonRow mt={1}>
|
|
<Button startIcon={<RefreshIcon />} variant="outlined" color="secondary" onClick={loadData}>
|
|
{LL.REFRESH()}
|
|
</Button>
|
|
</ButtonRow>
|
|
</>
|
|
);
|
|
};
|
|
|
|
return <SectionContent>{content()}</SectionContent>;
|
|
};
|
|
|
|
export default SystemActivity;
|