-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.js
256 lines (212 loc) · 4.29 KB
/
index.js
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
/**
* Module dependencies.
*/
var dom = require('dom');
var Emitter = require('emitter');
var onBody = require('on-body');
/**
* Expose `notify`.
*/
exports = module.exports = notify;
/**
* Notification list.
*/
var list = dom('<ul id="notifications">');
/**
* Append to body when it exists.
*/
onBody(function (body) {
list.appendTo(body);
});
/**
* Return a new `Notification` with the given
* (optional) `title` and `msg`.
*
* @param {String} title or msg
* @param {String} msg
* @return {Dialog}
* @api public
*/
function notify(title, msg){
switch (arguments.length) {
case 2:
return new Notification({ title: title, message: msg })
.show()
.hide(4000);
case 1:
return new Notification({ message: title })
.show()
.hide(4000);
}
}
/**
* Construct a notification function for `type`.
*
* @param {String} type
* @return {Function}
* @api private
*/
function type(type) {
return function(title, msg){
return notify.apply(this, arguments)
.type(type);
};
}
/**
* Notification methods.
*/
exports.info = notify;
exports.warn = type('warn');
exports.error = type('error');
/**
* Expose constructor.
*/
exports.Notification = Notification;
/**
* Initialize a new `Notification`.
*
* Options:
*
* - `title` dialog title
* - `message` a message to display
*
* @param {Object} options
* @api public
*/
function Notification(options) {
Emitter.call(this);
options = options || {};
this.el = dom(require('./template'));
this.render(options);
if (options.classname) this.el.addClass(options.classname);
if (Notification.effect) this.effect(Notification.effect);
}
/**
* Inherit from `Emitter.prototype`.
*/
Notification.prototype = new Emitter;
/**
* Render with the given `options`.
*
* @param {Object} options
* @api public
*/
Notification.prototype.render = function(options){
var el = this.el
, title = options.title
, msg = options.message
, self = this;
el.find('.close').on('click', function(){
self.emit('close');
self.hide();
return false;
});
el.on('click', function(e){
e.preventDefault();
self.emit('click', e);
});
el.find('.title').text(title);
if (!title) el.find('.title').remove();
// message
if ('string' == typeof msg) {
el.find('p').text(msg);
} else if (msg) {
el.find('p').replace(msg.el || msg);
}
setTimeout(function(){
el.removeClass('hide');
}, 0);
};
/**
* Enable the dialog close link.
*
* @return {Notification} for chaining
* @api public
*/
Notification.prototype.closable = function(){
this.el.addClass('closable');
return this;
};
/**
* Set the effect to `type`.
*
* @param {String} type
* @return {Notification} for chaining
* @api public
*/
Notification.prototype.effect = function(type){
this._effect = type;
this.el.addClass(type);
return this;
};
/**
* Show the notification.
*
* @return {Notification} for chaining
* @api public
*/
Notification.prototype.show = function(){
this.el.appendTo(list);
return this;
};
/**
* Set the notification `type`.
*
* @param {String} type
* @return {Notification} for chaining
* @api public
*/
Notification.prototype.type = function(type){
this._type = type;
this.el.addClass(type);
return this;
};
/**
* Make it stick (clear hide timer), and make it closable.
*
* @return {Notification} for chaining
* @api public
*/
Notification.prototype.sticky = function(){
return this.hide(0).closable();
};
/**
* Hide the dialog with optional delay of `ms`,
* otherwise the notification is removed immediately.
*
* @return {Number} ms
* @return {Notification} for chaining
* @api public
*/
Notification.prototype.hide = function(ms){
var self = this;
// duration
if ('number' == typeof ms) {
clearTimeout(this.timer);
if (!ms) return this;
this.timer = setTimeout(function(){
self.hide();
}, ms);
return this;
}
// hide / remove
this.el.addClass('hide');
if (this._effect) {
setTimeout(function(self){
self.remove();
}, 500, this);
} else {
self.remove();
}
return this;
};
/**
* Hide the notification without potential animation.
*
* @return {Dialog} for chaining
* @api public
*/
Notification.prototype.remove = function(){
this.el.remove();
return this;
};