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

8
9
10
11
import $ from 'jquery'
import Popper from 'popper.js'
import Util from './util'

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
const NAME                     = 'dropdown'
XhmikosR's avatar
XhmikosR committed
19
const VERSION                  = '4.3.1'
Johann-S's avatar
Johann-S committed
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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 = {
44
45
46
47
48
49
50
  DISABLED        : 'disabled',
  SHOW            : 'show',
  DROPUP          : 'dropup',
  DROPRIGHT       : 'dropright',
  DROPLEFT        : 'dropleft',
  MENURIGHT       : 'dropdown-menu-right',
  MENULEFT        : 'dropdown-menu-left',
Johann-S's avatar
Johann-S committed
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
  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 = {
74
75
76
77
78
  offset    : 0,
  flip      : true,
  boundary  : 'scrollParent',
  reference : 'toggle',
  display   : 'dynamic'
Johann-S's avatar
Johann-S committed
79
80
81
}

const DefaultType = {
82
83
84
85
86
  offset    : '(number|string|function)',
  flip      : 'boolean',
  boundary  : '(string|element)',
  reference : '(string|element)',
  display   : 'string'
Johann-S's avatar
Johann-S committed
87
88
89
90
91
92
93
}

/**
 * ------------------------------------------------------------------------
 * 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
    // Disable totally Popper.js for Dropdown in Navbar
    if (!this._inNavbar) {
      /**
       * Check for Popper dependency
       * Popper - https://popper.js.org
       */
      if (typeof Popper === 'undefined') {
154
        throw new TypeError('Bootstrap\'s dropdowns 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

197
198
199
200
201
202
203
204
205
206
  show() {
    if (this._element.disabled || $(this._element).hasClass(ClassName.DISABLED) || $(this._menu).hasClass(ClassName.SHOW)) {
      return
    }

    const relatedTarget = {
      relatedTarget: this._element
    }
    const showEvent = $.Event(Event.SHOW, relatedTarget)
    const parent = Dropdown._getParentFromElement(this._element)
207

208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
    $(parent).trigger(showEvent)

    if (showEvent.isDefaultPrevented()) {
      return
    }

    $(this._menu).toggleClass(ClassName.SHOW)
    $(parent)
      .toggleClass(ClassName.SHOW)
      .trigger($.Event(Event.SHOWN, relatedTarget))
  }

  hide() {
    if (this._element.disabled || $(this._element).hasClass(ClassName.DISABLED) || !$(this._menu).hasClass(ClassName.SHOW)) {
      return
    }

    const relatedTarget = {
      relatedTarget: this._element
    }
    const hideEvent = $.Event(Event.HIDE, relatedTarget)
    const parent = Dropdown._getParentFromElement(this._element)
230

231
232
233
234
235
236
237
238
239
240
241
242
    $(parent).trigger(hideEvent)

    if (hideEvent.isDefaultPrevented()) {
      return
    }

    $(this._menu).toggleClass(ClassName.SHOW)
    $(parent)
      .toggleClass(ClassName.SHOW)
      .trigger($.Event(Event.HIDDEN, relatedTarget))
  }

Johann-S's avatar
Johann-S committed
243
244
245
246
247
248
249
250
  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
251
    }
Johann-S's avatar
Johann-S committed
252
  }
fat's avatar
fat committed
253

Johann-S's avatar
Johann-S committed
254
255
256
257
258
259
  update() {
    this._inNavbar = this._detectNavbar()
    if (this._popper !== null) {
      this._popper.scheduleUpdate()
    }
  }
Johann-S's avatar
Johann-S committed
260

Johann-S's avatar
Johann-S committed
261
262
263
264
265
266
267
268
269
  // Private

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

Johann-S's avatar
Johann-S committed
271
272
273
274
275
  _getConfig(config) {
    config = {
      ...this.constructor.Default,
      ...$(this._element).data(),
      ...config
Johann-S's avatar
Johann-S committed
276
277
    }

Johann-S's avatar
Johann-S committed
278
279
280
281
282
283
284
285
286
287
288
289
    Util.typeCheckConfig(
      NAME,
      config,
      this.constructor.DefaultType
    )

    return config
  }

  _getMenuElement() {
    if (!this._menu) {
      const parent = Dropdown._getParentFromElement(this._element)
290

Johann-S's avatar
Johann-S committed
291
292
      if (parent) {
        this._menu = parent.querySelector(Selector.MENU)
Johann-S's avatar
Johann-S committed
293
294
      }
    }
Johann-S's avatar
Johann-S committed
295
296
    return this._menu
  }
fat's avatar
fat committed
297

Johann-S's avatar
Johann-S committed
298
299
300
  _getPlacement() {
    const $parentDropdown = $(this._element.parentNode)
    let placement = AttachmentMap.BOTTOM
301

Johann-S's avatar
Johann-S committed
302
303
304
305
306
    // Handle dropup
    if ($parentDropdown.hasClass(ClassName.DROPUP)) {
      placement = AttachmentMap.TOP
      if ($(this._menu).hasClass(ClassName.MENURIGHT)) {
        placement = AttachmentMap.TOPEND
307
      }
Johann-S's avatar
Johann-S committed
308
309
310
311
312
313
    } 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
314
    }
Johann-S's avatar
Johann-S committed
315
316
    return placement
  }
317

Johann-S's avatar
Johann-S committed
318
319
320
  _detectNavbar() {
    return $(this._element).closest('.navbar').length > 0
  }
321

322
323
324
  _getOffset() {
    const offset = {}

Johann-S's avatar
Johann-S committed
325
    if (typeof this._config.offset === 'function') {
326
      offset.fn = (data) => {
Johann-S's avatar
Johann-S committed
327
328
        data.offsets = {
          ...data.offsets,
329
          ...this._config.offset(data.offsets, this._element) || {}
330
        }
331

Johann-S's avatar
Johann-S committed
332
        return data
333
      }
Johann-S's avatar
Johann-S committed
334
    } else {
335
      offset.offset = this._config.offset
Johann-S's avatar
Johann-S committed
336
    }
337

338
339
340
341
    return offset
  }

  _getPopperConfig() {
Johann-S's avatar
Johann-S committed
342
343
344
    const popperConfig = {
      placement: this._getPlacement(),
      modifiers: {
345
        offset: this._getOffset(),
Johann-S's avatar
Johann-S committed
346
347
348
349
350
        flip: {
          enabled: this._config.flip
        },
        preventOverflow: {
          boundariesElement: this._config.boundary
351
352
        }
      }
Johann-S's avatar
Johann-S committed
353
    }
354

Johann-S's avatar
Johann-S committed
355
356
357
358
    // Disable Popper.js if we have a static display
    if (this._config.display === 'static') {
      popperConfig.modifiers.applyStyle = {
        enabled: false
359
      }
360
    }
361

Johann-S's avatar
Johann-S committed
362
363
    return popperConfig
  }
364

Johann-S's avatar
Johann-S committed
365
  // Static
fat's avatar
fat committed
366

Johann-S's avatar
Johann-S committed
367
368
369
370
  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
371

Johann-S's avatar
Johann-S committed
372
373
374
375
      if (!data) {
        data = new Dropdown(this, _config)
        $(this).data(DATA_KEY, data)
      }
fat's avatar
fat committed
376

Johann-S's avatar
Johann-S committed
377
378
379
      if (typeof config === 'string') {
        if (typeof data[config] === 'undefined') {
          throw new TypeError(`No method named "${config}"`)
fat's avatar
fat committed
380
        }
Johann-S's avatar
Johann-S committed
381
382
383
384
385
386
387
388
389
        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
390
391
    }

Johann-S's avatar
Johann-S committed
392
    const toggles = [].slice.call(document.querySelectorAll(Selector.DATA_TOGGLE))
393

Johann-S's avatar
Johann-S committed
394
395
396
397
398
    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
399
400
      }

Johann-S's avatar
Johann-S committed
401
402
403
      if (event && event.type === 'click') {
        relatedTarget.clickEvent = event
      }
404

Johann-S's avatar
Johann-S committed
405
406
407
      if (!context) {
        continue
      }
Johann-S's avatar
Johann-S committed
408

Johann-S's avatar
Johann-S committed
409
410
411
412
      const dropdownMenu = context._menu
      if (!$(parent).hasClass(ClassName.SHOW)) {
        continue
      }
fat's avatar
fat committed
413

Johann-S's avatar
Johann-S committed
414
415
416
417
418
      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
419

Johann-S's avatar
Johann-S committed
420
421
422
423
424
      const hideEvent = $.Event(Event.HIDE, relatedTarget)
      $(parent).trigger(hideEvent)
      if (hideEvent.isDefaultPrevented()) {
        continue
      }
fat's avatar
fat committed
425

Johann-S's avatar
Johann-S committed
426
427
428
429
430
      // 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)
      }
431

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

Johann-S's avatar
Johann-S committed
434
435
436
437
      $(dropdownMenu).removeClass(ClassName.SHOW)
      $(parent)
        .removeClass(ClassName.SHOW)
        .trigger($.Event(Event.HIDDEN, relatedTarget))
fat's avatar
fat committed
438
    }
Johann-S's avatar
Johann-S committed
439
  }
fat's avatar
fat committed
440

Johann-S's avatar
Johann-S committed
441
442
443
  static _getParentFromElement(element) {
    let parent
    const selector = Util.getSelectorFromElement(element)
fat's avatar
fat committed
444

Johann-S's avatar
Johann-S committed
445
446
    if (selector) {
      parent = document.querySelector(selector)
fat's avatar
fat committed
447
448
    }

Johann-S's avatar
Johann-S committed
449
450
    return parent || element.parentNode
  }
fat's avatar
fat committed
451

Johann-S's avatar
Johann-S committed
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
  // 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
467

Johann-S's avatar
Johann-S committed
468
469
    event.preventDefault()
    event.stopPropagation()
fat's avatar
fat committed
470

Johann-S's avatar
Johann-S committed
471
472
473
    if (this.disabled || $(this).hasClass(ClassName.DISABLED)) {
      return
    }
fat's avatar
fat committed
474

Johann-S's avatar
Johann-S committed
475
476
    const parent   = Dropdown._getParentFromElement(this)
    const isActive = $(parent).hasClass(ClassName.SHOW)
fat's avatar
fat committed
477

478
    if (!isActive || isActive && (event.which === ESCAPE_KEYCODE || event.which === SPACE_KEYCODE)) {
Johann-S's avatar
Johann-S committed
479
480
481
      if (event.which === ESCAPE_KEYCODE) {
        const toggle = parent.querySelector(Selector.DATA_TOGGLE)
        $(toggle).trigger('focus')
fat's avatar
fat committed
482
483
      }

Johann-S's avatar
Johann-S committed
484
485
486
      $(this).trigger('click')
      return
    }
fat's avatar
fat committed
487

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

Johann-S's avatar
Johann-S committed
490
491
492
    if (items.length === 0) {
      return
    }
fat's avatar
fat committed
493

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

Johann-S's avatar
Johann-S committed
496
497
498
    if (event.which === ARROW_UP_KEYCODE && index > 0) { // Up
      index--
    }
Jacob Thornton's avatar
Jacob Thornton committed
499

Johann-S's avatar
Johann-S committed
500
501
502
    if (event.which === ARROW_DOWN_KEYCODE && index < items.length - 1) { // Down
      index++
    }
fat's avatar
fat committed
503

Johann-S's avatar
Johann-S committed
504
505
    if (index < 0) {
      index = 0
fat's avatar
fat committed
506
    }
Johann-S's avatar
Johann-S committed
507
508

    items[index].focus()
fat's avatar
fat committed
509
  }
Johann-S's avatar
Johann-S committed
510
}
fat's avatar
fat committed
511

Johann-S's avatar
Johann-S committed
512
513
514
515
516
/**
 * ------------------------------------------------------------------------
 * Data Api implementation
 * ------------------------------------------------------------------------
 */
fat's avatar
fat committed
517

Johann-S's avatar
Johann-S committed
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
$(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
543
544
545


export default Dropdown