dropdown.js 14.7 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
    // 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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
  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)
    $(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)
    $(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
290
291
    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
292
293
      }
    }
Johann-S's avatar
Johann-S committed
294
295
    return this._menu
  }
fat's avatar
fat committed
296

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

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

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

Johann-S's avatar
Johann-S committed
321
322
323
324
325
326
327
  _getPopperConfig() {
    const offsetConf = {}
    if (typeof this._config.offset === 'function') {
      offsetConf.fn = (data) => {
        data.offsets = {
          ...data.offsets,
          ...this._config.offset(data.offsets) || {}
328
        }
Johann-S's avatar
Johann-S committed
329
        return data
330
      }
Johann-S's avatar
Johann-S committed
331
332
333
    } else {
      offsetConf.offset = this._config.offset
    }
334

Johann-S's avatar
Johann-S committed
335
336
337
338
339
340
341
342
343
    const popperConfig = {
      placement: this._getPlacement(),
      modifiers: {
        offset: offsetConf,
        flip: {
          enabled: this._config.flip
        },
        preventOverflow: {
          boundariesElement: this._config.boundary
344
345
        }
      }
Johann-S's avatar
Johann-S committed
346
    }
347

Johann-S's avatar
Johann-S committed
348
349
350
351
    // Disable Popper.js if we have a static display
    if (this._config.display === 'static') {
      popperConfig.modifiers.applyStyle = {
        enabled: false
352
      }
353
    }
Johann-S's avatar
Johann-S committed
354
355
    return popperConfig
  }
356

Johann-S's avatar
Johann-S committed
357
  // Static
fat's avatar
fat committed
358

Johann-S's avatar
Johann-S committed
359
360
361
362
  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
363

Johann-S's avatar
Johann-S committed
364
365
366
367
      if (!data) {
        data = new Dropdown(this, _config)
        $(this).data(DATA_KEY, data)
      }
fat's avatar
fat committed
368

Johann-S's avatar
Johann-S committed
369
370
371
      if (typeof config === 'string') {
        if (typeof data[config] === 'undefined') {
          throw new TypeError(`No method named "${config}"`)
fat's avatar
fat committed
372
        }
Johann-S's avatar
Johann-S committed
373
374
375
376
377
378
379
380
381
        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
382
383
    }

Johann-S's avatar
Johann-S committed
384
385
386
387
388
389
    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
390
391
      }

Johann-S's avatar
Johann-S committed
392
393
394
      if (event && event.type === 'click') {
        relatedTarget.clickEvent = event
      }
395

Johann-S's avatar
Johann-S committed
396
397
398
      if (!context) {
        continue
      }
Johann-S's avatar
Johann-S committed
399

Johann-S's avatar
Johann-S committed
400
401
402
403
      const dropdownMenu = context._menu
      if (!$(parent).hasClass(ClassName.SHOW)) {
        continue
      }
fat's avatar
fat committed
404

Johann-S's avatar
Johann-S committed
405
406
407
408
409
      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
410

Johann-S's avatar
Johann-S committed
411
412
413
414
415
      const hideEvent = $.Event(Event.HIDE, relatedTarget)
      $(parent).trigger(hideEvent)
      if (hideEvent.isDefaultPrevented()) {
        continue
      }
fat's avatar
fat committed
416

Johann-S's avatar
Johann-S committed
417
418
419
420
421
      // 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)
      }
422

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

Johann-S's avatar
Johann-S committed
425
426
427
428
      $(dropdownMenu).removeClass(ClassName.SHOW)
      $(parent)
        .removeClass(ClassName.SHOW)
        .trigger($.Event(Event.HIDDEN, relatedTarget))
fat's avatar
fat committed
429
    }
Johann-S's avatar
Johann-S committed
430
  }
fat's avatar
fat committed
431

Johann-S's avatar
Johann-S committed
432
433
434
  static _getParentFromElement(element) {
    let parent
    const selector = Util.getSelectorFromElement(element)
fat's avatar
fat committed
435

Johann-S's avatar
Johann-S committed
436
437
    if (selector) {
      parent = document.querySelector(selector)
fat's avatar
fat committed
438
439
    }

Johann-S's avatar
Johann-S committed
440
441
    return parent || element.parentNode
  }
fat's avatar
fat committed
442

Johann-S's avatar
Johann-S committed
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
  // 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
458

Johann-S's avatar
Johann-S committed
459
460
    event.preventDefault()
    event.stopPropagation()
fat's avatar
fat committed
461

Johann-S's avatar
Johann-S committed
462
463
464
    if (this.disabled || $(this).hasClass(ClassName.DISABLED)) {
      return
    }
fat's avatar
fat committed
465

Johann-S's avatar
Johann-S committed
466
467
    const parent   = Dropdown._getParentFromElement(this)
    const isActive = $(parent).hasClass(ClassName.SHOW)
fat's avatar
fat committed
468

Johann-S's avatar
Johann-S committed
469
470
471
472
473
    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
474
475
      }

Johann-S's avatar
Johann-S committed
476
477
478
      $(this).trigger('click')
      return
    }
fat's avatar
fat committed
479

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

Johann-S's avatar
Johann-S committed
482
483
484
    if (items.length === 0) {
      return
    }
fat's avatar
fat committed
485

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

Johann-S's avatar
Johann-S committed
488
489
490
    if (event.which === ARROW_UP_KEYCODE && index > 0) { // Up
      index--
    }
Jacob Thornton's avatar
Jacob Thornton committed
491

Johann-S's avatar
Johann-S committed
492
493
494
    if (event.which === ARROW_DOWN_KEYCODE && index < items.length - 1) { // Down
      index++
    }
fat's avatar
fat committed
495

Johann-S's avatar
Johann-S committed
496
497
    if (index < 0) {
      index = 0
fat's avatar
fat committed
498
    }
Johann-S's avatar
Johann-S committed
499
500

    items[index].focus()
fat's avatar
fat committed
501
  }
Johann-S's avatar
Johann-S committed
502
}
fat's avatar
fat committed
503

Johann-S's avatar
Johann-S committed
504
505
506
507
508
/**
 * ------------------------------------------------------------------------
 * Data Api implementation
 * ------------------------------------------------------------------------
 */
fat's avatar
fat committed
509

Johann-S's avatar
Johann-S committed
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
$(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
535
536
537


export default Dropdown