UNPKG

ygd

Version:

An enterprise-class UI design language and React-based implementation

83 lines (69 loc) 1.74 kB
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } import * as React from 'react'; import Modal, { destroyFns } from './Modal'; import confirm from './confirm'; import Icon from '../icon'; Modal.info = function (props) { var config = _extends({ type: 'info', icon: /*#__PURE__*/ React.createElement(Icon, { type: "info-circle" }), okCancel: false }, props); return confirm(config); }; Modal.success = function (props) { var config = _extends({ type: 'success', icon: /*#__PURE__*/ React.createElement(Icon, { type: "check-circle" }), okCancel: false }, props); return confirm(config); }; Modal.error = function (props) { var config = _extends({ type: 'error', icon: /*#__PURE__*/ React.createElement(Icon, { type: "close-circle" }), okCancel: false }, props); return confirm(config); }; Modal.warning = Modal.warn = function (props) { var config = _extends({ type: 'warning', icon: /*#__PURE__*/ React.createElement(Icon, { type: "exclamation-circle" }), okCancel: false }, props); return confirm(config); }; Modal.confirm = function (props) { var config = _extends({ type: 'confirm', okCancel: true }, props); return confirm(config); }; Modal.destroyAll = function () { while (destroyFns.length) { var close = destroyFns.pop(); if (close) { close(); } } }; export default Modal;