-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
95 lines (79 loc) · 2.52 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
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
'use strict'
var isFunction = (function() {
function typeOfFn(fn) {
return typeof fn === 'function'
}
function objectFn(fn) {
return Object.prototype.toString.call(fn) === '[object Function]'
}
// typeof is fastest way to check if a function but older IEs don't support it for that and Chrome had a bug
if (typeof typeOfFn === 'function' && typeof /./ !== 'function') {
return typeOfFn
}
return objectFn
})()
var cache = []
function getCallbackHandlers(callback) {
// flush cache if we have too many items
if (cache.length > 10000) {
if (typeof console !== 'undefined' && 'log' in console) {
console.log('tapOrClick cache flushed after 10000 items; check your renders if this happens often')
}
cache.length = 0
}
var handler = cache.filter(function(handler) {
return handler.callback === callback
})[0]
if (!handler) {
var state = {}
handler = {
callback: callback,
touchStart: function(event) {
if (event.defaultPrevented) {
return
}
clearTimeout(state.touchTimeout)
state.touchClick = true
callback(event)
},
touchEnd: function(event) {
if (state.touchClick) {
state.touchTimeout = setTimeout(function() {
state.touchClick = false
state.touchTimeout = null
}, 300)
}
},
click: function(event) {
if (event.defaultPrevented || state.touchClick) {
return
}
callback(event)
}
}
cache.push(handler)
}
return handler
}
// event handlers are unnecessary server side
if (typeof window === 'undefined') {
module.exports = function(callback, props) {
if (props == null) {
props = {}
}
return props
}
} else {
module.exports = function tapOrClick(callback, props) {
if (props == null) {
props = {}
} else if (typeof props !== 'object') {
throw new Error('Optional second argument to tapOrClick must be a mutable object')
}
var handlers = getCallbackHandlers(callback)
props.onTouchStart = handlers.touchStart
props.onTouchEnd = handlers.touchEnd
props.onClick = handlers.click
return props
}
}