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
| class Event { constructor () { this._cache = {} }
on(event, callback) { let fns = (this._cache[event] = this._cache[event] || []) if(fns.indexOf(callback) === -1) { fns.push(callback) } return this }
off (event, callback) { let fns = this._cache[event] if(Array.isArray(fns)) { if(callback) { let index = fns.indexOf(callback) if(index !== -1) { fns.splice(index, 1) } } else { fns.length = 0 } } return this } emit(event, ...args) { let fns = this._cache[event] if(Array.isArray(fns)) { fns.forEach((fn) => { fn(...args) }) } return this }
once(event, callback) { let onceCallback = () => { callback.call(this); this.off(event, onceCallback); }; this.on(event, onceCallback); return this; } }
|