2019-08-27 09:42:40 +08:00
|
|
|
import Notification from '../base/notification';
|
|
|
|
|
|
|
|
const prefixCls = 'ivu-message';
|
|
|
|
const iconPrefixCls = 'ivu-icon';
|
|
|
|
const prefixKey = 'ivu_message_key_';
|
|
|
|
|
|
|
|
const defaults = {
|
|
|
|
top: 24,
|
|
|
|
duration: 1.5
|
|
|
|
};
|
|
|
|
|
|
|
|
let messageInstance;
|
|
|
|
let name = 1;
|
|
|
|
|
|
|
|
const iconTypes = {
|
|
|
|
'info': 'ios-information-circle',
|
|
|
|
'success': 'ios-checkmark-circle',
|
|
|
|
'warning': 'ios-alert',
|
|
|
|
'error': 'ios-close-circle',
|
|
|
|
'loading': 'ios-loading'
|
|
|
|
};
|
|
|
|
|
|
|
|
function getMessageInstance () {
|
|
|
|
messageInstance = messageInstance || Notification.newInstance({
|
|
|
|
prefixCls: prefixCls,
|
|
|
|
styles: {
|
|
|
|
top: `${defaults.top}px`
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return messageInstance;
|
|
|
|
}
|
|
|
|
|
2019-09-06 09:20:45 +08:00
|
|
|
function notice (content = '', duration = defaults.duration, type, onClose = function () {}, closable = false, render = function () {}, background = false) {
|
2019-08-27 09:42:40 +08:00
|
|
|
const iconType = iconTypes[type];
|
|
|
|
|
|
|
|
// if loading
|
|
|
|
const loadCls = type === 'loading' ? ' ivu-load-loop' : '';
|
|
|
|
|
|
|
|
let instance = getMessageInstance();
|
|
|
|
|
|
|
|
instance.notice({
|
|
|
|
name: `${prefixKey}${name}`,
|
|
|
|
duration: duration,
|
|
|
|
styles: {},
|
|
|
|
transitionName: 'move-up',
|
|
|
|
content: `
|
|
|
|
<div class="${prefixCls}-custom-content ${prefixCls}-${type}">
|
|
|
|
<i class="${iconPrefixCls} ${iconPrefixCls}-${iconType} ${loadCls}"></i>
|
|
|
|
<span>${content}</span>
|
|
|
|
</div>
|
|
|
|
`,
|
|
|
|
render: render,
|
|
|
|
onClose: onClose,
|
|
|
|
closable: closable,
|
2019-09-06 09:20:45 +08:00
|
|
|
type: 'message',
|
2019-09-06 09:34:52 +08:00
|
|
|
msgType: type,
|
2019-09-06 09:20:45 +08:00
|
|
|
background: background
|
2019-08-27 09:42:40 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
// 用于手动消除
|
|
|
|
return (function () {
|
|
|
|
let target = name++;
|
|
|
|
|
|
|
|
return function () {
|
|
|
|
instance.remove(`${prefixKey}${target}`);
|
|
|
|
};
|
|
|
|
})();
|
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Message',
|
|
|
|
|
|
|
|
info (options) {
|
|
|
|
return this.message('info', options);
|
|
|
|
},
|
|
|
|
success (options) {
|
|
|
|
return this.message('success', options);
|
|
|
|
},
|
|
|
|
warning (options) {
|
|
|
|
return this.message('warning', options);
|
|
|
|
},
|
|
|
|
error (options) {
|
|
|
|
return this.message('error', options);
|
|
|
|
},
|
|
|
|
loading (options) {
|
|
|
|
return this.message('loading', options);
|
|
|
|
},
|
|
|
|
message(type, options){
|
|
|
|
if (typeof options === 'string') {
|
|
|
|
options = {
|
|
|
|
content: options
|
|
|
|
};
|
|
|
|
}
|
2019-09-06 09:20:45 +08:00
|
|
|
return notice(options.content, options.duration, type, options.onClose, options.closable, options.render, options.background);
|
2019-08-27 09:42:40 +08:00
|
|
|
},
|
|
|
|
config (options) {
|
|
|
|
if (options.top || options.top === 0) {
|
|
|
|
defaults.top = options.top;
|
|
|
|
}
|
|
|
|
if (options.duration || options.duration === 0) {
|
|
|
|
defaults.duration = options.duration;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
destroy () {
|
|
|
|
let instance = getMessageInstance();
|
|
|
|
messageInstance = null;
|
|
|
|
instance.destroy('ivu-message');
|
|
|
|
}
|
|
|
|
};
|