eventHandler.js 5.94 KB
Newer Older
Johann-S's avatar
Johann-S committed
1
2
/**
 * --------------------------------------------------------------------------
Johann-S's avatar
Johann-S committed
3
 * Bootstrap (v4.0.0-beta): 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
11
12
13
14
15
16
17
18
19
20
21
// defaultPrevented is broken in IE.
// https://connect.microsoft.com/IE/feedback/details/790389/event-defaultprevented-returns-false-after-preventdefault-was-called
const workingDefaultPrevented = (() => {
  const e = document.createEvent('CustomEvent')
  e.initEvent('Bootstrap', true, true)
  e.preventDefault()
  return e.defaultPrevented
})()

// CustomEvent polyfill for IE (see: https://mzl.la/2v76Zvn)
if (typeof window.CustomEvent !== 'function') {
  window.CustomEvent = (event, params) => {
    params = params || {
      bubbles: false,
22
23
      cancelable: false,
      detail: null
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
    }
    const evt = document.createEvent('CustomEvent')
    evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail)
    if (!workingDefaultPrevented) {
      const origPreventDefault = Event.prototype.preventDefault
      evt.preventDefault = () => {
        if (!evt.cancelable) {
          return
        }

        origPreventDefault.call(evt)
        Object.defineProperty(evt, 'defaultPrevented', {
          get() {
            return true
          },
          configurable: true
        })
      }
    }
    return evt
  }

  window.CustomEvent.prototype = window.Event.prototype
}

// Event constructor shim
if (!window.Event || typeof window.Event !== 'function') {
  const origEvent = window.Event
  window.Event = (inType, params) => {
    params = params || {}
    const e = document.createEvent('Event')
    e.initEvent(inType, Boolean(params.bubbles), Boolean(params.cancelable))
    return e
  }
  window.Event.prototype = origEvent.prototype
}

Johann-S's avatar
Johann-S committed
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
const namespaceRegex = /[^.]*(?=\..*)\.|.*/
const stripNameRegex = /\..*/

// Events storage
const eventRegistry = {}
let uidEvent = 1

function getUidEvent(element, uid) {
  return element.uidEvent = uid && `${uid}::${uidEvent++}` || element.uidEvent || uidEvent++
}

function getEvent(element) {
  const uid = getUidEvent(element)
  return eventRegistry[uid] = eventRegistry[uid] || {}
}

77
78
79
80
81
82
83
84
85
86
87
88
const nativeEvents = [
  'click', 'dblclick', 'mouseup', 'mousedown', 'contextmenu',
  'mousewheel', 'DOMMouseScroll',
  'mouseover', 'mouseout', 'mousemove', 'selectstart', 'selectend',
  'keydown', 'keypress', 'keyup',
  'orientationchange',
  'touchstart', 'touchmove', 'touchend', 'touchcancel',
  'gesturestart', 'gesturechange', 'gestureend',
  'focus', 'blur', 'change', 'reset', 'select', 'submit',
  'load', 'unload', 'beforeunload', 'resize', 'move', 'DOMContentLoaded', 'readystatechange',
  'error', 'abort', 'scroll'
]
Johann-S's avatar
Johann-S committed
89
90
91
92
93
94
95

function bootstrapHandler(element, fn) {
  return function (event) {
    return fn.apply(element, [event])
  }
}

96
97
98
99
100
101
102
103
104
105
function bootstrapDelegationHandler(selector, fn) {
  return function (event) {
    const domElements = document.querySelectorAll(selector)
    for (let target = event.target; target && target !== this; target = target.parentNode) {
      for (let i = domElements.length; i--;) {
        if (domElements[i] === target) {
          return fn.apply(target, [event])
        }
      }
    }
106
107
    // To please ESLint
    return null
108
109
110
  }
}

Johann-S's avatar
Johann-S committed
111
const EventHandler = {
112
  on(element, originalTypeEvent, handler, delegationFn) {
Johann-S's avatar
Johann-S committed
113
114
115
116
117
    if (typeof originalTypeEvent !== 'string' ||
        (typeof element === 'undefined' || element === null)) {
      return
    }

118
    const delegation = typeof handler === 'string'
Johann-S's avatar
Johann-S committed
119
120
121
122
123
124
125
126
127
128
    // allow to get the native events from namespaced events ('click.bs.button' --> 'click')
    let typeEvent = originalTypeEvent.replace(stripNameRegex, '')
    const isNative = nativeEvents.indexOf(typeEvent) > -1
    if (!isNative) {
      typeEvent = originalTypeEvent
    }
    const events    = getEvent(element)
    const handlers  = events[typeEvent] || (events[typeEvent] = {})
    const uid = getUidEvent(handler, originalTypeEvent.replace(namespaceRegex, ''))
    if (handlers[uid]) {
Johann-S's avatar
Johann-S committed
129
130
      return
    }
Johann-S's avatar
Johann-S committed
131

132
    const fn = !delegation ? bootstrapHandler(element, handler) : bootstrapDelegationHandler(handler, delegationFn)
Johann-S's avatar
Johann-S committed
133
134
135
    handlers[uid] = fn
    handler.uidEvent = uid
    element.addEventListener(typeEvent, fn, false)
Johann-S's avatar
Johann-S committed
136
137
138
  },

  one(element, event, handler) {
Johann-S's avatar
Johann-S committed
139
140
141
142
143
144
    function complete(e) {
      const typeEvent = event.replace(stripNameRegex, '')
      const events = getEvent(element)
      if (!events || !events[typeEvent]) {
        return
      }
145
146
      handler.apply(element, [e])
      EventHandler.off(element, event, complete)
Johann-S's avatar
Johann-S committed
147
    }
Johann-S's avatar
Johann-S committed
148
    EventHandler.on(element, event, complete)
Johann-S's avatar
Johann-S committed
149
150
  },

Johann-S's avatar
Johann-S committed
151
152
153
154
  off(element, originalTypeEvent, handler) {
    if (typeof originalTypeEvent !== 'string' ||
       (typeof element === 'undefined' || element === null)) {
      return
Johann-S's avatar
Johann-S committed
155
156
    }

Johann-S's avatar
Johann-S committed
157
158
159
160
161
    const typeEvent = originalTypeEvent.replace(stripNameRegex, '')
    const events = getEvent(element)
    if (!events || !events[typeEvent]) {
      return
    }
162

Johann-S's avatar
Johann-S committed
163
164
165
166
167
    const uidEvent = handler.uidEvent
    const fn = events[typeEvent][uidEvent]
    element.removeEventListener(typeEvent, fn, false)
    delete events[typeEvent][uidEvent]
  },
Johann-S's avatar
Johann-S committed
168

169
  trigger(element, event, args) {
Johann-S's avatar
Johann-S committed
170
    if (typeof event !== 'string' ||
171
        (typeof element === 'undefined' || element === null)) {
Johann-S's avatar
Johann-S committed
172
173
174
175
176
177
178
      return null
    }
    const typeEvent = event.replace(stripNameRegex, '')
    const isNative = nativeEvents.indexOf(typeEvent) > -1
    let returnedEvent = null
    if (isNative) {
      const evt = document.createEvent('HTMLEvents')
179
      evt.initEvent(typeEvent, true, true, typeof args !== 'undefined' ? args : {})
Johann-S's avatar
Johann-S committed
180
181
182
183
184
      element.dispatchEvent(evt)
      returnedEvent = evt
    } else {
      const eventToDispatch = new CustomEvent(event, {
        bubbles: true,
185
186
        cancelable: true,
        detail: typeof args !== 'undefined' ? args : {}
Johann-S's avatar
Johann-S committed
187
188
189
190
191
      })
      element.dispatchEvent(eventToDispatch)
      returnedEvent = eventToDispatch
    }
    return returnedEvent
Johann-S's avatar
Johann-S committed
192
193
194
  }
}

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