0

WIP for some additional statistic views

This commit is contained in:
Gabe Kangas 2020-11-07 20:01:45 -08:00
parent 3eb7b8b84a
commit 20d0596233
2 changed files with 53 additions and 17 deletions

View File

@ -1,25 +1,55 @@
import { Statistic, Card, Col} from "antd"; import { Typography, Statistic, Card, Col, Progress} from "antd";
const { Text, Link } = Typography;
interface ItemProps { interface ItemProps {
title: string, title: string,
value: string, value: string,
prefix: JSX.Element, prefix: JSX.Element,
color: string,
progress: boolean,
}; };
export default function StatisticItem(props: ItemProps) { export default function StatisticItem(props: ItemProps) {
const { title, value, prefix } = props; const { title, value, prefix } = props;
const valueStyle = { color: "#334", fontSize: "1.8rem" }; const View = props.progress ? ProgressView : StatisticView;
return ( return (
<Col span={8}> <Col span={8}>
<Card> <Card>
<Statistic <center>
title={title} <View {...props} />
value={value} </center>
valueStyle={valueStyle}
prefix={prefix}
/>
</Card> </Card>
</Col> </Col>
); );
}
function ProgressView({title, value, prefix, color}) {
const endColor = value > 90 ? 'red' : color;
const content = (
<div>
{prefix}
<div><Text type="secondary">{title}</Text></div>
<div><Text type="secondary">{value}%</Text></div>
</div>
)
return (
<Progress type="dashboard" percent={value} width={120} strokeColor={{
'0%': color,
'90%': endColor,
}} format={percent => content} />
)
}
function StatisticView({title, value, prefix}) {
const valueStyle = { color: "#334", fontSize: "1.8rem" };
return (
<Statistic
title={title}
value={value}
valueStyle={valueStyle}
prefix={prefix}
/>
)
} }

View File

@ -76,19 +76,25 @@ const series = [
<h2>Hardware Info</h2> <h2>Hardware Info</h2>
<Row gutter={[16, 16]}> <Row gutter={[16, 16]}>
<StatisticItem <StatisticItem
title="CPU used" title="CPU"
value={`${currentCPUUsage} %`} value={`${currentCPUUsage}`}
prefix={<LaptopOutlined />} prefix={<LaptopOutlined style={{color: '#FF7700' }}/>}
color="#FF7700"
progress
/> />
<StatisticItem <StatisticItem
title="Memory used" title="RAM"
value={`${currentRamUsage} %`} value={`${currentRamUsage}`}
prefix={<BulbOutlined />} prefix={<BulbOutlined style={{color: '#004777' }} />}
color="#004777"
progress
/> />
<StatisticItem <StatisticItem
title="Disk used" title="Disk"
value={`${currentDiskUsage} %`} value={`${currentDiskUsage}`}
prefix={<SaveOutlined />} prefix={<SaveOutlined style={{color: '#A9E190' }} />}
color="#A9E190"
progress
/> />
</Row> </Row>