You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
223 lines
6.0 KiB
223 lines
6.0 KiB
"use strict";
|
|
|
|
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
|
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.getKeyThenIncreaseKey = getKeyThenIncreaseKey;
|
|
exports.attachTypeApi = attachTypeApi;
|
|
exports["default"] = void 0;
|
|
|
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
|
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
|
|
var React = _interopRequireWildcard(require("react"));
|
|
|
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
|
|
var _rcNotification = _interopRequireDefault(require("rc-notification"));
|
|
|
|
var _LoadingOutlined = _interopRequireDefault(require("@ant-design/icons/LoadingOutlined"));
|
|
|
|
var _ExclamationCircleFilled = _interopRequireDefault(require("@ant-design/icons/ExclamationCircleFilled"));
|
|
|
|
var _CloseCircleFilled = _interopRequireDefault(require("@ant-design/icons/CloseCircleFilled"));
|
|
|
|
var _CheckCircleFilled = _interopRequireDefault(require("@ant-design/icons/CheckCircleFilled"));
|
|
|
|
var _InfoCircleFilled = _interopRequireDefault(require("@ant-design/icons/InfoCircleFilled"));
|
|
|
|
var _useMessage = _interopRequireDefault(require("./hooks/useMessage"));
|
|
|
|
var messageInstance;
|
|
var defaultDuration = 3;
|
|
var defaultTop;
|
|
var key = 1;
|
|
var localPrefixCls = 'ant-message';
|
|
var transitionName = 'move-up';
|
|
var getContainer;
|
|
var maxCount;
|
|
var rtl = false;
|
|
|
|
function getKeyThenIncreaseKey() {
|
|
return key++;
|
|
}
|
|
|
|
function setMessageConfig(options) {
|
|
if (options.top !== undefined) {
|
|
defaultTop = options.top;
|
|
messageInstance = null; // delete messageInstance for new defaultTop
|
|
}
|
|
|
|
if (options.duration !== undefined) {
|
|
defaultDuration = options.duration;
|
|
}
|
|
|
|
if (options.prefixCls !== undefined) {
|
|
localPrefixCls = options.prefixCls;
|
|
}
|
|
|
|
if (options.getContainer !== undefined) {
|
|
getContainer = options.getContainer;
|
|
}
|
|
|
|
if (options.transitionName !== undefined) {
|
|
transitionName = options.transitionName;
|
|
messageInstance = null; // delete messageInstance for new transitionName
|
|
}
|
|
|
|
if (options.maxCount !== undefined) {
|
|
maxCount = options.maxCount;
|
|
messageInstance = null;
|
|
}
|
|
|
|
if (options.rtl !== undefined) {
|
|
rtl = options.rtl;
|
|
}
|
|
}
|
|
|
|
function getRCNotificationInstance(args, callback) {
|
|
var prefixCls = args.prefixCls || localPrefixCls;
|
|
|
|
if (messageInstance) {
|
|
callback({
|
|
prefixCls: prefixCls,
|
|
instance: messageInstance
|
|
});
|
|
return;
|
|
}
|
|
|
|
_rcNotification["default"].newInstance({
|
|
prefixCls: prefixCls,
|
|
transitionName: transitionName,
|
|
style: {
|
|
top: defaultTop
|
|
},
|
|
getContainer: getContainer,
|
|
maxCount: maxCount
|
|
}, function (instance) {
|
|
if (messageInstance) {
|
|
callback({
|
|
prefixCls: prefixCls,
|
|
instance: messageInstance
|
|
});
|
|
return;
|
|
}
|
|
|
|
messageInstance = instance;
|
|
callback({
|
|
prefixCls: prefixCls,
|
|
instance: instance
|
|
});
|
|
});
|
|
}
|
|
|
|
var typeToIcon = {
|
|
info: _InfoCircleFilled["default"],
|
|
success: _CheckCircleFilled["default"],
|
|
error: _CloseCircleFilled["default"],
|
|
warning: _ExclamationCircleFilled["default"],
|
|
loading: _LoadingOutlined["default"]
|
|
};
|
|
|
|
function getRCNoticeProps(args, prefixCls) {
|
|
var _classNames;
|
|
|
|
var duration = args.duration !== undefined ? args.duration : defaultDuration;
|
|
var IconComponent = typeToIcon[args.type];
|
|
var messageClass = (0, _classnames["default"])("".concat(prefixCls, "-custom-content"), (_classNames = {}, (0, _defineProperty2["default"])(_classNames, "".concat(prefixCls, "-").concat(args.type), args.type), (0, _defineProperty2["default"])(_classNames, "".concat(prefixCls, "-rtl"), rtl === true), _classNames));
|
|
return {
|
|
key: args.key,
|
|
duration: duration,
|
|
style: args.style || {},
|
|
className: args.className,
|
|
content: /*#__PURE__*/React.createElement("div", {
|
|
className: messageClass
|
|
}, args.icon || IconComponent && /*#__PURE__*/React.createElement(IconComponent, null), /*#__PURE__*/React.createElement("span", null, args.content)),
|
|
onClose: args.onClose
|
|
};
|
|
}
|
|
|
|
function notice(args) {
|
|
var target = args.key || key++;
|
|
var closePromise = new Promise(function (resolve) {
|
|
var callback = function callback() {
|
|
if (typeof args.onClose === 'function') {
|
|
args.onClose();
|
|
}
|
|
|
|
return resolve(true);
|
|
};
|
|
|
|
getRCNotificationInstance(args, function (_ref) {
|
|
var prefixCls = _ref.prefixCls,
|
|
instance = _ref.instance;
|
|
instance.notice(getRCNoticeProps((0, _extends2["default"])((0, _extends2["default"])({}, args), {
|
|
key: target,
|
|
onClose: callback
|
|
}), prefixCls));
|
|
});
|
|
});
|
|
|
|
var result = function result() {
|
|
if (messageInstance) {
|
|
messageInstance.removeNotice(target);
|
|
}
|
|
};
|
|
|
|
result.then = function (filled, rejected) {
|
|
return closePromise.then(filled, rejected);
|
|
};
|
|
|
|
result.promise = closePromise;
|
|
return result;
|
|
}
|
|
|
|
function isArgsProps(content) {
|
|
return Object.prototype.toString.call(content) === '[object Object]' && !!content.content;
|
|
}
|
|
|
|
var api = {
|
|
open: notice,
|
|
config: setMessageConfig,
|
|
destroy: function destroy() {
|
|
if (messageInstance) {
|
|
messageInstance.destroy();
|
|
messageInstance = null;
|
|
}
|
|
}
|
|
};
|
|
|
|
function attachTypeApi(originalApi, type) {
|
|
originalApi[type] = function (content, duration, onClose) {
|
|
if (isArgsProps(content)) {
|
|
return originalApi.open((0, _extends2["default"])((0, _extends2["default"])({}, content), {
|
|
type: type
|
|
}));
|
|
}
|
|
|
|
if (typeof duration === 'function') {
|
|
onClose = duration;
|
|
duration = undefined;
|
|
}
|
|
|
|
return originalApi.open({
|
|
content: content,
|
|
duration: duration,
|
|
type: type,
|
|
onClose: onClose
|
|
});
|
|
};
|
|
}
|
|
|
|
['success', 'info', 'warning', 'error', 'loading'].forEach(function (type) {
|
|
return attachTypeApi(api, type);
|
|
});
|
|
api.warn = api.warning;
|
|
api.useMessage = (0, _useMessage["default"])(getRCNotificationInstance, getRCNoticeProps);
|
|
var _default = api;
|
|
exports["default"] = _default; |