index.js
3.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
import Notification from './base';
const prefixCls = 'blk-message';
const iconPrefixCls = 'icon';
const prefixKey = 'blk_message_key_';
let defaultDuration = 1.5;
let top;
let messageInstance;
let name = 1;
const iconTypes = {
info: 'default-tip',
success: 'success-tip',
warning: 'default-tip',
error: 'error-tip',
loading: 'load-c'
};
function getMessageInstance() {
messageInstance = messageInstance || Notification.newInstance({
prefixCls: prefixCls,
styles: {
top: `${top}px`
}
});
return messageInstance;
}
function notice(content = '', duration = defaultDuration, type, onClose = function() { }, closable = false) {
// const iconType = iconTypes[type];
// if loading
// const loadCls = type === 'loading' ? ' blk-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>
// `,
content: `
<div class="${prefixCls}-custom-content ${prefixCls}-${type}">
<span>${content}</span>
</div>
`,
onClose: onClose,
closable: closable,
type: 'message'
});
// 用于手动消除
return ((function() {
let target = name++;
return function() {
instance.remove(`${prefixKey}${target}`);
};
})());
}
export default {
name: 'Message',
info(options) {
const type = typeof options;
if (type === 'string') {
options = {
content: options
};
}
return notice(options.content, options.duration, 'info', options.onClose, options.closable);
},
success(options) {
const type = typeof options;
if (type === 'string') {
options = {
content: options
};
}
return notice(options.content, options.duration, 'success', options.onClose, options.closable);
},
warning(options) {
const type = typeof options;
if (type === 'string') {
options = {
content: options
};
}
return notice(options.content, options.duration, 'warning', options.onClose, options.closable);
},
error(options) {
const type = typeof options;
if (type === 'string') {
options = {
content: options
};
}
return notice(options.content, options.duration, 'error', options.onClose, options.closable);
},
loading(options) {
const type = typeof options;
if (type === 'string') {
options = {
content: options
};
}
return notice(options.content, options.duration, 'loading', options.onClose, options.closable);
},
config(options) {
if (options.top) {
top = options.top;
}
if (options.duration) {
defaultDuration = options.duration;
}
},
destroy() {
let instance = getMessageInstance();
messageInstance = null;
instance.destroy('blk-message');
}
};