You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
2.7 KiB
109 lines
2.7 KiB
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
import { Card } from 'antd';
|
|
import type { CardProps } from 'antd/es/card';
|
|
import classNames from 'classnames';
|
|
import React from 'react';
|
|
import useStyles from './index.style';
|
|
|
|
type totalType = () => React.ReactNode;
|
|
|
|
export type ChartCardProps = {
|
|
title: React.ReactNode;
|
|
action?: React.ReactNode;
|
|
total?: React.ReactNode | number | (() => React.ReactNode | number);
|
|
footer?: React.ReactNode;
|
|
contentHeight?: number;
|
|
avatar?: React.ReactNode;
|
|
style?: React.CSSProperties;
|
|
} & CardProps;
|
|
|
|
const ChartCard: React.FC<ChartCardProps> = (props) => {
|
|
const { styles } = useStyles();
|
|
const renderTotal = (total?: number | totalType | React.ReactNode) => {
|
|
if (!total && total !== 0) {
|
|
return null;
|
|
}
|
|
let totalDom: React.ReactNode | null = null;
|
|
switch (typeof total) {
|
|
case 'undefined':
|
|
totalDom = null;
|
|
break;
|
|
case 'function':
|
|
totalDom = <div className={styles.total}>{total()}</div>;
|
|
break;
|
|
default:
|
|
totalDom = <div className={styles.total}>{total}</div>;
|
|
}
|
|
return totalDom;
|
|
};
|
|
const renderContent = () => {
|
|
const {
|
|
contentHeight,
|
|
title,
|
|
avatar,
|
|
action,
|
|
total,
|
|
footer,
|
|
children,
|
|
loading,
|
|
} = props;
|
|
if (loading) {
|
|
return false;
|
|
}
|
|
return (
|
|
<div className={styles.chartCard}>
|
|
<div
|
|
className={classNames(styles.chartTop, {
|
|
[styles.chartTopMargin]: !children && !footer,
|
|
})}
|
|
>
|
|
<div className={styles.avatar}>{avatar}</div>
|
|
<div className={styles.metaWrap}>
|
|
<div className={styles.meta}>
|
|
<span>{title}</span>
|
|
<span className={styles.action}>{action}</span>
|
|
</div>
|
|
{renderTotal(total)}
|
|
</div>
|
|
</div>
|
|
{children && (
|
|
<div
|
|
className={styles.content}
|
|
style={{
|
|
height: contentHeight || 'auto',
|
|
}}
|
|
>
|
|
<div className={contentHeight ? styles.contentFixed : undefined}>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
)}
|
|
{footer && (
|
|
<div
|
|
className={classNames(styles.footer, {
|
|
[styles.footerMargin]: !children,
|
|
})}
|
|
>
|
|
{footer}
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const { loading = false, ...rest } = props;
|
|
return (
|
|
<Card
|
|
loading={loading}
|
|
styles={{
|
|
body: {
|
|
padding: '20px 24px 8px 24px',
|
|
},
|
|
}}
|
|
{...rest}
|
|
>
|
|
{renderContent()}
|
|
</Card>
|
|
);
|
|
};
|
|
export default ChartCard;
|
|
|