-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.js
284 lines (264 loc) · 7.38 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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
/*!
* dush <https://github.com/tunnckoCore/dush>
*
* Copyright (c) Charlike Mike Reagent <@tunnckoCore> (https://i.am.charlike.online)
* Released under the MIT license.
*/
'use strict'
/**
* > A constructor function that returns an object
* with a few methods.
*
* See [JSBin Example](http://jsbin.com/mepemeluhi/edit?js,console).
*
* **Example**
*
* ```js
* const dush = require('dush')
* const emitter = dush()
*
* console.log(emitter._allEvents) // => {}
* console.log(emitter.on) // => Function
* console.log(emitter.once) // => Function
* console.log(emitter.off) // => Function
* console.log(emitter.emit) // => Function
* ```
*
* @name dush()
* @return {Object} methods
* @api public
*/
export default function dush () {
let _allEvents = Object.create(null)
const app = {
/**
* > An listeners map of all registered events
* and their listeners. A key/value store, where 1) value
* is an array of event listeners for the key and 2) key
* is the name of the event.
*
* See [JSBin Example](http://jsbin.com/fakajazafu/edit?js,console).
*
* **Example**
*
* ```js
* const emitter = dush()
*
* emitter.on('foo', () => {})
* emitter.on('foo', () => {})
* emitter.on('bar', () => {})
*
* console.log(emitter._allEvents)
* // => { foo: [Function, Function], bar: [Functon] }
*
* console.log(emitter._allEvents.foo.length) // => 2
* console.log(emitter._allEvents.bar.length) // => 1
* ```
*
* @name ._allEvents
* @type {Object} `_allEvents` a key/value store of all events and their listeners
* @api public
*/
_allEvents,
/**
* > Invokes `plugin` function immediately, which is passed
* with `app` instance. You can use it for adding more methods
* or properties to the instance. Useful if you want to make
* dush to work with DOM for example.
*
* **Example**
*
* ```js
* const app = dush()
*
* app.on('hi', (str) => {
* console.log(str) // => 'Hello World!!'
* })
*
* app.use((app) => {
* app.foo = 'bar'
* app.hello = (place) => app.emit('hi', `Hello ${place}!!`)
* })
*
* console.log(app.foo) // => 'bar'
* app.hello('World')
* ```
*
* @name .use
* @param {Function} `plugin` A function passed with `(app, options)` signature
* @param {Object} `options` optional, passed as second argument to `plugin` function
* @return {Object} self "app" for chaining
* @api public
*/
use (plugin, options) {
const ret = plugin(app, options)
return ret || app
},
/**
* > Add `handler` for `name` event.
*
* See [JSBin Example](http://jsbin.com/xeketuruto/edit?js,console).
*
* **Example**
*
* ```js
* const emitter = dush()
*
* emitter
* .on('hi', (place) => {
* console.log(`hello ${place}!`) // => 'hello world!'
* })
* .on('hi', (place) => {
* console.log(`hi ${place}, yeah!`) // => 'hi world, yeah!'
* })
*
* emitter.emit('hi', 'world')
* ```
*
* @name .on
* @param {String} `name` Type of event to listen for, or `'*'` for all events
* @param {Function} `handler` Function to call in response to given event
* @param {Boolean} `once` Make `handler` be called only once,
* the `.once` method use this internally
* @return {Object} self "app" for chaining
* @api public
*/
on (name, handler, once) {
let e = app._allEvents[name] || (app._allEvents[name] = [])
function func () {
app.off(name, func)
handler.apply(handler, arguments)
}
func.fn = handler
var fn = once ? func : handler
e.push(fn)
return app
},
/**
* > Add `handler` for `name` event that
* will be called only one time.
*
* See [JSBin Example](http://jsbin.com/teculorima/edit?js,console).
*
* **Example**
*
* ```js
* const emitter = dush()
* let called = 0
*
* emitter.once('foo', () => {
* console.log('called only once')
* called++
* })
*
* emitter
* .emit('foo', 111)
* .emit('foo', 222)
* .emit('foo', 333)
*
* console.log(called) // => 1
* ```
*
* @name .once
* @param {String} `name` Type of event to listen for, or `'*'` for all events
* @param {Function} `handler` Function to call in response to given event
* @return {Object} self "app" for chaining
* @api public
*/
once (name, handler) {
app.on(name, handler, true)
return app
},
/**
* > Remove `handler` for `name` event. If `handler` not
* passed will remove **all** listeners for that `name` event.
*
* See [JSBin Example](http://jsbin.com/nujucoquvi/3/edit?js,console).
*
* **Example**
*
* ```js
* const emitter = dush()
*
* const handler = () => {
* console.log('not called')
* }
*
* emitter.on('foo', handler)
* emitter.off('foo', handler)
*
* emitter.on('foo', (abc) => {
* console.log('called', abc) // => 'called 123'
* })
* emitter.emit('foo', 123)
*
* // or removing all listeners of `foo`
* emitter.off('foo')
* emitter.emit('foo')
* ```
*
* @name .off
* @param {String} `name` Type of event to listen for, or `'*'` for all events
* @param {Function} `handler` Function to call in response to given event
* @return {Object} self "app" for chaining
* @api public
*/
off (name, handler) {
if (handler && app._allEvents[name]) {
app._allEvents[name] = app._allEvents[name].filter(
(func) => func !== handler && func !== handler.fn
)
} else if (name) {
app._allEvents[name] = []
} else {
app._allEvents = Object.create(null)
}
return app
},
/**
* > Invoke all handlers for given `name` event.
* If present, `'*'` listeners are invoked too with `(type, ...rest)` signature,
* where the `type` argument is a string representing the name of the
* called event; and all of the rest arguments.
*
* See [JSBin Example](http://jsbin.com/muqujavolu/edit?js,console).
*
* **Example**
*
* ```js
* const emitter = dush()
*
* emitter.on('foo', (a, b, c) => {
* console.log(`${a}, ${b}, ${c}`) // => 1, 2, 3
* })
*
* emitter.on('*', (name, a, b, c) => {
* console.log(`name is: ${name}`)
* console.log(`rest args are: ${a}, ${b}, ${c}`)
* })
*
* emitter.emit('foo', 1, 2, 3)
* emitter.emit('bar', 555)
* ```
*
* @name .emit
* @param {String} `name` The name of the event to invoke
* @param {any} `args` Any number of arguments of any type of value, passed to each listener
* @return {Object} self "app" for chaining
* @api public
*/
emit (name) {
if (name !== '*') {
var args = [].slice.call(arguments)
;(app._allEvents[name] || []).map((handler) => {
handler.apply(handler, args.slice(1))
})
;(app._allEvents['*'] || []).map((handler) => {
handler.apply(handler, args)
})
}
return app
}
}
return app
}