dropdown.js 13.5 KB
Newer Older
1
2
import $ from 'jquery'
import Popper from 'popper.js'
fat's avatar
fat committed
3
4
5
6
import Util from './util'

/**
 * --------------------------------------------------------------------------
Mark Otto's avatar
Mark Otto committed
7
 * Bootstrap (v4.1.3): dropdown.js
fat's avatar
fat committed
8
9
10
11
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

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

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
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
const NAME                     = 'dropdown'
const VERSION                  = '4.1.3'
const DATA_KEY                 = 'bs.dropdown'
const EVENT_KEY                = `.${DATA_KEY}`
const DATA_API_KEY             = '.data-api'
const JQUERY_NO_CONFLICT       = $.fn[NAME]
const ESCAPE_KEYCODE           = 27 // KeyboardEvent.which value for Escape (Esc) key
const SPACE_KEYCODE            = 32 // KeyboardEvent.which value for space key
const TAB_KEYCODE              = 9 // KeyboardEvent.which value for tab key
const ARROW_UP_KEYCODE         = 38 // KeyboardEvent.which value for up arrow key
const ARROW_DOWN_KEYCODE       = 40 // KeyboardEvent.which value for down arrow key
const RIGHT_MOUSE_BUTTON_WHICH = 3 // MouseEvent.which value for the right button (assuming a right-handed mouse)
const REGEXP_KEYDOWN           = new RegExp(`${ARROW_UP_KEYCODE}|${ARROW_DOWN_KEYCODE}|${ESCAPE_KEYCODE}`)

const Event = {
  HIDE             : `hide${EVENT_KEY}`,
  HIDDEN           : `hidden${EVENT_KEY}`,
  SHOW             : `show${EVENT_KEY}`,
  SHOWN            : `shown${EVENT_KEY}`,
  CLICK            : `click${EVENT_KEY}`,
  CLICK_DATA_API   : `click${EVENT_KEY}${DATA_API_KEY}`,
  KEYDOWN_DATA_API : `keydown${EVENT_KEY}${DATA_API_KEY}`,
  KEYUP_DATA_API   : `keyup${EVENT_KEY}${DATA_API_KEY}`
}

const ClassName = {
  DISABLED  : 'disabled',
  SHOW      : 'show',
  DROPUP    : 'dropup',
  DROPRIGHT : 'dropright',
  DROPLEFT  : 'dropleft',
  MENURIGHT : 'dropdown-menu-right',
  MENULEFT  : 'dropdown-menu-left',
  POSITION_STATIC : 'position-static'
}

const Selector = {
  DATA_TOGGLE   : '[data-toggle="dropdown"]',
  FORM_CHILD    : '.dropdown form',
  MENU          : '.dropdown-menu',
  NAVBAR_NAV    : '.navbar-nav',
  VISIBLE_ITEMS : '.dropdown-menu .dropdown-item:not(.disabled):not(:disabled)'
}

const AttachmentMap = {
  TOP       : 'top-start',
  TOPEND    : 'top-end',
  BOTTOM    : 'bottom-start',
  BOTTOMEND : 'bottom-end',
  RIGHT     : 'right-start',
  RIGHTEND  : 'right-end',
  LEFT      : 'left-start',
  LEFTEND   : 'left-end'
}

const Default = {
  offset      : 0,
  flip        : true,
  boundary    : 'scrollParent',
  reference   : 'toggle',
  display     : 'dynamic'
}

const DefaultType = {
  offset      : '(number|string|function)',
  flip        : 'boolean',
  boundary    : '(string|element)',
  reference   : '(string|element)',
  display     : 'string'
}

/**
 * ------------------------------------------------------------------------
 * Class Definition
 * ------------------------------------------------------------------------
 */
fat's avatar
fat committed
94

Johann-S's avatar
Johann-S committed
95
96
97
98
99
100
101
102
103
class Dropdown {
  constructor(element, config) {
    this._element  = element
    this._popper   = null
    this._config   = this._getConfig(config)
    this._menu     = this._getMenuElement()
    this._inNavbar = this._detectNavbar()

    this._addEventListeners()
fat's avatar
fat committed
104
105
  }

Johann-S's avatar
Johann-S committed
106
107
108
109
  // Getters

  static get VERSION() {
    return VERSION
Johann-S's avatar
Johann-S committed
110
111
  }

Johann-S's avatar
Johann-S committed
112
113
  static get Default() {
    return Default
Johann-S's avatar
Johann-S committed
114
115
  }

Johann-S's avatar
Johann-S committed
116
117
  static get DefaultType() {
    return DefaultType
Johann-S's avatar
Johann-S committed
118
119
  }

Johann-S's avatar
Johann-S committed
120
121
122
123
124
  // Public

  toggle() {
    if (this._element.disabled || $(this._element).hasClass(ClassName.DISABLED)) {
      return
fat's avatar
fat committed
125
126
    }

Johann-S's avatar
Johann-S committed
127
128
    const parent   = Dropdown._getParentFromElement(this._element)
    const isActive = $(this._menu).hasClass(ClassName.SHOW)
129

Johann-S's avatar
Johann-S committed
130
    Dropdown._clearMenus()
131

Johann-S's avatar
Johann-S committed
132
133
    if (isActive) {
      return
Johann-S's avatar
Johann-S committed
134
135
    }

Johann-S's avatar
Johann-S committed
136
137
    const relatedTarget = {
      relatedTarget: this._element
Johann-S's avatar
Johann-S committed
138
    }
Johann-S's avatar
Johann-S committed
139
    const showEvent = $.Event(Event.SHOW, relatedTarget)
Johann-S's avatar
Johann-S committed
140

Johann-S's avatar
Johann-S committed
141
    $(parent).trigger(showEvent)
fat's avatar
fat committed
142

Johann-S's avatar
Johann-S committed
143
144
145
    if (showEvent.isDefaultPrevented()) {
      return
    }
fat's avatar
fat committed
146

Johann-S's avatar
Johann-S committed
147
148
149
150
151
152
153
154
    // Disable totally Popper.js for Dropdown in Navbar
    if (!this._inNavbar) {
      /**
       * Check for Popper dependency
       * Popper - https://popper.js.org
       */
      if (typeof Popper === 'undefined') {
        throw new TypeError('Bootstrap dropdown require Popper.js (https://popper.js.org)')
fat's avatar
fat committed
155
156
      }

Johann-S's avatar
Johann-S committed
157
      let referenceElement = this._element
fat's avatar
fat committed
158

Johann-S's avatar
Johann-S committed
159
160
161
162
      if (this._config.reference === 'parent') {
        referenceElement = parent
      } else if (Util.isElement(this._config.reference)) {
        referenceElement = this._config.reference
fat's avatar
fat committed
163

Johann-S's avatar
Johann-S committed
164
165
166
        // Check if it's jQuery element
        if (typeof this._config.reference.jquery !== 'undefined') {
          referenceElement = this._config.reference[0]
167
        }
168
      }
169

Johann-S's avatar
Johann-S committed
170
171
172
173
174
      // If boundary is not `scrollParent`, then set position to `static`
      // to allow the menu to "escape" the scroll parent's boundaries
      // https://github.com/twbs/bootstrap/issues/24251
      if (this._config.boundary !== 'scrollParent') {
        $(parent).addClass(ClassName.POSITION_STATIC)
175
      }
Johann-S's avatar
Johann-S committed
176
      this._popper = new Popper(referenceElement, this._menu, this._getPopperConfig())
fat's avatar
fat committed
177
178
    }

Johann-S's avatar
Johann-S committed
179
180
181
182
183
184
185
    // If this is a touch-enabled device we add extra
    // empty mouseover listeners to the body's immediate children;
    // only needed because of broken event delegation on iOS
    // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html
    if ('ontouchstart' in document.documentElement &&
        $(parent).closest(Selector.NAVBAR_NAV).length === 0) {
      $(document.body).children().on('mouseover', null, $.noop)
fat's avatar
fat committed
186
187
    }

Johann-S's avatar
Johann-S committed
188
189
    this._element.focus()
    this._element.setAttribute('aria-expanded', true)
fat's avatar
fat committed
190

Johann-S's avatar
Johann-S committed
191
192
193
194
195
    $(this._menu).toggleClass(ClassName.SHOW)
    $(parent)
      .toggleClass(ClassName.SHOW)
      .trigger($.Event(Event.SHOWN, relatedTarget))
  }
fat's avatar
fat committed
196

Johann-S's avatar
Johann-S committed
197
198
199
200
201
202
203
204
  dispose() {
    $.removeData(this._element, DATA_KEY)
    $(this._element).off(EVENT_KEY)
    this._element = null
    this._menu = null
    if (this._popper !== null) {
      this._popper.destroy()
      this._popper = null
fat's avatar
fat committed
205
    }
Johann-S's avatar
Johann-S committed
206
  }
fat's avatar
fat committed
207

Johann-S's avatar
Johann-S committed
208
209
210
211
212
213
  update() {
    this._inNavbar = this._detectNavbar()
    if (this._popper !== null) {
      this._popper.scheduleUpdate()
    }
  }
Johann-S's avatar
Johann-S committed
214

Johann-S's avatar
Johann-S committed
215
216
217
218
219
220
221
222
223
  // Private

  _addEventListeners() {
    $(this._element).on(Event.CLICK, (event) => {
      event.preventDefault()
      event.stopPropagation()
      this.toggle()
    })
  }
Johann-S's avatar
Johann-S committed
224

Johann-S's avatar
Johann-S committed
225
226
227
228
229
  _getConfig(config) {
    config = {
      ...this.constructor.Default,
      ...$(this._element).data(),
      ...config
Johann-S's avatar
Johann-S committed
230
231
    }

Johann-S's avatar
Johann-S committed
232
233
234
235
236
237
238
239
240
241
242
243
244
245
    Util.typeCheckConfig(
      NAME,
      config,
      this.constructor.DefaultType
    )

    return config
  }

  _getMenuElement() {
    if (!this._menu) {
      const parent = Dropdown._getParentFromElement(this._element)
      if (parent) {
        this._menu = parent.querySelector(Selector.MENU)
Johann-S's avatar
Johann-S committed
246
247
      }
    }
Johann-S's avatar
Johann-S committed
248
249
    return this._menu
  }
fat's avatar
fat committed
250

Johann-S's avatar
Johann-S committed
251
252
253
  _getPlacement() {
    const $parentDropdown = $(this._element.parentNode)
    let placement = AttachmentMap.BOTTOM
254

Johann-S's avatar
Johann-S committed
255
256
257
258
259
    // Handle dropup
    if ($parentDropdown.hasClass(ClassName.DROPUP)) {
      placement = AttachmentMap.TOP
      if ($(this._menu).hasClass(ClassName.MENURIGHT)) {
        placement = AttachmentMap.TOPEND
260
      }
Johann-S's avatar
Johann-S committed
261
262
263
264
265
266
    } else if ($parentDropdown.hasClass(ClassName.DROPRIGHT)) {
      placement = AttachmentMap.RIGHT
    } else if ($parentDropdown.hasClass(ClassName.DROPLEFT)) {
      placement = AttachmentMap.LEFT
    } else if ($(this._menu).hasClass(ClassName.MENURIGHT)) {
      placement = AttachmentMap.BOTTOMEND
267
    }
Johann-S's avatar
Johann-S committed
268
269
    return placement
  }
270

Johann-S's avatar
Johann-S committed
271
272
273
  _detectNavbar() {
    return $(this._element).closest('.navbar').length > 0
  }
274

Johann-S's avatar
Johann-S committed
275
276
277
278
279
280
281
  _getPopperConfig() {
    const offsetConf = {}
    if (typeof this._config.offset === 'function') {
      offsetConf.fn = (data) => {
        data.offsets = {
          ...data.offsets,
          ...this._config.offset(data.offsets) || {}
282
        }
Johann-S's avatar
Johann-S committed
283
        return data
284
      }
Johann-S's avatar
Johann-S committed
285
286
287
    } else {
      offsetConf.offset = this._config.offset
    }
288

Johann-S's avatar
Johann-S committed
289
290
291
292
293
294
295
296
297
    const popperConfig = {
      placement: this._getPlacement(),
      modifiers: {
        offset: offsetConf,
        flip: {
          enabled: this._config.flip
        },
        preventOverflow: {
          boundariesElement: this._config.boundary
298
299
        }
      }
Johann-S's avatar
Johann-S committed
300
    }
301

Johann-S's avatar
Johann-S committed
302
303
304
305
    // Disable Popper.js if we have a static display
    if (this._config.display === 'static') {
      popperConfig.modifiers.applyStyle = {
        enabled: false
306
      }
307
    }
Johann-S's avatar
Johann-S committed
308
309
    return popperConfig
  }
310

Johann-S's avatar
Johann-S committed
311
  // Static
fat's avatar
fat committed
312

Johann-S's avatar
Johann-S committed
313
314
315
316
  static _jQueryInterface(config) {
    return this.each(function () {
      let data = $(this).data(DATA_KEY)
      const _config = typeof config === 'object' ? config : null
fat's avatar
fat committed
317

Johann-S's avatar
Johann-S committed
318
319
320
321
      if (!data) {
        data = new Dropdown(this, _config)
        $(this).data(DATA_KEY, data)
      }
fat's avatar
fat committed
322

Johann-S's avatar
Johann-S committed
323
324
325
      if (typeof config === 'string') {
        if (typeof data[config] === 'undefined') {
          throw new TypeError(`No method named "${config}"`)
fat's avatar
fat committed
326
        }
Johann-S's avatar
Johann-S committed
327
328
329
330
331
332
333
334
335
        data[config]()
      }
    })
  }

  static _clearMenus(event) {
    if (event && (event.which === RIGHT_MOUSE_BUTTON_WHICH ||
      event.type === 'keyup' && event.which !== TAB_KEYCODE)) {
      return
fat's avatar
fat committed
336
337
    }

Johann-S's avatar
Johann-S committed
338
339
340
341
342
343
    const toggles = [].slice.call(document.querySelectorAll(Selector.DATA_TOGGLE))
    for (let i = 0, len = toggles.length; i < len; i++) {
      const parent = Dropdown._getParentFromElement(toggles[i])
      const context = $(toggles[i]).data(DATA_KEY)
      const relatedTarget = {
        relatedTarget: toggles[i]
fat's avatar
fat committed
344
345
      }

Johann-S's avatar
Johann-S committed
346
347
348
      if (event && event.type === 'click') {
        relatedTarget.clickEvent = event
      }
349

Johann-S's avatar
Johann-S committed
350
351
352
      if (!context) {
        continue
      }
Johann-S's avatar
Johann-S committed
353

Johann-S's avatar
Johann-S committed
354
355
356
357
      const dropdownMenu = context._menu
      if (!$(parent).hasClass(ClassName.SHOW)) {
        continue
      }
fat's avatar
fat committed
358

Johann-S's avatar
Johann-S committed
359
360
361
362
363
      if (event && (event.type === 'click' &&
          /input|textarea/i.test(event.target.tagName) || event.type === 'keyup' && event.which === TAB_KEYCODE) &&
          $.contains(parent, event.target)) {
        continue
      }
fat's avatar
fat committed
364

Johann-S's avatar
Johann-S committed
365
366
367
368
369
      const hideEvent = $.Event(Event.HIDE, relatedTarget)
      $(parent).trigger(hideEvent)
      if (hideEvent.isDefaultPrevented()) {
        continue
      }
fat's avatar
fat committed
370

Johann-S's avatar
Johann-S committed
371
372
373
374
375
      // If this is a touch-enabled device we remove the extra
      // empty mouseover listeners we added for iOS support
      if ('ontouchstart' in document.documentElement) {
        $(document.body).children().off('mouseover', null, $.noop)
      }
376

Johann-S's avatar
Johann-S committed
377
      toggles[i].setAttribute('aria-expanded', 'false')
fat's avatar
fat committed
378

Johann-S's avatar
Johann-S committed
379
380
381
382
      $(dropdownMenu).removeClass(ClassName.SHOW)
      $(parent)
        .removeClass(ClassName.SHOW)
        .trigger($.Event(Event.HIDDEN, relatedTarget))
fat's avatar
fat committed
383
    }
Johann-S's avatar
Johann-S committed
384
  }
fat's avatar
fat committed
385

Johann-S's avatar
Johann-S committed
386
387
388
  static _getParentFromElement(element) {
    let parent
    const selector = Util.getSelectorFromElement(element)
fat's avatar
fat committed
389

Johann-S's avatar
Johann-S committed
390
391
    if (selector) {
      parent = document.querySelector(selector)
fat's avatar
fat committed
392
393
    }

Johann-S's avatar
Johann-S committed
394
395
    return parent || element.parentNode
  }
fat's avatar
fat committed
396

Johann-S's avatar
Johann-S committed
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
  // eslint-disable-next-line complexity
  static _dataApiKeydownHandler(event) {
    // If not input/textarea:
    //  - And not a key in REGEXP_KEYDOWN => not a dropdown command
    // If input/textarea:
    //  - If space key => not a dropdown command
    //  - If key is other than escape
    //    - If key is not up or down => not a dropdown command
    //    - If trigger inside the menu => not a dropdown command
    if (/input|textarea/i.test(event.target.tagName)
      ? event.which === SPACE_KEYCODE || event.which !== ESCAPE_KEYCODE &&
      (event.which !== ARROW_DOWN_KEYCODE && event.which !== ARROW_UP_KEYCODE ||
        $(event.target).closest(Selector.MENU).length) : !REGEXP_KEYDOWN.test(event.which)) {
      return
    }
fat's avatar
fat committed
412

Johann-S's avatar
Johann-S committed
413
414
    event.preventDefault()
    event.stopPropagation()
fat's avatar
fat committed
415

Johann-S's avatar
Johann-S committed
416
417
418
    if (this.disabled || $(this).hasClass(ClassName.DISABLED)) {
      return
    }
fat's avatar
fat committed
419

Johann-S's avatar
Johann-S committed
420
421
    const parent   = Dropdown._getParentFromElement(this)
    const isActive = $(parent).hasClass(ClassName.SHOW)
fat's avatar
fat committed
422

Johann-S's avatar
Johann-S committed
423
424
425
426
427
    if (!isActive && (event.which !== ESCAPE_KEYCODE || event.which !== SPACE_KEYCODE) ||
          isActive && (event.which === ESCAPE_KEYCODE || event.which === SPACE_KEYCODE)) {
      if (event.which === ESCAPE_KEYCODE) {
        const toggle = parent.querySelector(Selector.DATA_TOGGLE)
        $(toggle).trigger('focus')
fat's avatar
fat committed
428
429
      }

Johann-S's avatar
Johann-S committed
430
431
432
      $(this).trigger('click')
      return
    }
fat's avatar
fat committed
433

Johann-S's avatar
Johann-S committed
434
    const items = [].slice.call(parent.querySelectorAll(Selector.VISIBLE_ITEMS))
fat's avatar
fat committed
435

Johann-S's avatar
Johann-S committed
436
437
438
    if (items.length === 0) {
      return
    }
fat's avatar
fat committed
439

Johann-S's avatar
Johann-S committed
440
    let index = items.indexOf(event.target)
Jacob Thornton's avatar
Jacob Thornton committed
441

Johann-S's avatar
Johann-S committed
442
443
444
    if (event.which === ARROW_UP_KEYCODE && index > 0) { // Up
      index--
    }
Jacob Thornton's avatar
Jacob Thornton committed
445

Johann-S's avatar
Johann-S committed
446
447
448
    if (event.which === ARROW_DOWN_KEYCODE && index < items.length - 1) { // Down
      index++
    }
fat's avatar
fat committed
449

Johann-S's avatar
Johann-S committed
450
451
    if (index < 0) {
      index = 0
fat's avatar
fat committed
452
    }
Johann-S's avatar
Johann-S committed
453
454

    items[index].focus()
fat's avatar
fat committed
455
  }
Johann-S's avatar
Johann-S committed
456
}
fat's avatar
fat committed
457

Johann-S's avatar
Johann-S committed
458
459
460
461
462
/**
 * ------------------------------------------------------------------------
 * Data Api implementation
 * ------------------------------------------------------------------------
 */
fat's avatar
fat committed
463

Johann-S's avatar
Johann-S committed
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
$(document)
  .on(Event.KEYDOWN_DATA_API, Selector.DATA_TOGGLE, Dropdown._dataApiKeydownHandler)
  .on(Event.KEYDOWN_DATA_API, Selector.MENU, Dropdown._dataApiKeydownHandler)
  .on(`${Event.CLICK_DATA_API} ${Event.KEYUP_DATA_API}`, Dropdown._clearMenus)
  .on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {
    event.preventDefault()
    event.stopPropagation()
    Dropdown._jQueryInterface.call($(this), 'toggle')
  })
  .on(Event.CLICK_DATA_API, Selector.FORM_CHILD, (e) => {
    e.stopPropagation()
  })

/**
 * ------------------------------------------------------------------------
 * jQuery
 * ------------------------------------------------------------------------
 */

$.fn[NAME] = Dropdown._jQueryInterface
$.fn[NAME].Constructor = Dropdown
$.fn[NAME].noConflict = () => {
  $.fn[NAME] = JQUERY_NO_CONFLICT
  return Dropdown._jQueryInterface
}
fat's avatar
fat committed
489
490
491


export default Dropdown