eventHandler.js 8.74 KB
Newer Older
Johann-S's avatar
Johann-S committed
1
2
/**
 * --------------------------------------------------------------------------
XhmikosR's avatar
4.3.1.    
XhmikosR committed
3
 * Bootstrap (v4.3.1): dom/eventHandler.js
Johann-S's avatar
Johann-S committed
4
5
6
7
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

8
9
10
import {
  jQuery as $
} from '../util/index'
Johann-S's avatar
Johann-S committed
11
12
import Polyfill from './polyfill'

13
14
15
16
17
/**
 * ------------------------------------------------------------------------
 * Constants
 * ------------------------------------------------------------------------
 */
Johann-S's avatar
Johann-S committed
18

19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
const namespaceRegex = /[^.]*(?=\..*)\.|.*/
const stripNameRegex = /\..*/
const keyEventRegex  = /^key/
const stripUidRegex  = /::\d+$/
const eventRegistry  = {}   // Events storage
let uidEvent         = 1
const customEvents   = {
  mouseenter: 'mouseover',
  mouseleave: 'mouseout'
}
const nativeEvents   = [
  'click', 'dblclick', 'mouseup', 'mousedown', 'contextmenu',
  'mousewheel', 'DOMMouseScroll',
  'mouseover', 'mouseout', 'mousemove', 'selectstart', 'selectend',
  'keydown', 'keypress', 'keyup',
  'orientationchange',
  'touchstart', 'touchmove', 'touchend', 'touchcancel',
  'pointerdown', 'pointermove', 'pointerup', 'pointerleave', 'pointercancel',
  'gesturestart', 'gesturechange', 'gestureend',
  'focus', 'blur', 'change', 'reset', 'select', 'submit', 'focusin', 'focusout',
  'load', 'unload', 'beforeunload', 'resize', 'move', 'DOMContentLoaded', 'readystatechange',
  'error', 'abort', 'scroll'
]
42

43
44
45
46
47
/**
 * ------------------------------------------------------------------------
 * Private methods
 * ------------------------------------------------------------------------
 */
Johann-S's avatar
Johann-S committed
48

49
50
51
52
53
54
55
56
57
58
function getUidEvent(element, uid) {
  return uid && `${uid}::${uidEvent++}` || element.uidEvent || uidEvent++
}

function getEvent(element) {
  const uid = getUidEvent(element)
  element.uidEvent = uid

  return eventRegistry[uid] = eventRegistry[uid] || {}
}
59

60
61
62
63
function fixEvent(event, element) {
  // Add which for key events
  if (event.which === null && keyEventRegex.test(event.type)) {
    event.which = event.charCode !== null ? event.charCode : event.keyCode
Johann-S's avatar
Johann-S committed
64
65
  }

66
67
  event.delegateTarget = element
}
68

69
70
71
72
73
function bootstrapHandler(element, fn) {
  return function handler(event) {
    fixEvent(event, element)
    if (handler.oneOff) {
      EventHandler.off(element, event.type, fn)
Johann-S's avatar
Johann-S committed
74
    }
Johann-S's avatar
Johann-S committed
75

76
77
78
    return fn.apply(element, [event])
  }
}
79

80
81
82
function bootstrapDelegationHandler(element, selector, fn) {
  return function handler(event) {
    const domElements = element.querySelectorAll(selector)
Johann-S's avatar
Johann-S committed
83

84
85
86
87
    for (let target = event.target; target && target !== this; target = target.parentNode) {
      for (let i = domElements.length; i--;) {
        if (domElements[i] === target) {
          fixEvent(event, target)
Johann-S's avatar
Johann-S committed
88

89
90
          if (handler.oneOff) {
            EventHandler.off(element, event.type, fn)
Johann-S's avatar
Johann-S committed
91
          }
92
93

          return fn.apply(target, [event])
94
95
96
97
        }
      }
    }

98
99
100
101
    // To please ESLint
    return null
  }
}
102

103
function findHandler(events, handler, delegationSelector = null) {
Johann-S's avatar
Johann-S committed
104
  const uidList = Object.keys(events)
105

Johann-S's avatar
Johann-S committed
106
107
  for (let i = 0; i < uidList.length; i++) {
    const uid = uidList[i]
108
    const event = events[uid]
Johann-S's avatar
Johann-S committed
109

110
111
112
    if (event.originalHandler === handler && event.delegationSelector === delegationSelector) {
      return events[uid]
    }
113
114
  }

115
116
  return null
}
117

118
function normalizeParams(originalTypeEvent, handler, delegationFn) {
Johann-S's avatar
Johann-S committed
119
  const delegation = typeof handler === 'string'
120
  const originalHandler = delegation ? delegationFn : handler
121

122
123
124
  // allow to get the native events from namespaced events ('click.bs.button' --> 'click')
  let typeEvent = originalTypeEvent.replace(stripNameRegex, '')
  const custom = customEvents[typeEvent]
Johann-S's avatar
Johann-S committed
125

126
127
128
  if (custom) {
    typeEvent = custom
  }
129

130
  const isNative = nativeEvents.indexOf(typeEvent) > -1
Johann-S's avatar
Johann-S committed
131

132
133
  if (!isNative) {
    typeEvent = originalTypeEvent
134
135
  }

136
137
  return [delegation, originalHandler, typeEvent]
}
138

139
function addHandler(element, originalTypeEvent, handler, delegationFn, oneOff) {
XhmikosR's avatar
XhmikosR committed
140
  if (typeof originalTypeEvent !== 'string' || !element) {
141
142
    return
  }
143

144
145
146
147
  if (!handler) {
    handler = delegationFn
    delegationFn = null
  }
148

149
150
151
152
  const [delegation, originalHandler, typeEvent] = normalizeParams(originalTypeEvent, handler, delegationFn)
  const events     = getEvent(element)
  const handlers   = events[typeEvent] || (events[typeEvent] = {})
  const previousFn = findHandler(handlers, originalHandler, delegation ? handler : null)
153

154
155
  if (previousFn) {
    previousFn.oneOff = previousFn.oneOff && oneOff
Johann-S's avatar
Johann-S committed
156

157
158
    return
  }
159

160
161
  const uid = getUidEvent(originalHandler, originalTypeEvent.replace(namespaceRegex, ''))
  const fn  = !delegation ? bootstrapHandler(element, handler) : bootstrapDelegationHandler(element, handler, delegationFn)
162

163
164
165
166
167
  fn.delegationSelector = delegation ? handler : null
  fn.originalHandler = originalHandler
  fn.oneOff = oneOff
  fn.uidEvent = uid
  handlers[uid] = fn
168

169
170
  element.addEventListener(typeEvent, fn, delegation)
}
171

172
173
function removeHandler(element, events, typeEvent, handler, delegationSelector) {
  const fn = findHandler(events[typeEvent], handler, delegationSelector)
Johann-S's avatar
Johann-S committed
174

175
176
  if (fn === null) {
    return
Johann-S's avatar
Johann-S committed
177
  }
178

179
180
181
  element.removeEventListener(typeEvent, fn, Boolean(delegationSelector))
  delete events[typeEvent][fn.uidEvent]
}
182

183
184
function removeNamespacedHandlers(element, events, typeEvent, namespace) {
  const storeElementEvent = events[typeEvent] || {}
185

Johann-S's avatar
Johann-S committed
186
187
188
189
190
191
192
193
  Object.keys(storeElementEvent)
    .forEach((handlerKey) => {
      if (handlerKey.indexOf(namespace) > -1) {
        const event = storeElementEvent[handlerKey]

        removeHandler(element, events, typeEvent, event.originalHandler, event.delegationSelector)
      }
    })
194
}
Johann-S's avatar
Johann-S committed
195

196
197
198
199
const EventHandler = {
  on(element, event, handler, delegationFn) {
    addHandler(element, event, handler, delegationFn, false)
  },
Johann-S's avatar
Johann-S committed
200

201
202
203
  one(element, event, handler, delegationFn) {
    addHandler(element, event, handler, delegationFn, true)
  },
Johann-S's avatar
Johann-S committed
204

205
  off(element, originalTypeEvent, handler, delegationFn) {
XhmikosR's avatar
XhmikosR committed
206
    if (typeof originalTypeEvent !== 'string' || !element) {
207
208
      return
    }
209

210
211
212
    const [delegation, originalHandler, typeEvent] = normalizeParams(originalTypeEvent, handler, delegationFn)
    const inNamespace = typeEvent !== originalTypeEvent
    const events = getEvent(element)
Johann-S's avatar
Johann-S committed
213
    const isNamespace = originalTypeEvent.charAt(0) === '.'
214

215
216
217
    if (typeof originalHandler !== 'undefined') {
      // Simplest case: handler is passed, remove that listener ONLY.
      if (!events || !events[typeEvent]) {
218
219
220
        return
      }

221
222
223
      removeHandler(element, events, typeEvent, originalHandler, delegation ? handler : null)
      return
    }
224

225
    if (isNamespace) {
Johann-S's avatar
Johann-S committed
226
227
228
229
      Object.keys(events)
        .forEach((elementEvent) => {
          removeNamespacedHandlers(element, events, elementEvent, originalTypeEvent.substr(1))
        })
230
    }
Johann-S's avatar
Johann-S committed
231

232
    const storeElementEvent = events[typeEvent] || {}
Johann-S's avatar
Johann-S committed
233
234
235
    Object.keys(storeElementEvent)
      .forEach((keyHandlers) => {
        const handlerKey = keyHandlers.replace(stripUidRegex, '')
Johann-S's avatar
Johann-S committed
236

Johann-S's avatar
Johann-S committed
237
238
239
240
241
242
        if (!inNamespace || originalTypeEvent.indexOf(handlerKey) > -1) {
          const event = storeElementEvent[keyHandlers]

          removeHandler(element, events, typeEvent, event.originalHandler, event.delegationSelector)
        }
      })
243
  },
Johann-S's avatar
Johann-S committed
244

245
  trigger(element, event, args) {
XhmikosR's avatar
XhmikosR committed
246
    if (typeof event !== 'string' || !element) {
247
248
      return null
    }
249

250
251
252
    const typeEvent   = event.replace(stripNameRegex, '')
    const inNamespace = event !== typeEvent
    const isNative    = nativeEvents.indexOf(typeEvent) > -1
253

Johann-S's avatar
Johann-S committed
254
    let jQueryEvent
255
256
257
    let bubbles = true
    let nativeDispatch = true
    let defaultPrevented = false
Johann-S's avatar
Johann-S committed
258
    let evt = null
259

260
261
    if (inNamespace && typeof $ !== 'undefined') {
      jQueryEvent = $.Event(event, args)
Johann-S's avatar
Johann-S committed
262

263
264
265
266
267
      $(element).trigger(jQueryEvent)
      bubbles = !jQueryEvent.isPropagationStopped()
      nativeDispatch = !jQueryEvent.isImmediatePropagationStopped()
      defaultPrevented = jQueryEvent.isDefaultPrevented()
    }
Johann-S's avatar
Johann-S committed
268

269
270
271
272
273
274
275
276
277
    if (isNative) {
      evt = document.createEvent('HTMLEvents')
      evt.initEvent(typeEvent, bubbles, true)
    } else {
      evt = new CustomEvent(event, {
        bubbles,
        cancelable: true
      })
    }
278

279
280
281
282
283
284
285
286
    // merge custom informations in our event
    if (typeof args !== 'undefined') {
      Object.keys(args)
        .forEach((key) => {
          Object.defineProperty(evt, key, {
            get() {
              return args[key]
            }
Johann-S's avatar
Johann-S committed
287
          })
288
289
        })
    }
290

291
292
    if (defaultPrevented) {
      evt.preventDefault()
293

294
295
296
297
      if (!Polyfill.defaultPreventedPreservedOnDispatch) {
        Object.defineProperty(evt, 'defaultPrevented', {
          get: () => true
        })
Johann-S's avatar
Johann-S committed
298
      }
299
300
301
302
303
    }

    if (nativeDispatch) {
      element.dispatchEvent(evt)
    }
304

305
306
    if (evt.defaultPrevented && typeof jQueryEvent !== 'undefined') {
      jQueryEvent.preventDefault()
307
    }
308
309

    return evt
Johann-S's avatar
Johann-S committed
310
  }
311
}
Johann-S's avatar
Johann-S committed
312

Johann-S's avatar
Johann-S committed
313
export default EventHandler