UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

100 lines 3.93 kB
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty"; import _slicedToArray from "@babel/runtime/helpers/esm/slicedToArray"; import CheckCircleFilled from "@ant-design/icons/es/icons/CheckCircleFilled"; import CloseCircleFilled from "@ant-design/icons/es/icons/CloseCircleFilled"; import ExclamationCircleFilled from "@ant-design/icons/es/icons/ExclamationCircleFilled"; import WarningFilled from "@ant-design/icons/es/icons/WarningFilled"; import classNames from 'classnames'; import * as React from 'react'; import { ConfigContext } from '../config-provider'; import warning from '../_util/warning'; import noFound from './noFound'; import serverError from './serverError'; import unauthorized from './unauthorized'; import useStyle from './style'; export var IconMap = { success: CheckCircleFilled, error: CloseCircleFilled, info: ExclamationCircleFilled, warning: WarningFilled }; export var ExceptionMap = { '404': noFound, '500': serverError, '403': unauthorized }; // ExceptionImageMap keys var ExceptionStatus = Object.keys(ExceptionMap); var Icon = function Icon(_ref) { var prefixCls = _ref.prefixCls, icon = _ref.icon, status = _ref.status; var className = classNames(prefixCls + "-icon"); process.env.NODE_ENV !== "production" ? warning(!(typeof icon === 'string' && icon.length > 2), 'Result', "`icon` is using ReactNode instead of string naming in v4. Please check `" + icon + "` at https://ant.design/components/icon") : void 0; if (ExceptionStatus.includes("" + status)) { var SVGComponent = ExceptionMap[status]; return /*#__PURE__*/React.createElement("div", { className: className + " " + prefixCls + "-image" }, /*#__PURE__*/React.createElement(SVGComponent, null)); } var iconNode = /*#__PURE__*/React.createElement(IconMap[status]); if (icon === null || icon === false) { return null; } return /*#__PURE__*/React.createElement("div", { className: className }, icon || iconNode); }; var Extra = function Extra(_ref2) { var prefixCls = _ref2.prefixCls, extra = _ref2.extra; if (!extra) { return null; } return /*#__PURE__*/React.createElement("div", { className: prefixCls + "-extra" }, extra); }; var Result = function Result(_ref3) { var customizePrefixCls = _ref3.prefixCls, customizeClassName = _ref3.className, subTitle = _ref3.subTitle, title = _ref3.title, style = _ref3.style, children = _ref3.children, _ref3$status = _ref3.status, status = _ref3$status === void 0 ? 'info' : _ref3$status, icon = _ref3.icon, extra = _ref3.extra; var _React$useContext = React.useContext(ConfigContext), getPrefixCls = _React$useContext.getPrefixCls, direction = _React$useContext.direction; var prefixCls = getPrefixCls('result', customizePrefixCls); // Style var _useStyle = useStyle(prefixCls), _useStyle2 = _slicedToArray(_useStyle, 2), wrapSSR = _useStyle2[0], hashId = _useStyle2[1]; var className = classNames(prefixCls, prefixCls + "-" + status, customizeClassName, _defineProperty({}, prefixCls + "-rtl", direction === 'rtl'), hashId); return wrapSSR( /*#__PURE__*/React.createElement("div", { className: className, style: style }, /*#__PURE__*/React.createElement(Icon, { prefixCls: prefixCls, status: status, icon: icon }), /*#__PURE__*/React.createElement("div", { className: prefixCls + "-title" }, title), subTitle && /*#__PURE__*/React.createElement("div", { className: prefixCls + "-subtitle" }, subTitle), /*#__PURE__*/React.createElement(Extra, { prefixCls: prefixCls, extra: extra }), children && /*#__PURE__*/React.createElement("div", { className: prefixCls + "-content" }, children))); }; Result.PRESENTED_IMAGE_403 = ExceptionMap['403']; Result.PRESENTED_IMAGE_404 = ExceptionMap['404']; Result.PRESENTED_IMAGE_500 = ExceptionMap['500']; export default Result;