2019-05-26 23:04:29 +00:00
|
|
|
import React, { Component, Fragment } from 'react';
|
|
|
|
|
|
|
|
import { withStyles } from '@material-ui/core/styles';
|
|
|
|
import Button from '@material-ui/core/Button';
|
|
|
|
import List from '@material-ui/core/List';
|
|
|
|
import ListItem from '@material-ui/core/ListItem';
|
|
|
|
import ListItemAvatar from '@material-ui/core/ListItemAvatar';
|
|
|
|
import ListItemText from '@material-ui/core/ListItemText';
|
|
|
|
import Avatar from '@material-ui/core/Avatar';
|
|
|
|
import Divider from '@material-ui/core/Divider';
|
|
|
|
import DevicesIcon from '@material-ui/icons/Devices';
|
|
|
|
import MemoryIcon from '@material-ui/icons/Memory';
|
|
|
|
import ShowChartIcon from '@material-ui/icons/ShowChart';
|
|
|
|
import SdStorageIcon from '@material-ui/icons/SdStorage';
|
|
|
|
import DataUsageIcon from '@material-ui/icons/DataUsage';
|
|
|
|
|
|
|
|
import { SYSTEM_STATUS_ENDPOINT } from '../constants/Endpoints';
|
|
|
|
import { restComponent } from '../components/RestComponent';
|
2019-08-09 17:21:28 +00:00
|
|
|
import LoadingNotification from '../components/LoadingNotification';
|
2019-05-26 23:04:29 +00:00
|
|
|
import SectionContent from '../components/SectionContent';
|
|
|
|
|
|
|
|
const styles = theme => ({
|
|
|
|
button: {
|
2019-06-02 18:01:06 +00:00
|
|
|
marginRight: theme.spacing(2),
|
|
|
|
marginTop: theme.spacing(2),
|
2019-05-26 23:04:29 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
class SystemStatus extends Component {
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
this.props.loadData();
|
|
|
|
}
|
2019-05-26 23:04:56 +00:00
|
|
|
|
2019-05-26 23:04:29 +00:00
|
|
|
createListItems(data, classes) {
|
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<ListItem >
|
|
|
|
<ListItemAvatar>
|
|
|
|
<Avatar>
|
|
|
|
<DevicesIcon />
|
|
|
|
</Avatar>
|
|
|
|
</ListItemAvatar>
|
|
|
|
<ListItemText primary="Platform" secondary={data.esp_platform} />
|
|
|
|
</ListItem>
|
|
|
|
<Divider variant="inset" component="li" />
|
|
|
|
<ListItem >
|
|
|
|
<ListItemAvatar>
|
|
|
|
<Avatar>
|
|
|
|
<ShowChartIcon />
|
|
|
|
</Avatar>
|
|
|
|
</ListItemAvatar>
|
|
|
|
<ListItemText primary="CPU Frequency" secondary={data.cpu_freq_mhz + ' MHz'} />
|
|
|
|
</ListItem>
|
|
|
|
<Divider variant="inset" component="li" />
|
|
|
|
<ListItem >
|
|
|
|
<ListItemAvatar>
|
|
|
|
<Avatar>
|
|
|
|
<MemoryIcon />
|
|
|
|
</Avatar>
|
|
|
|
</ListItemAvatar>
|
|
|
|
<ListItemText primary="Free Heap" secondary={data.free_heap + ' bytes'} />
|
|
|
|
</ListItem>
|
|
|
|
<Divider variant="inset" component="li" />
|
|
|
|
<ListItem >
|
|
|
|
<ListItemAvatar>
|
|
|
|
<Avatar>
|
|
|
|
<DataUsageIcon />
|
|
|
|
</Avatar>
|
|
|
|
</ListItemAvatar>
|
|
|
|
<ListItemText primary="Sketch Size (used/max)" secondary={data.sketch_size + ' / ' + data.free_sketch_space + ' bytes'} />
|
|
|
|
</ListItem>
|
|
|
|
<Divider variant="inset" component="li" />
|
|
|
|
<ListItem >
|
|
|
|
<ListItemAvatar>
|
|
|
|
<Avatar>
|
|
|
|
<SdStorageIcon />
|
|
|
|
</Avatar>
|
|
|
|
</ListItemAvatar>
|
|
|
|
<ListItemText primary="Flash Chip Size" secondary={data.flash_chip_size + ' bytes'} />
|
|
|
|
</ListItem>
|
2019-08-09 17:21:28 +00:00
|
|
|
<Divider variant="inset" component="li" />
|
2019-05-26 23:04:29 +00:00
|
|
|
</Fragment>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderNTPStatus(data, classes) {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<List>
|
|
|
|
{this.createListItems(data, classes)}
|
|
|
|
</List>
|
|
|
|
<Button variant="contained" color="secondary" className={classes.button} onClick={this.props.loadData}>
|
|
|
|
Refresh
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2019-08-09 17:21:28 +00:00
|
|
|
const { data, fetched, errorMessage, loadData, classes } = this.props;
|
2019-05-26 23:04:29 +00:00
|
|
|
return (
|
|
|
|
<SectionContent title="System Status">
|
2019-08-09 17:21:28 +00:00
|
|
|
<LoadingNotification
|
|
|
|
onReset={loadData}
|
|
|
|
fetched={fetched}
|
|
|
|
errorMessage={errorMessage}>
|
|
|
|
{this.renderNTPStatus(data, classes)}
|
|
|
|
</LoadingNotification>
|
2019-05-26 23:04:29 +00:00
|
|
|
</SectionContent>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default restComponent(SYSTEM_STATUS_ENDPOINT, withStyles(styles)(SystemStatus));
|