mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-08 08:49:52 +03:00
116 lines
3.2 KiB
TypeScript
116 lines
3.2 KiB
TypeScript
import React, { Component, Fragment } from "react";
|
|
|
|
import { WithTheme, withTheme } from "@material-ui/core/styles";
|
|
import {
|
|
Table,
|
|
TableBody,
|
|
TableCell,
|
|
TableHead,
|
|
TableRow,
|
|
Divider,
|
|
List,
|
|
ListItem,
|
|
ListItemAvatar,
|
|
ListItemText,
|
|
} from "@material-ui/core";
|
|
|
|
import RefreshIcon from "@material-ui/icons/Refresh";
|
|
import DeviceHubIcon from "@material-ui/icons/DeviceHub";
|
|
|
|
import {
|
|
RestFormProps,
|
|
FormActions,
|
|
FormButton,
|
|
HighlightAvatar,
|
|
} from "../components";
|
|
|
|
import {
|
|
busStatus,
|
|
busStatusHighlight,
|
|
isConnected
|
|
} from "./EMSESPStatus";
|
|
|
|
import { EMSESPStatus } from "./EMSESPtypes";
|
|
|
|
type EMSESPStatusFormProps = RestFormProps<EMSESPStatus> & WithTheme;
|
|
|
|
class EMSESPStatusForm extends Component<EMSESPStatusFormProps> {
|
|
createListItems() {
|
|
const { data, theme } = this.props;
|
|
return (
|
|
<Fragment>
|
|
|
|
<ListItem>
|
|
<ListItemAvatar>
|
|
<HighlightAvatar color={busStatusHighlight(data, theme)}>
|
|
<DeviceHubIcon />
|
|
</HighlightAvatar>
|
|
</ListItemAvatar>
|
|
<ListItemText primary="EMS Connection Status" secondary={busStatus(data)} />
|
|
</ListItem>
|
|
{isConnected(data) && (
|
|
<Fragment>
|
|
<Table size="small" padding="default">
|
|
<TableHead>
|
|
<TableRow>
|
|
<TableCell>Statistic</TableCell>
|
|
<TableCell align="center"># Telegrams</TableCell>
|
|
<TableCell />
|
|
</TableRow>
|
|
</TableHead>
|
|
<TableBody>
|
|
<TableRow>
|
|
<TableCell component="th" scope="row">
|
|
(Rx) Received telegrams
|
|
</TableCell>
|
|
<TableCell align="center">{data.rx_received}</TableCell>
|
|
</TableRow>
|
|
<TableRow>
|
|
<TableCell component="th" scope="row">
|
|
(Rx) Incomplete telegrams
|
|
</TableCell>
|
|
<TableCell align="center">{data.crc_errors}</TableCell>
|
|
</TableRow>
|
|
<TableRow>
|
|
<TableCell component="th" scope="row">
|
|
(Tx) Successfully sent telegrams
|
|
</TableCell>
|
|
<TableCell align="center">{data.tx_sent}</TableCell>
|
|
</TableRow>
|
|
<TableRow>
|
|
<TableCell component="th" scope="row">
|
|
(Tx) Send Errors
|
|
</TableCell>
|
|
<TableCell align="center">{data.tx_errors}</TableCell>
|
|
</TableRow>
|
|
</TableBody>
|
|
</Table>
|
|
</Fragment>
|
|
)}
|
|
<Divider variant="inset" component="li" />
|
|
<ListItem></ListItem>
|
|
</Fragment>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<Fragment>
|
|
<List>{this.createListItems()}</List>
|
|
<FormActions>
|
|
<FormButton
|
|
startIcon={<RefreshIcon />}
|
|
variant="contained"
|
|
color="secondary"
|
|
onClick={this.props.loadData}
|
|
>
|
|
Refresh
|
|
</FormButton>
|
|
</FormActions>
|
|
</Fragment>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default withTheme(EMSESPStatusForm);
|