owncast/web/pages/components/statistic.tsx

55 lines
1.2 KiB
TypeScript
Raw Normal View History

import { Typography, Statistic, Card, Col, Progress} from "antd";
2020-11-08 22:38:20 +03:00
const { Text } = Typography;
interface ItemProps {
title: string,
value: string,
prefix: JSX.Element,
color: string,
progress: boolean,
};
export default function StatisticItem(props: ItemProps) {
const { title, value, prefix } = props;
const View = props.progress ? ProgressView : StatisticView;
return (
<Col span={8}>
<Card>
2020-11-08 22:38:20 +03:00
<div style={{display: 'flex', alignItems: 'center', justifyContent: 'center'}}>
<View {...props} />
2020-11-08 22:38:20 +03:00
</div>
</Card>
</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}
/>
)
}