|
|
import * as React from 'react'; |
|
|
import classNames from 'classnames'; |
|
|
import type { Tab, TabBarExtraContent } from 'rc-tabs/lib/interface'; |
|
|
import omit from 'rc-util/lib/omit'; |
|
|
|
|
|
import { devUseWarning } from '../_util/warning'; |
|
|
import { ConfigContext } from '../config-provider'; |
|
|
import useSize from '../config-provider/hooks/useSize'; |
|
|
import Skeleton from '../skeleton'; |
|
|
import type { TabsProps } from '../tabs'; |
|
|
import Tabs from '../tabs'; |
|
|
import Grid from './Grid'; |
|
|
import useStyle from './style'; |
|
|
import useVariant from '../form/hooks/useVariants'; |
|
|
|
|
|
export type CardType = 'inner'; |
|
|
export type CardSize = 'default' | 'small'; |
|
|
|
|
|
export interface CardTabListType extends Omit<Tab, 'label'> { |
|
|
key: string; |
|
|
|
|
|
tab?: React.ReactNode; |
|
|
label?: React.ReactNode; |
|
|
} |
|
|
|
|
|
type SemanticName = 'header' | 'body' | 'extra' | 'actions' | 'title' | 'cover'; |
|
|
|
|
|
export interface CardProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'title'> { |
|
|
prefixCls?: string; |
|
|
title?: React.ReactNode; |
|
|
extra?: React.ReactNode; |
|
|
|
|
|
bordered?: boolean; |
|
|
|
|
|
headStyle?: React.CSSProperties; |
|
|
|
|
|
bodyStyle?: React.CSSProperties; |
|
|
style?: React.CSSProperties; |
|
|
loading?: boolean; |
|
|
hoverable?: boolean; |
|
|
children?: React.ReactNode; |
|
|
id?: string; |
|
|
className?: string; |
|
|
rootClassName?: string; |
|
|
size?: CardSize; |
|
|
type?: CardType; |
|
|
cover?: React.ReactNode; |
|
|
actions?: React.ReactNode[]; |
|
|
tabList?: CardTabListType[]; |
|
|
tabBarExtraContent?: TabBarExtraContent; |
|
|
onTabChange?: (key: string) => void; |
|
|
activeTabKey?: string; |
|
|
defaultActiveTabKey?: string; |
|
|
tabProps?: TabsProps; |
|
|
classNames?: Partial<Record<SemanticName, string>>; |
|
|
styles?: Partial<Record<SemanticName, React.CSSProperties>>; |
|
|
variant?: 'borderless' | 'outlined'; |
|
|
} |
|
|
|
|
|
type CardClassNamesModule = keyof Exclude<CardProps['classNames'], undefined>; |
|
|
type CardStylesModule = keyof Exclude<CardProps['styles'], undefined>; |
|
|
|
|
|
const ActionNode: React.FC<{ |
|
|
actionClasses: string; |
|
|
actions: React.ReactNode[]; |
|
|
actionStyle: React.CSSProperties; |
|
|
}> = (props) => { |
|
|
const { actionClasses, actions = [], actionStyle } = props; |
|
|
return ( |
|
|
<ul className={actionClasses} style={actionStyle}> |
|
|
{actions.map<React.ReactNode>((action, index) => { |
|
|
// Move this out since eslint not allow index key |
|
|
// And eslint-disable makes conflict with rollup |
|
|
// ref https://github.com/ant-design/ant-design/issues/46022 |
|
|
const key = `action-${index}`; |
|
|
return ( |
|
|
<li style={{ width: `${100 / actions.length}%` }} key={key}> |
|
|
<span>{action}</span> |
|
|
</li> |
|
|
); |
|
|
})} |
|
|
</ul> |
|
|
); |
|
|
}; |
|
|
|
|
|
const Card = React.forwardRef<HTMLDivElement, CardProps>((props, ref) => { |
|
|
const { |
|
|
prefixCls: customizePrefixCls, |
|
|
className, |
|
|
rootClassName, |
|
|
style, |
|
|
extra, |
|
|
headStyle = {}, |
|
|
bodyStyle = {}, |
|
|
title, |
|
|
loading, |
|
|
bordered, |
|
|
variant: customVariant, |
|
|
size: customizeSize, |
|
|
type, |
|
|
cover, |
|
|
actions, |
|
|
tabList, |
|
|
children, |
|
|
activeTabKey, |
|
|
defaultActiveTabKey, |
|
|
tabBarExtraContent, |
|
|
hoverable, |
|
|
tabProps = {}, |
|
|
classNames: customClassNames, |
|
|
styles: customStyles, |
|
|
...others |
|
|
} = props; |
|
|
|
|
|
const { getPrefixCls, direction, card } = React.useContext(ConfigContext); |
|
|
const [variant] = useVariant('card', customVariant, bordered); |
|
|
|
|
|
// =================Warning=================== |
|
|
if (process.env.NODE_ENV !== 'production') { |
|
|
const warning = devUseWarning('Card'); |
|
|
[ |
|
|
['headStyle', 'styles.header'], |
|
|
['bodyStyle', 'styles.body'], |
|
|
['bordered', 'variant'], |
|
|
].forEach(([deprecatedName, newName]) => { |
|
|
warning.deprecated(!(deprecatedName in props), deprecatedName, newName); |
|
|
}); |
|
|
} |
|
|
|
|
|
const onTabChange = (key: string) => { |
|
|
props.onTabChange?.(key); |
|
|
}; |
|
|
|
|
|
const moduleClass = (moduleName: CardClassNamesModule) => |
|
|
classNames(card?.classNames?.[moduleName], customClassNames?.[moduleName]); |
|
|
|
|
|
const moduleStyle = (moduleName: CardStylesModule): React.CSSProperties => ({ |
|
|
...card?.styles?.[moduleName], |
|
|
...customStyles?.[moduleName], |
|
|
}); |
|
|
|
|
|
const isContainGrid = React.useMemo<boolean>(() => { |
|
|
let containGrid = false; |
|
|
React.Children.forEach(children as React.ReactElement, (element: React.JSX.Element) => { |
|
|
if (element?.type === Grid) { |
|
|
containGrid = true; |
|
|
} |
|
|
}); |
|
|
return containGrid; |
|
|
}, [children]); |
|
|
|
|
|
const prefixCls = getPrefixCls('card', customizePrefixCls); |
|
|
const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls); |
|
|
|
|
|
const loadingBlock = ( |
|
|
<Skeleton loading active paragraph={{ rows: 4 }} title={false}> |
|
|
{children} |
|
|
</Skeleton> |
|
|
); |
|
|
|
|
|
const hasActiveTabKey = activeTabKey !== undefined; |
|
|
const extraProps = { |
|
|
...tabProps, |
|
|
[hasActiveTabKey ? 'activeKey' : 'defaultActiveKey']: hasActiveTabKey |
|
|
? activeTabKey |
|
|
: defaultActiveTabKey, |
|
|
tabBarExtraContent, |
|
|
}; |
|
|
|
|
|
let head: React.ReactNode; |
|
|
const mergedSize = useSize(customizeSize); |
|
|
const tabSize = !mergedSize || mergedSize === 'default' ? 'large' : mergedSize; |
|
|
const tabs = tabList ? ( |
|
|
<Tabs |
|
|
size={tabSize} |
|
|
{...extraProps} |
|
|
className={`${prefixCls}-head-tabs`} |
|
|
onChange={onTabChange} |
|
|
items={tabList.map(({ tab, ...item }) => ({ label: tab, ...item }))} |
|
|
/> |
|
|
) : null; |
|
|
if (title || extra || tabs) { |
|
|
const headClasses = classNames(`${prefixCls}-head`, moduleClass('header')); |
|
|
const titleClasses = classNames(`${prefixCls}-head-title`, moduleClass('title')); |
|
|
const extraClasses = classNames(`${prefixCls}-extra`, moduleClass('extra')); |
|
|
const mergedHeadStyle: React.CSSProperties = { |
|
|
...headStyle, |
|
|
...moduleStyle('header'), |
|
|
}; |
|
|
head = ( |
|
|
<div className={headClasses} style={mergedHeadStyle}> |
|
|
<div className={`${prefixCls}-head-wrapper`}> |
|
|
{title && ( |
|
|
<div className={titleClasses} style={moduleStyle('title')}> |
|
|
{title} |
|
|
</div> |
|
|
)} |
|
|
{extra && ( |
|
|
<div className={extraClasses} style={moduleStyle('extra')}> |
|
|
{extra} |
|
|
</div> |
|
|
)} |
|
|
</div> |
|
|
{tabs} |
|
|
</div> |
|
|
); |
|
|
} |
|
|
const coverClasses = classNames(`${prefixCls}-cover`, moduleClass('cover')); |
|
|
const coverDom = cover ? ( |
|
|
<div className={coverClasses} style={moduleStyle('cover')}> |
|
|
{cover} |
|
|
</div> |
|
|
) : null; |
|
|
const bodyClasses = classNames(`${prefixCls}-body`, moduleClass('body')); |
|
|
const mergedBodyStyle: React.CSSProperties = { |
|
|
...bodyStyle, |
|
|
...moduleStyle('body'), |
|
|
}; |
|
|
const body = ( |
|
|
<div className={bodyClasses} style={mergedBodyStyle}> |
|
|
{loading ? loadingBlock : children} |
|
|
</div> |
|
|
); |
|
|
|
|
|
const actionClasses = classNames(`${prefixCls}-actions`, moduleClass('actions')); |
|
|
const actionDom = actions?.length ? ( |
|
|
<ActionNode |
|
|
actionClasses={actionClasses} |
|
|
actionStyle={moduleStyle('actions')} |
|
|
actions={actions} |
|
|
/> |
|
|
) : null; |
|
|
|
|
|
const divProps = omit(others, ['onTabChange']); |
|
|
|
|
|
const classString = classNames( |
|
|
prefixCls, |
|
|
card?.className, |
|
|
{ |
|
|
[`${prefixCls}-loading`]: loading, |
|
|
[`${prefixCls}-bordered`]: variant !== 'borderless', |
|
|
[`${prefixCls}-hoverable`]: hoverable, |
|
|
[`${prefixCls}-contain-grid`]: isContainGrid, |
|
|
[`${prefixCls}-contain-tabs`]: tabList?.length, |
|
|
[`${prefixCls}-${mergedSize}`]: mergedSize, |
|
|
[`${prefixCls}-type-${type}`]: !!type, |
|
|
[`${prefixCls}-rtl`]: direction === 'rtl', |
|
|
}, |
|
|
className, |
|
|
rootClassName, |
|
|
hashId, |
|
|
cssVarCls, |
|
|
); |
|
|
|
|
|
const mergedStyle: React.CSSProperties = { ...card?.style, ...style }; |
|
|
|
|
|
return wrapCSSVar( |
|
|
<div ref={ref} {...divProps} className={classString} style={mergedStyle}> |
|
|
{head} |
|
|
{coverDom} |
|
|
{body} |
|
|
{actionDom} |
|
|
</div>, |
|
|
); |
|
|
}); |
|
|
|
|
|
export default Card; |
|
|
|