import type { VNodeTypes, PropType, VNode, ExtractPropTypes } from 'vue'; import { isVNode, defineComponent, renderSlot } from 'vue'; import Tabs from '../tabs'; import Row from '../row'; import Col from '../col'; import PropTypes from '../_util/vue-types'; import { flattenChildren, isEmptyElement } from '../_util/props-util'; import BaseMixin from '../_util/BaseMixin'; import type { SizeType } from '../config-provider'; import isPlainObject from 'lodash-es/isPlainObject'; import useConfigInject from '../_util/hooks/useConfigInject'; import devWarning from '../vc-util/devWarning'; export interface CardTabListType { key: string; tab: any; /** @deprecated Please use `customTab` instead. */ slots?: { tab: string }; disabled?: boolean; } export type CardType = 'inner'; export type CardSize = 'default' | 'small'; const { TabPane } = Tabs; export const cardProps = () => ({ prefixCls: PropTypes.string, title: PropTypes.any, extra: PropTypes.any, bordered: PropTypes.looseBool.def(true), bodyStyle: PropTypes.style, headStyle: PropTypes.style, loading: PropTypes.looseBool.def(false), hoverable: PropTypes.looseBool.def(false), type: { type: String as PropType }, size: { type: String as PropType }, actions: PropTypes.any, tabList: { type: Array as PropType, }, tabBarExtraContent: PropTypes.any, activeTabKey: PropTypes.string, defaultActiveTabKey: PropTypes.string, cover: PropTypes.any, onTabChange: { type: Function as PropType<(key: string) => void>, }, }); export type CardProps = Partial>>; const Card = defineComponent({ name: 'ACard', mixins: [BaseMixin], props: cardProps(), slots: ['title', 'extra', 'tabBarExtraContent', 'actions', 'cover', 'customTab'], setup(props, { slots }) { const { prefixCls, direction, size } = useConfigInject('card', props); const getAction = (actions: VNodeTypes[]) => { const actionList = actions.map((action, index) => (isVNode(action) && !isEmptyElement(action)) || !isVNode(action) ? (
  • {action}
  • ) : null, ); return actionList; }; const triggerTabChange = (key: string) => { props.onTabChange?.(key); }; const isContainGrid = (obj: VNode[] = []) => { let containGrid: boolean; obj.forEach(element => { if (element && isPlainObject(element.type) && (element.type as any).__ANT_CARD_GRID) { containGrid = true; } }); return containGrid; }; return () => { const { headStyle = {}, bodyStyle = {}, loading, bordered = true, type, tabList, hoverable, activeTabKey, defaultActiveTabKey, tabBarExtraContent = slots.tabBarExtraContent?.(), title = slots.title?.(), extra = slots.extra?.(), actions = slots.actions?.(), cover = slots.cover?.(), } = props; const children = flattenChildren(slots.default?.()); const pre = prefixCls.value; const classString = { [`${pre}`]: true, [`${pre}-loading`]: loading, [`${pre}-bordered`]: bordered, [`${pre}-hoverable`]: !!hoverable, [`${pre}-contain-grid`]: isContainGrid(children), [`${pre}-contain-tabs`]: tabList && tabList.length, [`${pre}-${size.value}`]: size.value, [`${pre}-type-${type}`]: !!type, [`${pre}-rtl`]: direction.value === 'rtl', }; const loadingBlockStyle = bodyStyle.padding === 0 || bodyStyle.padding === '0px' ? { padding: '24px' } : undefined; const block =
    ; const loadingBlock = (
    {block} {block} {block} {block} {block} {block} {block} {block} {block} {block}
    ); const hasActiveTabKey = activeTabKey !== undefined; const tabsProps = { size: 'large' as SizeType, [hasActiveTabKey ? 'activeKey' : 'defaultActiveKey']: hasActiveTabKey ? activeTabKey : defaultActiveTabKey, onChange: triggerTabChange, class: `${pre}-head-tabs`, }; let head; const tabs = tabList && tabList.length ? ( tabBarExtraContent : null }} > {tabList.map(item => { const { tab: temp, slots: itemSlots } = item as CardTabListType; const name = itemSlots?.tab; devWarning( !itemSlots, 'Card', `tabList slots is deprecated, Please use \`customTab\` instead.`, ); let tab = temp !== undefined ? temp : slots[name] ? slots[name](item) : null; tab = renderSlot(slots, 'customTab', item as any, () => [tab]); return ; })} ) : null; if (title || extra || tabs) { head = (
    {title &&
    {title}
    } {extra &&
    {extra}
    }
    {tabs}
    ); } const coverDom = cover ?
    {cover}
    : null; const body = (
    {loading ? loadingBlock : children}
    ); const actionDom = actions && actions.length ?
      {getAction(actions)}
    : null; return (
    {head} {coverDom} {children && children.length ? body : null} {actionDom}
    ); }; }, }); export default Card;