15 changed files with 220 additions and 114 deletions
@ -1,3 +1 @@ |
|||||||
NEXT_PUBLIC_ADMIN_USERNAME=admin |
|
||||||
NEXT_PUBLIC_ADMIN_STREAMKEY=abc123 |
|
||||||
NEXT_PUBLIC_API_HOST=/ |
NEXT_PUBLIC_API_HOST=/ |
@ -1,3 +1,4 @@ |
|||||||
module.exports = { |
module.exports = { |
||||||
basePath: "/admin", |
basePath: "/admin", |
||||||
|
trailingSlash: true, |
||||||
}; |
}; |
||||||
|
@ -1,25 +1,57 @@ |
|||||||
import { Statistic, Card, Col} from "antd"; |
import { Typography, Statistic, Card, Col, Progress} from "antd"; |
||||||
|
const { Text } = Typography; |
||||||
|
|
||||||
interface ItemProps { |
interface ItemProps { |
||||||
title: string, |
title: string, |
||||||
value: string, |
value: string, |
||||||
prefix: JSX.Element, |
prefix: JSX.Element, |
||||||
|
color: string, |
||||||
|
progress?: boolean, |
||||||
|
centered: 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; |
||||||
|
const style = props.centered ? {display: 'flex', alignItems: 'center', justifyContent: 'center'} : {}; |
||||||
|
|
||||||
return ( |
return ( |
||||||
<Col span={8}> |
<Col span={8}> |
||||||
<Card> |
<Card> |
||||||
<Statistic |
<div style={style}> |
||||||
title={title} |
<View {...props} /> |
||||||
value={value} |
</div> |
||||||
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, color}) { |
||||||
|
const valueStyle = { fontSize: "1.8rem" }; |
||||||
|
|
||||||
|
return ( |
||||||
|
<Statistic |
||||||
|
title={title} |
||||||
|
value={value} |
||||||
|
valueStyle={valueStyle} |
||||||
|
prefix={prefix} |
||||||
|
/> |
||||||
|
) |
||||||
|
} |
Loading…
Reference in new issue