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.
50 lines
1.5 KiB
50 lines
1.5 KiB
import classNames from 'classnames';
|
|
import * as React from 'react';
|
|
import type { ConfigConsumerProps } from '../config-provider';
|
|
import { ConfigConsumer } from '../config-provider';
|
|
|
|
export interface CardMetaProps {
|
|
prefixCls?: string;
|
|
style?: React.CSSProperties;
|
|
className?: string;
|
|
avatar?: React.ReactNode;
|
|
title?: React.ReactNode;
|
|
description?: React.ReactNode;
|
|
}
|
|
|
|
const Meta: React.FC<CardMetaProps> = props => (
|
|
<ConfigConsumer>
|
|
{({ getPrefixCls }: ConfigConsumerProps) => {
|
|
const {
|
|
prefixCls: customizePrefixCls,
|
|
className,
|
|
avatar,
|
|
title,
|
|
description,
|
|
...others
|
|
} = props;
|
|
const prefixCls = getPrefixCls('card', customizePrefixCls);
|
|
const classString = classNames(`${prefixCls}-meta`, className);
|
|
const avatarDom = avatar ? <div className={`${prefixCls}-meta-avatar`}>{avatar}</div> : null;
|
|
const titleDom = title ? <div className={`${prefixCls}-meta-title`}>{title}</div> : null;
|
|
const descriptionDom = description ? (
|
|
<div className={`${prefixCls}-meta-description`}>{description}</div>
|
|
) : null;
|
|
const MetaDetail =
|
|
titleDom || descriptionDom ? (
|
|
<div className={`${prefixCls}-meta-detail`}>
|
|
{titleDom}
|
|
{descriptionDom}
|
|
</div>
|
|
) : null;
|
|
return (
|
|
<div {...others} className={classString}>
|
|
{avatarDom}
|
|
{MetaDetail}
|
|
</div>
|
|
);
|
|
}}
|
|
</ConfigConsumer>
|
|
);
|
|
|
|
export default Meta;
|
|
|