UNPKG

@perfma/heaven

Version:

An UI Framework base [Ant Design V4](https://ant.design/components/overview-cn/) for React.

67 lines (55 loc) 3.69 kB
var _excluded = ["title", "extra", "children", "bottomLinkText", "onBottomLinkClick", "bordered", "shadow", "className", "tabProps"]; function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; } import React from 'react'; import { Card } from 'antd'; import Button from '../button'; import Icon from '../icon'; import { classNames } from '../_util'; import './index.less'; var ProCard = function ProCard(props) { var title = props.title, extra = props.extra, children = props.children, bottomLinkText = props.bottomLinkText, onBottomLinkClick = props.onBottomLinkClick, bordered = props.bordered, shadow = props.shadow, className = props.className, tabProps = props.tabProps, rest = _objectWithoutProperties(props, _excluded); // tabs组件间距调整,只针对card有title的情况 var _tabProps = tabProps; if (props.title && props.tabList) { if (_tabProps) { _tabProps.style = _objectSpread(_objectSpread({}, _tabProps.style), {}, { marginTop: '16px' }); } else { _tabProps = { style: { marginTop: '16px' } }; } } return /*#__PURE__*/React.createElement(Card, _objectSpread(_objectSpread({}, rest), {}, { title: title, extra: extra, tabProps: _tabProps, bordered: bordered && !shadow, className: classNames([className, shadow && "card-shadow-".concat(shadow), bottomLinkText && 'card-bottom-link', !title && !extra && 'card-simple']) }), children, bottomLinkText && /*#__PURE__*/React.createElement(Button, { className: "card-bottom-text", onClick: onBottomLinkClick, type: "link" }, bottomLinkText, ' ', /*#__PURE__*/React.createElement(Icon, { className: "card-bottom-text-icon", type: "RightOutlined" }))); }; ProCard.Grid = Card.Grid; ProCard.Meta = Card.Meta; export default ProCard;