-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.ts
102 lines (91 loc) · 2.38 KB
/
index.ts
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
import Vue, { PluginFunction } from 'vue'
import JSEventManagment from 'js-simple-events'
class EventManagment extends JSEventManagment {
$emit = super.emit
$on = super.on
$off = super.off
$once = super.once
}
function bindEvents (context, obj: any, from: string, to: string): void {
let evts = obj[from];
if (evts) {
obj[to] = {}
for (var k in evts) {
obj[to][k] = ~evts[k].name.indexOf('bound ') ? evts[k] : evts[k].bind(context)
}
}
}
function addEventListener(event: string, handler: Function, isOnce: boolean = false): void {
Vue.prototype.$events[isOnce ? 'once' : 'on'](event, handler)
}
function addEventListeners(obj: { [key: string]: Function }, isOnce: boolean = false): void {
if (obj) {
for (var k in obj) {
addEventListener(k, obj[k], isOnce)
}
}
}
function removeEventListeners(obj: { [key: string]: Function }) {
if (obj) {
for (var k in obj) {
Vue.prototype.$events.off(k, obj[k])
}
}
}
const eventsPlugins: PluginFunction<any> = (Vue) => {
const eventManagement = new EventManagment();
Object.defineProperties(Vue.prototype, {
'$events': {
get() {
return eventManagement;
}
}
});
Vue.mixin({
beforeCreate() {
let $this: any = this;
let options = $this.$options;
bindEvents(this, options, 'on', '$setEventsOn')
bindEvents(this, options, 'once', '$setEventsOnce')
},
created() {
let $this: any = this;
addEventListeners($this.$options.$setEventsOn, false)
addEventListeners($this.$options.$setEventsOnce, true)
},
beforeDestroy() {
let $this: any = this;
removeEventListeners($this.$options.$setEventsOn)
removeEventListeners($this.$options.$setEventsOnce)
}
})
}
// Reflect defined shorthands in the Vue types
declare module 'vue/types/vue' {
interface Vue {
$events: EventManagment
}
interface ThisTypedComponentOptionsWithArrayProps<V, Data, Methods, Computed, PropNames> {
on?: {
[key: string]: Function
}
}
}
declare module 'vue/types/options' {
interface ComponentOptions<
V extends Vue,
Data=DefaultData<V>,
Methods=DefaultMethods<V>,
Computed=DefaultComputed,
PropsDef=PropsDefinition<DefaultProps>,
Props=DefaultProps
> {
on?: {
[key: string]: Function
}
once?: {
[key: string]: Function
}
}
}
export default eventsPlugins;