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.

74 lines
1.7 KiB

10 years ago
import React from 'react';
import Notification from 'rc-notification';
import Icon from '../iconfont';
let defaultDuration = 1.5;
let top;
let messageInstance;
let key = 1;
9 years ago
function getMessageInstance() {
9 years ago
messageInstance = messageInstance || Notification.newInstance({
prefixCls: 'ant-message',
transitionName: 'move-up',
style: {
top: top
} // 覆盖原来的样式
});
9 years ago
return messageInstance;
}
function notice(content, duration = defaultDuration, type, onClose) {
let iconClass = ({
'info': 'ant-message-info',
'success': 'ant-message-success',
'error': 'ant-message-error',
'loading': 'ant-message-loading'
})[type];
let iconType = ({
'info': 'info-circle',
'success': 'check-circle',
'error': 'exclamation-circle',
'loading': 'loading'
})[type];
let instance = getMessageInstance();
instance.notice({
key: key,
duration: duration,
style: {},
content: <div className="ant-message-custom-content">
<Icon className={iconClass} type={iconType} />
<span>{content}</span>
</div>,
onClose: onClose
});
return (function() {
let target = key++;
return function() {
instance.removeNotice(target);
};
})();
}
export default {
info(content, duration, onClose) {
return notice(content, duration, 'info', onClose);
},
success(content, duration, onClose) {
return notice(content, duration, 'success', onClose);
},
error(content, duration, onClose) {
return notice(content, duration, 'error', onClose);
},
loading(content, duration, onClose) {
return notice(content, duration, 'loading', onClose);
},
config(options) {
if (options.top) {
top = options.top;
}
}
};