2016-09-19 14:50:32 +08:00
|
|
|
import Notification from '../base/notification';
|
|
|
|
|
|
|
|
const prefixCls = 'ivu-message';
|
|
|
|
const iconPrefixCls = 'ivu-icon';
|
2016-09-19 16:13:50 +08:00
|
|
|
const prefixKey = 'ivu_message_key_';
|
2016-09-19 14:50:32 +08:00
|
|
|
|
|
|
|
let defaultDuration = 1.5;
|
|
|
|
|
|
|
|
let top;
|
|
|
|
let messageInstance;
|
2016-09-19 16:13:50 +08:00
|
|
|
let key = 1;
|
2016-09-19 14:50:32 +08:00
|
|
|
|
|
|
|
const iconTypes = {
|
|
|
|
'info': 'information-circled',
|
|
|
|
'success': 'checkmark-circled',
|
|
|
|
'warning': 'android-alert',
|
|
|
|
'error': 'close-circled',
|
|
|
|
'loading': 'load-c'
|
|
|
|
};
|
|
|
|
|
|
|
|
function getMessageInstance () {
|
|
|
|
messageInstance = messageInstance || Notification.newInstance({
|
|
|
|
prefixCls: prefixCls,
|
|
|
|
transitionName: 'slide',
|
|
|
|
style: {
|
|
|
|
top: `${top}px`
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return messageInstance;
|
|
|
|
}
|
|
|
|
|
|
|
|
function notice (content, duration = defaultDuration, type, onClose) {
|
|
|
|
if (!onClose) {
|
|
|
|
onClose = function () {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let iconType = iconTypes[type];
|
|
|
|
|
|
|
|
// if loading
|
|
|
|
const loadCls = type === 'loading' ? ' ivu-load-loop' : '';
|
|
|
|
|
|
|
|
let instance = getMessageInstance();
|
|
|
|
|
|
|
|
instance.notice({
|
2016-09-19 16:13:50 +08:00
|
|
|
key: `${prefixKey}${key}`,
|
2016-09-19 14:50:32 +08:00
|
|
|
duration: duration,
|
|
|
|
style: {},
|
|
|
|
content: `
|
|
|
|
<div class="${prefixCls}-custom-content ${prefixCls}-${type}">
|
|
|
|
<i class="${iconPrefixCls} ${iconPrefixCls}-${iconType}${loadCls}"></i>
|
|
|
|
<span>${content}</span>
|
|
|
|
</div>
|
|
|
|
`,
|
|
|
|
onClose: onClose
|
|
|
|
});
|
2016-09-19 16:13:50 +08:00
|
|
|
|
|
|
|
// 用于手动消除
|
|
|
|
return (function () {
|
|
|
|
let target = key++;
|
|
|
|
|
|
|
|
return function () {
|
|
|
|
instance.remove(`${prefixKey}${target}`);
|
|
|
|
}
|
|
|
|
})();
|
2016-09-19 14:50:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
info (content, duration, onClose) {
|
|
|
|
return notice(content, duration, 'info', onClose);
|
|
|
|
},
|
|
|
|
success (content, duration, onClose) {
|
|
|
|
return notice(content, duration, 'success', onClose);
|
|
|
|
},
|
|
|
|
warning (content, duration, onClose) {
|
|
|
|
return notice(content, duration, 'warning', 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;
|
|
|
|
}
|
|
|
|
if (options.duration) {
|
|
|
|
defaultDuration = options.duration;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|