UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

186 lines (168 loc) 7.47 kB
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty"; import _extends from "@babel/runtime/helpers/esm/extends"; var __rest = this && this.__rest || function (s, e) { var t = {}; for (var p in s) { if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p]; } if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]]; } return t; }; import * as React from 'react'; import classNames from 'classnames'; import omit from "rc-util/es/omit"; import Grid from './Grid'; import Meta from './Meta'; import Tabs from '../tabs'; import Row from '../row'; import Col from '../col'; import { ConfigContext } from '../config-provider'; import SizeContext from '../config-provider/SizeContext'; function getAction(actions) { var actionList = actions.map(function (action, index) { return ( /*#__PURE__*/ // eslint-disable-next-line react/no-array-index-key React.createElement("li", { style: { width: "".concat(100 / actions.length, "%") }, key: "action-".concat(index) }, /*#__PURE__*/React.createElement("span", null, action)) ); }); return actionList; } var Card = function Card(props) { var _extends2, _classNames; var _React$useContext = React.useContext(ConfigContext), getPrefixCls = _React$useContext.getPrefixCls, direction = _React$useContext.direction; var size = React.useContext(SizeContext); var onTabChange = function onTabChange(key) { var _a; (_a = props.onTabChange) === null || _a === void 0 ? void 0 : _a.call(props, key); }; var isContainGrid = function isContainGrid() { var containGrid; React.Children.forEach(props.children, function (element) { if (element && element.type && element.type === Grid) { containGrid = true; } }); return containGrid; }; var customizePrefixCls = props.prefixCls, className = props.className, extra = props.extra, _props$headStyle = props.headStyle, headStyle = _props$headStyle === void 0 ? {} : _props$headStyle, _props$bodyStyle = props.bodyStyle, bodyStyle = _props$bodyStyle === void 0 ? {} : _props$bodyStyle, title = props.title, loading = props.loading, _props$bordered = props.bordered, bordered = _props$bordered === void 0 ? true : _props$bordered, customizeSize = props.size, type = props.type, cover = props.cover, actions = props.actions, tabList = props.tabList, children = props.children, activeTabKey = props.activeTabKey, defaultActiveTabKey = props.defaultActiveTabKey, tabBarExtraContent = props.tabBarExtraContent, hoverable = props.hoverable, _props$tabProps = props.tabProps, tabProps = _props$tabProps === void 0 ? {} : _props$tabProps, others = __rest(props, ["prefixCls", "className", "extra", "headStyle", "bodyStyle", "title", "loading", "bordered", "size", "type", "cover", "actions", "tabList", "children", "activeTabKey", "defaultActiveTabKey", "tabBarExtraContent", "hoverable", "tabProps"]); var prefixCls = getPrefixCls('card', customizePrefixCls); var loadingBlockStyle = bodyStyle.padding === 0 || bodyStyle.padding === '0px' ? { padding: 24 } : undefined; var block = /*#__PURE__*/React.createElement("div", { className: "".concat(prefixCls, "-loading-block") }); var loadingBlock = /*#__PURE__*/React.createElement("div", { className: "".concat(prefixCls, "-loading-content"), style: loadingBlockStyle }, /*#__PURE__*/React.createElement(Row, { gutter: 8 }, /*#__PURE__*/React.createElement(Col, { span: 22 }, block)), /*#__PURE__*/React.createElement(Row, { gutter: 8 }, /*#__PURE__*/React.createElement(Col, { span: 8 }, block), /*#__PURE__*/React.createElement(Col, { span: 15 }, block)), /*#__PURE__*/React.createElement(Row, { gutter: 8 }, /*#__PURE__*/React.createElement(Col, { span: 6 }, block), /*#__PURE__*/React.createElement(Col, { span: 18 }, block)), /*#__PURE__*/React.createElement(Row, { gutter: 8 }, /*#__PURE__*/React.createElement(Col, { span: 13 }, block), /*#__PURE__*/React.createElement(Col, { span: 9 }, block)), /*#__PURE__*/React.createElement(Row, { gutter: 8 }, /*#__PURE__*/React.createElement(Col, { span: 4 }, block), /*#__PURE__*/React.createElement(Col, { span: 3 }, block), /*#__PURE__*/React.createElement(Col, { span: 16 }, block))); var hasActiveTabKey = activeTabKey !== undefined; var extraProps = _extends(_extends({}, tabProps), (_extends2 = {}, _defineProperty(_extends2, hasActiveTabKey ? 'activeKey' : 'defaultActiveKey', hasActiveTabKey ? activeTabKey : defaultActiveTabKey), _defineProperty(_extends2, "tabBarExtraContent", tabBarExtraContent), _extends2)); var head; var tabs = tabList && tabList.length ? /*#__PURE__*/React.createElement(Tabs, _extends({ size: "large" }, extraProps, { className: "".concat(prefixCls, "-head-tabs"), onChange: onTabChange }), tabList.map(function (item) { return /*#__PURE__*/React.createElement(Tabs.TabPane, { tab: item.tab, disabled: item.disabled, key: item.key }); })) : null; if (title || extra || tabs) { head = /*#__PURE__*/React.createElement("div", { className: "".concat(prefixCls, "-head"), style: headStyle }, /*#__PURE__*/React.createElement("div", { className: "".concat(prefixCls, "-head-wrapper") }, title && /*#__PURE__*/React.createElement("div", { className: "".concat(prefixCls, "-head-title") }, title), extra && /*#__PURE__*/React.createElement("div", { className: "".concat(prefixCls, "-extra") }, extra)), tabs); } var coverDom = cover ? /*#__PURE__*/React.createElement("div", { className: "".concat(prefixCls, "-cover") }, cover) : null; var body = /*#__PURE__*/React.createElement("div", { className: "".concat(prefixCls, "-body"), style: bodyStyle }, loading ? loadingBlock : children); var actionDom = actions && actions.length ? /*#__PURE__*/React.createElement("ul", { className: "".concat(prefixCls, "-actions") }, getAction(actions)) : null; var divProps = omit(others, ['onTabChange']); var mergedSize = customizeSize || size; var classString = classNames(prefixCls, (_classNames = {}, _defineProperty(_classNames, "".concat(prefixCls, "-loading"), loading), _defineProperty(_classNames, "".concat(prefixCls, "-bordered"), bordered), _defineProperty(_classNames, "".concat(prefixCls, "-hoverable"), hoverable), _defineProperty(_classNames, "".concat(prefixCls, "-contain-grid"), isContainGrid()), _defineProperty(_classNames, "".concat(prefixCls, "-contain-tabs"), tabList && tabList.length), _defineProperty(_classNames, "".concat(prefixCls, "-").concat(mergedSize), mergedSize), _defineProperty(_classNames, "".concat(prefixCls, "-type-").concat(type), !!type), _defineProperty(_classNames, "".concat(prefixCls, "-rtl"), direction === 'rtl'), _classNames), className); return /*#__PURE__*/React.createElement("div", _extends({}, divProps, { className: classString }), head, coverDom, body, actionDom); }; Card.Grid = Grid; Card.Meta = Meta; export default Card;