dropdown.js 11 KB
Newer Older
1
2
/* global Popper */

fat's avatar
fat committed
3
4
5
6
7
import Util from './util'


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

const Dropdown = (($) => {

Johann-S's avatar
Johann-S committed
15
16
17
18
19
  /**
   * Check for Popper dependency
   * Popper - https://popper.js.org
   */
  if (typeof Popper === 'undefined') {
20
    throw new Error('Bootstrap dropdown require Popper.js (https://popper.js.org)')
Johann-S's avatar
Johann-S committed
21
  }
fat's avatar
fat committed
22
23
24
25
26
27
28

  /**
   * ------------------------------------------------------------------------
   * Constants
   * ------------------------------------------------------------------------
   */

29
  const NAME                     = 'dropdown'
Mark Otto's avatar
Mark Otto committed
30
  const VERSION                  = '4.0.0-alpha.6'
31
32
33
34
35
  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
36
  const SPACE_KEYCODE            = 32 // KeyboardEvent.which value for space key
Pierre-Denis Vanduynslager's avatar
Pierre-Denis Vanduynslager committed
37
  const TAB_KEYCODE              = 9 // KeyboardEvent.which value for tab key
38
39
40
  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)
Pierre-Denis Vanduynslager's avatar
Indent    
Pierre-Denis Vanduynslager committed
41
  const REGEXP_KEYDOWN           = new RegExp(`${ARROW_UP_KEYCODE}|${ARROW_DOWN_KEYCODE}|${ESCAPE_KEYCODE}`)
fat's avatar
fat committed
42
43

  const Event = {
XhmikosR's avatar
XhmikosR committed
44
45
46
47
48
    HIDE             : `hide${EVENT_KEY}`,
    HIDDEN           : `hidden${EVENT_KEY}`,
    SHOW             : `show${EVENT_KEY}`,
    SHOWN            : `shown${EVENT_KEY}`,
    CLICK            : `click${EVENT_KEY}`,
fat's avatar
fat committed
49
    CLICK_DATA_API   : `click${EVENT_KEY}${DATA_API_KEY}`,
Pierre-Denis Vanduynslager's avatar
Pierre-Denis Vanduynslager committed
50
51
    KEYDOWN_DATA_API : `keydown${EVENT_KEY}${DATA_API_KEY}`,
    KEYUP_DATA_API   : `keyup${EVENT_KEY}${DATA_API_KEY}`
fat's avatar
fat committed
52
53
54
55
  }

  const ClassName = {
    DISABLED : 'disabled',
Starsam80's avatar
Starsam80 committed
56
    SHOW     : 'show'
fat's avatar
fat committed
57
58
59
60
61
  }

  const Selector = {
    DATA_TOGGLE   : '[data-toggle="dropdown"]',
    FORM_CHILD    : '.dropdown form',
62
    MENU          : '.dropdown-menu',
fat's avatar
fat committed
63
    NAVBAR_NAV    : '.navbar-nav',
64
    VISIBLE_ITEMS : '.dropdown-menu .dropdown-item:not(.disabled)'
fat's avatar
fat committed
65
66
  }

Johann-S's avatar
Johann-S committed
67
  const AttachmentMap = {
68
69
    TOP    : 'top-start',
    BOTTOM : 'bottom-start'
Johann-S's avatar
Johann-S committed
70
71
  }

Johann-S's avatar
Johann-S committed
72
  const Default = {
Johann-S's avatar
Johann-S committed
73
    placement   : AttachmentMap.BOTTOM,
74
75
    offset      : 0,
    flip        : true
Johann-S's avatar
Johann-S committed
76
77
78
  }

  const DefaultType = {
79
    placement   : 'string',
80
81
    offset      : '(number|string)',
    flip        : 'boolean'
Johann-S's avatar
Johann-S committed
82
83
  }

fat's avatar
fat committed
84
85
86
87
88
89
90
91
92

  /**
   * ------------------------------------------------------------------------
   * Class Definition
   * ------------------------------------------------------------------------
   */

  class Dropdown {

Johann-S's avatar
Johann-S committed
93
    constructor(element, config) {
fat's avatar
fat committed
94
      this._element = element
Johann-S's avatar
Johann-S committed
95
96
97
      this._popper  = null
      this._config = this._getConfig(config)
      this._menu = this._getMenuElement()
fat's avatar
fat committed
98
99

      this._addEventListeners()
fat's avatar
fat committed
100
101
    }

102
103
104
105
106
107
108

    // getters

    static get VERSION() {
      return VERSION
    }

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

    static get DefaultType() {
      return DefaultType
    }

117

fat's avatar
fat committed
118
119
120
    // public

    toggle() {
Johann-S's avatar
Johann-S committed
121
122
123
124
125
126
127
      let context = $(this).data(DATA_KEY)
      if (!context) {
        context = new Dropdown(this)
        $(this).data(DATA_KEY, context)
      }

      if (context.disabled || $(this).hasClass(ClassName.DISABLED)) {
Jacob Thornton's avatar
Jacob Thornton committed
128
        return false
fat's avatar
fat committed
129
130
      }

131
      const parent   = Dropdown._getParentFromElement(this)
Johann-S's avatar
Johann-S committed
132
      const isActive = $(context._menu).hasClass(ClassName.SHOW)
fat's avatar
fat committed
133
134
135
136
137
138
139

      Dropdown._clearMenus()

      if (isActive) {
        return false
      }

140
141
142
      const relatedTarget = {
        relatedTarget : this
      }
Johann-S's avatar
Johann-S committed
143
      const showEvent = $.Event(Event.SHOW, relatedTarget)
fat's avatar
fat committed
144
145
146
147

      $(parent).trigger(showEvent)

      if (showEvent.isDefaultPrevented()) {
Jacob Thornton's avatar
Jacob Thornton committed
148
        return false
fat's avatar
fat committed
149
150
      }

Johann-S's avatar
Johann-S committed
151
152
      // Handle dropup
      const dropdownPlacement = $(this).parent().hasClass('dropup') ? AttachmentMap.TOP : context._config.placement
Johann-S's avatar
Johann-S committed
153
      this._popper = new Popper(this, context._menu, {
Johann-S's avatar
Johann-S committed
154
        placement : dropdownPlacement,
155
156
        modifiers : {
          offset : {
157
            offset : context._config.offset
158
159
          },
          flip : {
160
161
            enabled : context._config.flip,
            behavior : [AttachmentMap.TOP, AttachmentMap.BOTTOM]
162
          }
Johann-S's avatar
Johann-S committed
163
164
165
        }
      })

166
167
168
169
      // 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
170
171
      if ('ontouchstart' in document.documentElement &&
         !$(parent).closest(Selector.NAVBAR_NAV).length) {
172
        $('body').children().on('mouseover', null, $.noop)
173
174
      }

fat's avatar
fat committed
175
      this.focus()
176
      this.setAttribute('aria-expanded', true)
fat's avatar
fat committed
177

Johann-S's avatar
Johann-S committed
178
179
180
181
      $(context._menu).toggleClass(ClassName.SHOW)
      $(parent)
        .toggleClass(ClassName.SHOW)
        .trigger($.Event(Event.SHOWN, relatedTarget))
fat's avatar
fat committed
182
183
184
185

      return false
    }

fat's avatar
fat committed
186
187
188
189
    dispose() {
      $.removeData(this._element, DATA_KEY)
      $(this._element).off(EVENT_KEY)
      this._element = null
Johann-S's avatar
Johann-S committed
190
191
192
193
      this._menu = null
      if (this._popper !== null) {
        this._popper.destroy()
      }
194
      this._popper = null
fat's avatar
fat committed
195
196
    }

197
198
199
200
201
    update() {
      if (this._popper !== null) {
        this._popper.scheduleUpdate()
      }
    }
fat's avatar
fat committed
202
203
204
205
206
207
208

    // private

    _addEventListeners() {
      $(this._element).on(Event.CLICK, this.toggle)
    }

Johann-S's avatar
Johann-S committed
209
    _getConfig(config) {
210
211
212
213
214
      const elementData = $(this._element).data()
      if (elementData.placement !== undefined) {
        elementData.placement = AttachmentMap[elementData.placement.toUpperCase()]
      }

Johann-S's avatar
Johann-S committed
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
      config = $.extend(
        {},
        this.constructor.Default,
        $(this._element).data(),
        config
      )

      Util.typeCheckConfig(
        NAME,
        config,
        this.constructor.DefaultType
      )

      return config
    }

    _getMenuElement() {
      if (!this._menu) {
233
        const parent = Dropdown._getParentFromElement(this._element)
Johann-S's avatar
Johann-S committed
234
235
236
237
        this._menu = $(parent).find(Selector.MENU)[0]
      }
      return this._menu
    }
fat's avatar
fat committed
238
239
240
241
242

    // static

    static _jQueryInterface(config) {
      return this.each(function () {
243
        let data = $(this).data(DATA_KEY)
244
        const _config = typeof config === 'object' ? config : null
fat's avatar
fat committed
245
246

        if (!data) {
Johann-S's avatar
Johann-S committed
247
          data = new Dropdown(this, _config)
248
          $(this).data(DATA_KEY, data)
fat's avatar
fat committed
249
250
251
        }

        if (typeof config === 'string') {
252
253
254
          if (data[config] === undefined) {
            throw new Error(`No method named "${config}"`)
          }
fat's avatar
fat committed
255
256
257
258
259
260
          data[config].call(this)
        }
      })
    }

    static _clearMenus(event) {
Pierre-Denis Vanduynslager's avatar
Pierre-Denis Vanduynslager committed
261
262
      if (event && (event.which === RIGHT_MOUSE_BUTTON_WHICH ||
        event.type === 'keyup' && event.which !== TAB_KEYCODE)) {
fat's avatar
fat committed
263
264
265
        return
      }

266
      const toggles = $.makeArray($(Selector.DATA_TOGGLE))
fat's avatar
fat committed
267
      for (let i = 0; i < toggles.length; i++) {
268
        const parent        = Dropdown._getParentFromElement(toggles[i])
269
        const context         = $(toggles[i]).data(DATA_KEY)
270
271
272
        const relatedTarget = {
          relatedTarget : toggles[i]
        }
fat's avatar
fat committed
273

Johann-S's avatar
Johann-S committed
274
275
276
277
        if (!context) {
          continue
        }

278
        const dropdownMenu = context._menu
Starsam80's avatar
Starsam80 committed
279
        if (!$(parent).hasClass(ClassName.SHOW)) {
fat's avatar
fat committed
280
281
282
          continue
        }

283
        if (event && (event.type === 'click' &&
Pierre-Denis Vanduynslager's avatar
Pierre-Denis Vanduynslager committed
284
            /input|textarea/i.test(event.target.tagName) || event.type === 'keyup' && event.which === TAB_KEYCODE)
285
            && $.contains(parent, event.target)) {
fat's avatar
fat committed
286
287
288
          continue
        }

289
        const hideEvent = $.Event(Event.HIDE, relatedTarget)
fat's avatar
fat committed
290
291
292
293
294
        $(parent).trigger(hideEvent)
        if (hideEvent.isDefaultPrevented()) {
          continue
        }

295
296
297
        // if this is a touch-enabled device we remove the extra
        // empty mouseover listeners we added for iOS support
        if ('ontouchstart' in document.documentElement) {
298
          $('body').children().off('mouseover', null, $.noop)
299
300
        }

fat's avatar
fat committed
301
302
        toggles[i].setAttribute('aria-expanded', 'false')

Johann-S's avatar
Johann-S committed
303
        $(dropdownMenu).removeClass(ClassName.SHOW)
fat's avatar
fat committed
304
        $(parent)
Starsam80's avatar
Starsam80 committed
305
          .removeClass(ClassName.SHOW)
Jacob Thornton's avatar
Jacob Thornton committed
306
          .trigger($.Event(Event.HIDDEN, relatedTarget))
fat's avatar
fat committed
307
308
309
310
311
      }
    }

    static _getParentFromElement(element) {
      let parent
312
      const selector = Util.getSelectorFromElement(element)
fat's avatar
fat committed
313
314
315
316
317
318
319
320
321

      if (selector) {
        parent = $(selector)[0]
      }

      return parent || element.parentNode
    }

    static _dataApiKeydownHandler(event) {
Pierre-Denis Vanduynslager's avatar
Pierre-Denis Vanduynslager committed
322
      if (!REGEXP_KEYDOWN.test(event.which) || /button/i.test(event.target.tagName) && event.which === SPACE_KEYCODE ||
fat's avatar
fat committed
323
324
325
326
327
328
329
330
331
332
333
         /input|textarea/i.test(event.target.tagName)) {
        return
      }

      event.preventDefault()
      event.stopPropagation()

      if (this.disabled || $(this).hasClass(ClassName.DISABLED)) {
        return
      }

334
      const parent   = Dropdown._getParentFromElement(this)
Starsam80's avatar
Starsam80 committed
335
      const isActive = $(parent).hasClass(ClassName.SHOW)
fat's avatar
fat committed
336

337
338
      if (!isActive && (event.which !== ESCAPE_KEYCODE || event.which !== SPACE_KEYCODE) ||
           isActive && (event.which === ESCAPE_KEYCODE || event.which === SPACE_KEYCODE)) {
fat's avatar
fat committed
339

340
        if (event.which === ESCAPE_KEYCODE) {
341
          const toggle = $(parent).find(Selector.DATA_TOGGLE)[0]
fat's avatar
fat committed
342
343
344
345
346
347
348
          $(toggle).trigger('focus')
        }

        $(this).trigger('click')
        return
      }

349
      const items = $(parent).find(Selector.VISIBLE_ITEMS).get()
fat's avatar
fat committed
350
351
352
353
354
355
356

      if (!items.length) {
        return
      }

      let index = items.indexOf(event.target)

357
      if (event.which === ARROW_UP_KEYCODE && index > 0) { // up
Jacob Thornton's avatar
Jacob Thornton committed
358
359
360
        index--
      }

361
      if (event.which === ARROW_DOWN_KEYCODE && index < items.length - 1) { // down
Jacob Thornton's avatar
Jacob Thornton committed
362
363
364
        index++
      }

365
      if (index < 0) {
Jacob Thornton's avatar
Jacob Thornton committed
366
367
        index = 0
      }
fat's avatar
fat committed
368
369
370
371
372
373
374
375
376
377
378
379
380
381

      items[index].focus()
    }

  }


  /**
   * ------------------------------------------------------------------------
   * Data Api implementation
   * ------------------------------------------------------------------------
   */

  $(document)
fat's avatar
fat committed
382
    .on(Event.KEYDOWN_DATA_API, Selector.DATA_TOGGLE,  Dropdown._dataApiKeydownHandler)
383
    .on(Event.KEYDOWN_DATA_API, Selector.MENU, Dropdown._dataApiKeydownHandler)
Pierre-Denis Vanduynslager's avatar
Pierre-Denis Vanduynslager committed
384
    .on(`${Event.CLICK_DATA_API} ${Event.KEYUP_DATA_API}`, Dropdown._clearMenus)
fat's avatar
fat committed
385
    .on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, Dropdown.prototype.toggle)
Jacob Thornton's avatar
Jacob Thornton committed
386
387
388
    .on(Event.CLICK_DATA_API, Selector.FORM_CHILD, (e) => {
      e.stopPropagation()
    })
fat's avatar
fat committed
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408


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

  $.fn[NAME]             = Dropdown._jQueryInterface
  $.fn[NAME].Constructor = Dropdown
  $.fn[NAME].noConflict  = function () {
    $.fn[NAME] = JQUERY_NO_CONFLICT
    return Dropdown._jQueryInterface
  }

  return Dropdown

})(jQuery)

export default Dropdown