-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
39 lines (39 loc) · 1.13 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
export function initialize(method) {
return {
bind(el, binding) {
const { ...trackEvent } = binding.value;
if (binding.modifiers.blur) {
el.onblur = function(e) {
trackEvent.type = "blur";
trackEvent.value =
e.target && e.target.value ? e.target.value : undefined;
method(trackEvent);
};
}
if (binding.modifiers.change) {
el.onchange = function(e) {
trackEvent.type = "change";
trackEvent.value =
e.target && e.target.value ? e.target.value : undefined;
method(trackEvent);
};
}
if (binding.modifiers.click) {
el.onclick = function(e) {
trackEvent.type = "click";
trackEvent.value =
e.target && e.target.value ? e.target.value : undefined;
method(trackEvent);
};
}
if (binding.modifiers.focus) {
el.onfocus = function(e) {
trackEvent.type = "focus";
trackEvent.value =
e.target && e.target.value ? e.target.value : undefined;
method(trackEvent);
};
}
}
};
}