-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtap.js
75 lines (63 loc) · 2.31 KB
/
tap.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
/**
* Simple directive for mocking tap event
*/
import createEvent from './_create-event'
export default {
name: 'tap',
bind (el, { value, modifiers }) {
const threshold = window.innerWidth / 10
let startPoint
el.addEventListener('touchstart', el._tap_touchstart = e => {
startPoint = null
// 仅允许单点触摸
if (e.touches && e.touches.length === 1) {
// fix e.touches bug in iOS 8.1.3:
// touchmove 与 touchstart 的 e.touches[0] 是同一个对象
startPoint = {
pageX: e.touches[0].pageX,
pageY: e.touches[0].pageY
}
el.addEventListener('touchmove', el._tap_touchmove = e => {
if (startPoint) {
if (Math.pow(e.touches[0].pageX - startPoint.pageX, 2) + Math.pow(e.touches[0].pageY - startPoint.pageY, 2) > threshold * threshold) {
startPoint = null
}
}
})
el.addEventListener('touchend', el._tap_touchend = e => {
el.removeEventListener('touchmove', el._tap_touchmove)
el.removeEventListener('touchcancel', el._tap_touchcancel)
el.removeEventListener('touchend', el._tap_touchend)
if (startPoint) {
startPoint = null
// dispatch a tap event
const tapEvent = createEvent('tap', null, { originalEvent: e })
if (modifiers.delay) {
// useful for hiding el after tap that has a link inside
// see: components/navibar.vue
setTimeout(() => {
el.dispatchEvent(tapEvent)
}, value || 300)
} else {
el.dispatchEvent(tapEvent)
}
}
})
el.addEventListener('touchcancel', el._tap_touchcancel = e => {
el.removeEventListener('touchmove', el._tap_touchmove)
el.removeEventListener('touchcancel', el._tap_touchcancel)
el.removeEventListener('touchend', el._tap_touchend)
if (startPoint) {
startPoint = null
}
})
}
})
},
unbind (el) {
el.removeEventListener('touchstart', el._tap_touchstart)
el.removeEventListener('touchmove', el._tap_touchmove)
el.removeEventListener('touchcancel', el._tap_touchcancel)
el.removeEventListener('touchend', el._tap_touchend)
}
}