eventHandler.js 8.75 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)
 * --------------------------------------------------------------------------
 */

Johann-S's avatar
Johann-S committed
8
9
10
import Polyfill from './polyfill'
import Util from '../util'

11
12
13
14
15
/**
 * ------------------------------------------------------------------------
 * Constants
 * ------------------------------------------------------------------------
 */
Johann-S's avatar
Johann-S committed
16

17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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'
]
40

41
42
43
44
45
/**
 * ------------------------------------------------------------------------
 * Private methods
 * ------------------------------------------------------------------------
 */
Johann-S's avatar
Johann-S committed
46

47
48
49
50
51
52
53
54
55
56
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] || {}
}
57

58
59
60
61
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
62
63
  }

64
65
  event.delegateTarget = element
}
66

67
68
69
70
71
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
72
    }
Johann-S's avatar
Johann-S committed
73

74
75
76
    return fn.apply(element, [event])
  }
}
77

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

82
83
84
85
    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
86

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

          return fn.apply(target, [event])
92
93
94
95
        }
      }
    }

96
97
98
99
    // To please ESLint
    return null
  }
}
100

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

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

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

113
114
  return null
}
115

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

120
121
122
  // 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
123

124
125
126
  if (custom) {
    typeEvent = custom
  }
127

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

130
131
  if (!isNative) {
    typeEvent = originalTypeEvent
132
133
  }

134
135
  return [delegation, originalHandler, typeEvent]
}
136

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

142
143
144
145
  if (!handler) {
    handler = delegationFn
    delegationFn = null
  }
146

147
148
149
150
  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)
151

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

155
156
    return
  }
157

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

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

167
168
  element.addEventListener(typeEvent, fn, delegation)
}
169

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

248
249
250
251
    const typeEvent   = event.replace(stripNameRegex, '')
    const inNamespace = event !== typeEvent
    const isNative    = nativeEvents.indexOf(typeEvent) > -1
    const $ = Util.jQuery
252

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

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

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

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

278
279
280
281
282
283
284
285
    // 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
286
          })
287
288
        })
    }
289

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

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

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

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

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

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