2015-07-13 21:40:04 +08:00
|
|
|
import React from 'react';
|
2015-07-11 16:40:59 +08:00
|
|
|
import Notification from 'rc-notification';
|
2015-11-20 11:05:34 +08:00
|
|
|
import Icon from '../icon';
|
2016-03-28 18:03:00 +08:00
|
|
|
import warning from 'warning';
|
2015-07-11 16:40:59 +08:00
|
|
|
|
2015-07-23 11:59:56 +08:00
|
|
|
let defaultDuration = 1.5;
|
2016-03-09 21:55:46 +08:00
|
|
|
let defaultTop;
|
2015-09-01 16:18:46 +08:00
|
|
|
let messageInstance;
|
2015-09-07 12:27:09 +08:00
|
|
|
let key = 1;
|
2016-04-16 17:38:30 +08:00
|
|
|
let prefixCls = 'ant-message';
|
2015-07-30 21:32:12 +08:00
|
|
|
|
2015-07-23 11:59:56 +08:00
|
|
|
function getMessageInstance() {
|
2015-07-30 21:32:12 +08:00
|
|
|
messageInstance = messageInstance || Notification.newInstance({
|
2016-04-16 17:38:30 +08:00
|
|
|
prefixCls,
|
2015-07-11 16:40:59 +08:00
|
|
|
transitionName: 'move-up',
|
2016-03-09 21:55:46 +08:00
|
|
|
style: { defaultTop }, // 覆盖原来的样式
|
2015-07-11 16:40:59 +08:00
|
|
|
});
|
2015-07-30 21:32:12 +08:00
|
|
|
return messageInstance;
|
2015-07-23 11:59:56 +08:00
|
|
|
}
|
|
|
|
|
2015-09-07 12:27:09 +08:00
|
|
|
function notice(content, duration = defaultDuration, type, onClose) {
|
2015-10-02 15:32:16 +08:00
|
|
|
let iconType = ({
|
2016-01-07 17:46:46 +08:00
|
|
|
info: 'info-circle',
|
|
|
|
success: 'check-circle',
|
2016-03-28 16:09:13 +08:00
|
|
|
error: 'cross-circle',
|
2016-03-28 14:38:25 +08:00
|
|
|
warning: 'exclamation-circle',
|
2016-05-11 09:32:33 +08:00
|
|
|
loading: 'loading',
|
2015-10-02 15:32:16 +08:00
|
|
|
})[type];
|
|
|
|
|
2015-09-07 12:27:09 +08:00
|
|
|
let instance = getMessageInstance();
|
|
|
|
instance.notice({
|
2016-01-07 17:46:46 +08:00
|
|
|
key,
|
|
|
|
duration,
|
2015-07-23 11:59:56 +08:00
|
|
|
style: {},
|
2016-04-16 17:38:30 +08:00
|
|
|
content: (
|
|
|
|
<div className={`${prefixCls}-custom-content ${prefixCls}-${type}`}>
|
|
|
|
<Icon type={iconType} />
|
|
|
|
<span>{content}</span>
|
|
|
|
</div>
|
|
|
|
),
|
|
|
|
onClose,
|
2015-07-23 11:59:56 +08:00
|
|
|
});
|
2016-01-14 16:46:38 +08:00
|
|
|
return (function () {
|
2015-09-07 12:27:09 +08:00
|
|
|
let target = key++;
|
2016-01-14 16:46:38 +08:00
|
|
|
return function () {
|
2015-09-07 12:27:09 +08:00
|
|
|
instance.removeNotice(target);
|
|
|
|
};
|
2016-01-23 15:22:16 +08:00
|
|
|
}());
|
2015-07-23 11:59:56 +08:00
|
|
|
}
|
2015-07-11 16:40:59 +08:00
|
|
|
|
2015-07-11 18:00:58 +08:00
|
|
|
export default {
|
2015-09-07 12:27:09 +08:00
|
|
|
info(content, duration, onClose) {
|
|
|
|
return notice(content, duration, 'info', onClose);
|
2015-07-11 16:40:59 +08:00
|
|
|
},
|
2015-09-07 12:27:09 +08:00
|
|
|
success(content, duration, onClose) {
|
|
|
|
return notice(content, duration, 'success', onClose);
|
2015-07-11 16:40:59 +08:00
|
|
|
},
|
2015-09-07 12:27:09 +08:00
|
|
|
error(content, duration, onClose) {
|
|
|
|
return notice(content, duration, 'error', onClose);
|
|
|
|
},
|
2016-03-28 18:03:00 +08:00
|
|
|
// Departed usage, please use warning()
|
|
|
|
warn(content, duration, onClose) {
|
|
|
|
warning(false, 'message.warn() is departed, please use message.warning()');
|
|
|
|
return notice(content, duration, 'warning', onClose);
|
|
|
|
},
|
2016-03-28 14:38:25 +08:00
|
|
|
warning(content, duration, onClose) {
|
|
|
|
return notice(content, duration, 'warning', onClose);
|
2015-12-10 16:41:41 +08:00
|
|
|
},
|
2015-09-07 12:27:09 +08:00
|
|
|
loading(content, duration, onClose) {
|
|
|
|
return notice(content, duration, 'loading', onClose);
|
2015-07-30 11:47:46 +08:00
|
|
|
},
|
|
|
|
config(options) {
|
2016-03-09 21:55:46 +08:00
|
|
|
if ('top' in options) {
|
|
|
|
defaultTop = options.top;
|
|
|
|
}
|
|
|
|
if ('duration' in options) {
|
|
|
|
defaultDuration = options.duration;
|
2015-07-30 11:47:46 +08:00
|
|
|
}
|
2016-04-16 17:38:30 +08:00
|
|
|
if ('prefixCls' in options) {
|
|
|
|
prefixCls = options.prefixCls;
|
|
|
|
}
|
2016-01-21 14:13:28 +08:00
|
|
|
},
|
|
|
|
destroy() {
|
|
|
|
if (messageInstance) {
|
|
|
|
messageInstance.destroy();
|
|
|
|
messageInstance = null;
|
|
|
|
}
|
|
|
|
},
|
2015-07-11 16:40:59 +08:00
|
|
|
};
|