-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path09.js
71 lines (60 loc) · 1.28 KB
/
09.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
class Vue {
#event
get event() {
return this.#event;
}
constructor() {
this.#event = {}
}
$on(event, fn) {
if (Array.isArray(event)) {
event.forEach(item => this.$on(item, fn))
} else {
(this.#event[event] || (this.#event[event] = [])).push(fn)
}
return this
}
$once(event, fn) {
const self = this
const on = function () {
self.$off(event, on)
this.fn = fn
fn.apply(this, arguments);
}
this.$on(event, on)
return this
}
$off(event, fn) {
if (!arguments.length) {
this.#event = {}
return this
}
if (Array.isArray(event)) {
event.forEach(item => this.$off(item, fn))
return this
}
const callbacks = this.#event[event]
if (!callbacks) {
return this
}
if (!fn) {
this.#event[event] = null
return this
}
let i = callbacks.length
while (i--) {
if (callbacks[i] === fn || callbacks[i] === fn.fn) {
callbacks.splice(i, 1)
break
}
}
return this
}
$emit(event) {
let callbacks = this.#event[event]
if (callbacks) {
const args = [].slice.call(arguments, 1)
callbacks.forEach(cb => args ? cb.apply(this, args) : cb.call(this))
}
}
}