mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
import React from 'react';
|
||
import classNames from 'classnames';
|
||
|
||
export default props => {
|
||
let { prefixCls = 'ant-card', className, children, extra, bodyStyle, title, loading, ...other } = props;
|
||
const classString = classNames({
|
||
[prefixCls]: true,
|
||
[className]: !!className,
|
||
[`${prefixCls}-loading`]: loading,
|
||
});
|
||
|
||
if (loading) {
|
||
children = (
|
||
<div>
|
||
<p>███████████████████████</p>
|
||
<p>██████ ███████████████████</p>
|
||
<p>██████████ ███████████</p>
|
||
<p>█████ ██████ █████████████</p>
|
||
</div>
|
||
);
|
||
}
|
||
|
||
const head = title ? (
|
||
<div className={`${prefixCls}-head`}>
|
||
<h3 className={`${prefixCls}-head-title`}>{title}</h3>
|
||
</div>
|
||
) : null;
|
||
|
||
return (
|
||
<div {...other} className={classString}>
|
||
{head}
|
||
{extra ? <div className={`${prefixCls}-extra`}>{extra}</div> : null}
|
||
<div className={`${prefixCls}-body`} style={bodyStyle}>{children}</div>
|
||
</div>
|
||
);
|
||
};
|