tooltip.js 18.2 KB
Newer Older
1
2
import $ from 'jquery'
import Popper from 'popper.js'
3
4
5
6
import Util from './util'

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

12
const Tooltip = (($) => {
13
14
15
16
17
18
19
  /**
   * ------------------------------------------------------------------------
   * Constants
   * ------------------------------------------------------------------------
   */

  const NAME                = 'tooltip'
Mark Otto's avatar
Mark Otto committed
20
  const VERSION             = '4.0.0'
21
  const DATA_KEY            = 'bs.tooltip'
fat's avatar
fat committed
22
  const EVENT_KEY           = `.${DATA_KEY}`
23
24
  const JQUERY_NO_CONFLICT  = $.fn[NAME]
  const TRANSITION_DURATION = 150
Johann-S's avatar
Johann-S committed
25
26
  const CLASS_PREFIX        = 'bs-tooltip'
  const BSCLS_PREFIX_REGEX = new RegExp(`(^|\\s)${CLASS_PREFIX}\\S+`, 'g')
27

fat's avatar
fat committed
28
  const DefaultType = {
29
30
31
32
33
34
35
36
37
38
    animation           : 'boolean',
    template            : 'string',
    title               : '(string|element|function)',
    trigger             : 'string',
    delay               : '(number|object)',
    html                : 'boolean',
    selector            : '(string|boolean)',
    placement           : '(string|function)',
    offset              : '(number|string)',
    container           : '(string|element|boolean)',
39
40
    fallbackPlacement   : '(string|array)',
    boundary            : '(string|element)'
41
42
  }

fat's avatar
fat committed
43
  const AttachmentMap = {
Johann-S's avatar
Johann-S committed
44
    AUTO   : 'auto',
45
46
47
48
    TOP    : 'top',
    RIGHT  : 'right',
    BOTTOM : 'bottom',
    LEFT   : 'left'
49
50
  }

51
52
  const Default = {
    animation           : true,
XhmikosR's avatar
XhmikosR committed
53
54
55
    template            : '<div class="tooltip" role="tooltip">' +
                        '<div class="arrow"></div>' +
                        '<div class="tooltip-inner"></div></div>',
56
57
58
59
60
61
62
63
    trigger             : 'hover focus',
    title               : '',
    delay               : 0,
    html                : false,
    selector            : false,
    placement           : 'top',
    offset              : 0,
    container           : false,
64
65
    fallbackPlacement   : 'flip',
    boundary            : 'scrollParent'
66
67
  }

68
  const HoverState = {
Starsam80's avatar
Starsam80 committed
69
70
    SHOW : 'show',
    OUT  : 'out'
71
72
73
  }

  const Event = {
fat's avatar
fat committed
74
75
76
77
78
79
80
81
82
83
    HIDE       : `hide${EVENT_KEY}`,
    HIDDEN     : `hidden${EVENT_KEY}`,
    SHOW       : `show${EVENT_KEY}`,
    SHOWN      : `shown${EVENT_KEY}`,
    INSERTED   : `inserted${EVENT_KEY}`,
    CLICK      : `click${EVENT_KEY}`,
    FOCUSIN    : `focusin${EVENT_KEY}`,
    FOCUSOUT   : `focusout${EVENT_KEY}`,
    MOUSEENTER : `mouseenter${EVENT_KEY}`,
    MOUSELEAVE : `mouseleave${EVENT_KEY}`
84
85
86
  }

  const ClassName = {
Starsam80's avatar
Starsam80 committed
87
88
    FADE : 'fade',
    SHOW : 'show'
89
90
91
92
  }

  const Selector = {
    TOOLTIP       : '.tooltip',
93
94
    TOOLTIP_INNER : '.tooltip-inner',
    ARROW         : '.arrow'
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
  }

  const Trigger = {
    HOVER  : 'hover',
    FOCUS  : 'focus',
    CLICK  : 'click',
    MANUAL : 'manual'
  }


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

  class Tooltip {
    constructor(element, config) {
113
114
115
116
117
      /**
       * Check for Popper dependency
       * Popper - https://popper.js.org
       */
      if (typeof Popper === 'undefined') {
XhmikosR's avatar
XhmikosR committed
118
        throw new TypeError('Bootstrap tooltips require Popper.js (https://popper.js.org)')
119
      }
120
121

      // private
122
123
124
125
      this._isEnabled     = true
      this._timeout       = 0
      this._hoverState    = ''
      this._activeTrigger = {}
126
      this._popper        = null
127

XhmikosR's avatar
XhmikosR committed
128
      // Protected
129
130
131
132
133
134
135
      this.element = element
      this.config  = this._getConfig(config)
      this.tip     = null

      this._setListeners()
    }

XhmikosR's avatar
XhmikosR committed
136
    // Getters
137
138
139
140
141
142
143
144
145

    static get VERSION() {
      return VERSION
    }

    static get Default() {
      return Default
    }

fat's avatar
fat committed
146
147
148
149
150
151
152
153
154
155
156
157
    static get NAME() {
      return NAME
    }

    static get DATA_KEY() {
      return DATA_KEY
    }

    static get Event() {
      return Event
    }

fat's avatar
fat committed
158
159
160
    static get EVENT_KEY() {
      return EVENT_KEY
    }
fat's avatar
fat committed
161

fat's avatar
fat committed
162
163
164
165
    static get DefaultType() {
      return DefaultType
    }

XhmikosR's avatar
XhmikosR committed
166
    // Public
167
168
169
170
171
172
173
174
175
176
177
178
179
180

    enable() {
      this._isEnabled = true
    }

    disable() {
      this._isEnabled = false
    }

    toggleEnabled() {
      this._isEnabled = !this._isEnabled
    }

    toggle(event) {
181
182
183
184
      if (!this._isEnabled) {
        return
      }

185
      if (event) {
186
        const dataKey = this.constructor.DATA_KEY
Jacob Thornton's avatar
Jacob Thornton committed
187
        let context = $(event.currentTarget).data(dataKey)
188
189
190
191
192
193

        if (!context) {
          context = new this.constructor(
            event.currentTarget,
            this._getDelegateConfig()
          )
fat's avatar
fat committed
194
          $(event.currentTarget).data(dataKey, context)
195
196
197
198
199
200
201
202
203
204
        }

        context._activeTrigger.click = !context._activeTrigger.click

        if (context._isWithActiveTrigger()) {
          context._enter(null, context)
        } else {
          context._leave(null, context)
        }
      } else {
Starsam80's avatar
Starsam80 committed
205
        if ($(this.getTipElement()).hasClass(ClassName.SHOW)) {
Jacob Thornton's avatar
Jacob Thornton committed
206
207
208
209
210
          this._leave(null, this)
          return
        }

        this._enter(null, this)
211
212
213
      }
    }

fat's avatar
fat committed
214
    dispose() {
215
      clearTimeout(this._timeout)
fat's avatar
fat committed
216

fat's avatar
fat committed
217
      $.removeData(this.element, this.constructor.DATA_KEY)
fat's avatar
fat committed
218

fat's avatar
fat committed
219
      $(this.element).off(this.constructor.EVENT_KEY)
220
      $(this.element).closest('.modal').off('hide.bs.modal')
fat's avatar
fat committed
221
222
223
224
225

      if (this.tip) {
        $(this.tip).remove()
      }

226
227
228
229
      this._isEnabled     = null
      this._timeout       = null
      this._hoverState    = null
      this._activeTrigger = null
230
231
232
      if (this._popper !== null) {
        this._popper.destroy()
      }
fat's avatar
fat committed
233

234
      this._popper = null
fat's avatar
fat committed
235
236
237
      this.element = null
      this.config  = null
      this.tip     = null
238
239
240
    }

    show() {
241
242
243
      if ($(this.element).css('display') === 'none') {
        throw new Error('Please use show on visible elements')
      }
244

245
      const showEvent = $.Event(this.constructor.Event.SHOW)
246
247
248
      if (this.isWithContent() && this._isEnabled) {
        $(this.element).trigger(showEvent)

249
        const isInTheDom = $.contains(
250
251
252
253
254
255
256
257
          this.element.ownerDocument.documentElement,
          this.element
        )

        if (showEvent.isDefaultPrevented() || !isInTheDom) {
          return
        }

258
259
        const tip   = this.getTipElement()
        const tipId = Util.getUID(this.constructor.NAME)
260
261
262
263
264
265
266
267
268
269

        tip.setAttribute('id', tipId)
        this.element.setAttribute('aria-describedby', tipId)

        this.setContent()

        if (this.config.animation) {
          $(tip).addClass(ClassName.FADE)
        }

XhmikosR's avatar
XhmikosR committed
270
271
272
        const placement  = typeof this.config.placement === 'function'
          ? this.config.placement.call(this, tip, this.element)
          : this.config.placement
273

274
        const attachment = this._getAttachment(placement)
Johann-S's avatar
Johann-S committed
275
        this.addAttachmentClass(attachment)
276

277
278
        const container = this.config.container === false ? document.body : $(this.config.container)

279
280
281
282
283
        $(tip).data(this.constructor.DATA_KEY, this)

        if (!$.contains(this.element.ownerDocument.documentElement, this.tip)) {
          $(tip).appendTo(container)
        }
284

fat's avatar
fat committed
285
        $(this.element).trigger(this.constructor.Event.INSERTED)
286

287
        this._popper = new Popper(this.element, tip, {
288
289
290
291
          placement: attachment,
          modifiers: {
            offset: {
              offset: this.config.offset
292
            },
293
294
295
296
297
            flip: {
              behavior: this.config.fallbackPlacement
            },
            arrow: {
              element: Selector.ARROW
298
299
300
            },
            preventOverflow: {
              boundariesElement: this.config.boundary
301
            }
302
          },
303
          onCreate: (data) => {
304
305
306
            if (data.originalPlacement !== data.placement) {
              this._handlePopperPlacementChange(data)
            }
307
          },
XhmikosR's avatar
XhmikosR committed
308
          onUpdate: (data) => {
309
            this._handlePopperPlacementChange(data)
310
          }
311
312
        })

Starsam80's avatar
Starsam80 committed
313
        $(tip).addClass(ClassName.SHOW)
314

XhmikosR's avatar
XhmikosR committed
315
        // If this is a touch-enabled device we add extra
Patrick H. Lauke's avatar
Patrick H. Lauke committed
316
317
318
        // 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
319
        if ('ontouchstart' in document.documentElement) {
320
          $(document.body).children().on('mouseover', null, $.noop)
Patrick H. Lauke's avatar
Patrick H. Lauke committed
321
322
        }

323
        const complete = () => {
324
325
326
          if (this.config.animation) {
            this._fixTransition()
          }
327
          const prevHoverState = this._hoverState
328
          this._hoverState     = null
329

fat's avatar
fat committed
330
          $(this.element).trigger(this.constructor.Event.SHOWN)
331
332
333
334
335
336

          if (prevHoverState === HoverState.OUT) {
            this._leave(null, this)
          }
        }

Jacob Thornton's avatar
Jacob Thornton committed
337
        if (Util.supportsTransitionEnd() && $(this.tip).hasClass(ClassName.FADE)) {
338
339
          $(this.tip)
            .one(Util.TRANSITION_END, complete)
Jacob Thornton's avatar
Jacob Thornton committed
340
            .emulateTransitionEnd(Tooltip._TRANSITION_DURATION)
341
        } else {
342
343
          complete()
        }
344
345
346
347
      }
    }

    hide(callback) {
348
349
      const tip       = this.getTipElement()
      const hideEvent = $.Event(this.constructor.Event.HIDE)
XhmikosR's avatar
XhmikosR committed
350
      const complete = () => {
Starsam80's avatar
Starsam80 committed
351
        if (this._hoverState !== HoverState.SHOW && tip.parentNode) {
352
353
354
          tip.parentNode.removeChild(tip)
        }

Johann-S's avatar
Johann-S committed
355
        this._cleanTipClass()
356
        this.element.removeAttribute('aria-describedby')
fat's avatar
fat committed
357
        $(this.element).trigger(this.constructor.Event.HIDDEN)
358
359
360
361
        if (this._popper !== null) {
          this._popper.destroy()
        }

362
363
364
365
366
367
368
369
370
371
372
        if (callback) {
          callback()
        }
      }

      $(this.element).trigger(hideEvent)

      if (hideEvent.isDefaultPrevented()) {
        return
      }

Starsam80's avatar
Starsam80 committed
373
      $(tip).removeClass(ClassName.SHOW)
374

XhmikosR's avatar
XhmikosR committed
375
      // If this is a touch-enabled device we remove the extra
Patrick H. Lauke's avatar
Patrick H. Lauke committed
376
377
      // empty mouseover listeners we added for iOS support
      if ('ontouchstart' in document.documentElement) {
378
        $(document.body).children().off('mouseover', null, $.noop)
Patrick H. Lauke's avatar
Patrick H. Lauke committed
379
380
      }

381
382
383
384
      this._activeTrigger[Trigger.CLICK] = false
      this._activeTrigger[Trigger.FOCUS] = false
      this._activeTrigger[Trigger.HOVER] = false

385
      if (Util.supportsTransitionEnd() &&
386
          $(this.tip).hasClass(ClassName.FADE)) {
387
388
389
390
391
392
393
394
395
396
        $(tip)
          .one(Util.TRANSITION_END, complete)
          .emulateTransitionEnd(TRANSITION_DURATION)
      } else {
        complete()
      }

      this._hoverState = ''
    }

397
398
399
400
401
    update() {
      if (this._popper !== null) {
        this._popper.scheduleUpdate()
      }
    }
402

XhmikosR's avatar
XhmikosR committed
403
    // Protected
404
405

    isWithContent() {
Jacob Thornton's avatar
Jacob Thornton committed
406
      return Boolean(this.getTitle())
407
408
    }

Johann-S's avatar
Johann-S committed
409
410
411
412
    addAttachmentClass(attachment) {
      $(this.getTipElement()).addClass(`${CLASS_PREFIX}-${attachment}`)
    }

413
    getTipElement() {
414
415
      this.tip = this.tip || $(this.config.template)[0]
      return this.tip
416
417
418
    }

    setContent() {
419
      const $tip = $(this.getTipElement())
420
      this.setElementContent($tip.find(Selector.TOOLTIP_INNER), this.getTitle())
Starsam80's avatar
Starsam80 committed
421
      $tip.removeClass(`${ClassName.FADE} ${ClassName.SHOW}`)
422
423
    }

424
    setElementContent($element, content) {
425
      const html = this.config.html
426
      if (typeof content === 'object' && (content.nodeType || content.jquery)) {
XhmikosR's avatar
XhmikosR committed
427
        // Content is a DOM node or a jQuery
428
429
430
431
432
433
434
435
436
437
438
439
        if (html) {
          if (!$(content).parent().is($element)) {
            $element.empty().append(content)
          }
        } else {
          $element.text($(content).text())
        }
      } else {
        $element[html ? 'html' : 'text'](content)
      }
    }

440
441
442
443
    getTitle() {
      let title = this.element.getAttribute('data-original-title')

      if (!title) {
XhmikosR's avatar
XhmikosR committed
444
445
446
        title = typeof this.config.title === 'function'
          ? this.config.title.call(this.element)
          : this.config.title
447
448
449
450
451
      }

      return title
    }

XhmikosR's avatar
XhmikosR committed
452
    // Private
453

fat's avatar
fat committed
454
455
456
457
    _getAttachment(placement) {
      return AttachmentMap[placement.toUpperCase()]
    }

458
    _setListeners() {
459
      const triggers = this.config.trigger.split(' ')
460
461
462
463

      triggers.forEach((trigger) => {
        if (trigger === 'click') {
          $(this.element).on(
fat's avatar
fat committed
464
            this.constructor.Event.CLICK,
465
            this.config.selector,
466
            (event) => this.toggle(event)
467
468
          )
        } else if (trigger !== Trigger.MANUAL) {
XhmikosR's avatar
XhmikosR committed
469
470
471
472
473
474
          const eventIn = trigger === Trigger.HOVER
            ? this.constructor.Event.MOUSEENTER
            : this.constructor.Event.FOCUSIN
          const eventOut = trigger === Trigger.HOVER
            ? this.constructor.Event.MOUSELEAVE
            : this.constructor.Event.FOCUSOUT
475
476
477
478
479

          $(this.element)
            .on(
              eventIn,
              this.config.selector,
480
              (event) => this._enter(event)
481
482
483
484
            )
            .on(
              eventOut,
              this.config.selector,
485
              (event) => this._leave(event)
486
487
            )
        }
488
489
490
491
492

        $(this.element).closest('.modal').on(
          'hide.bs.modal',
          () => this.hide()
        )
493
494
495
      })

      if (this.config.selector) {
496
497
        this.config = {
          ...this.config,
XhmikosR's avatar
XhmikosR committed
498
499
          trigger: 'manual',
          selector: ''
500
        }
501
502
503
504
505
506
      } else {
        this._fixTitle()
      }
    }

    _fixTitle() {
507
      const titleType = typeof this.element.getAttribute('data-original-title')
508
      if (this.element.getAttribute('title') ||
509
         titleType !== 'string') {
510
511
512
513
514
515
516
517
518
        this.element.setAttribute(
          'data-original-title',
          this.element.getAttribute('title') || ''
        )
        this.element.setAttribute('title', '')
      }
    }

    _enter(event, context) {
519
      const dataKey = this.constructor.DATA_KEY
fat's avatar
fat committed
520
521

      context = context || $(event.currentTarget).data(dataKey)
522
523
524
525
526
527

      if (!context) {
        context = new this.constructor(
          event.currentTarget,
          this._getDelegateConfig()
        )
fat's avatar
fat committed
528
        $(event.currentTarget).data(dataKey, context)
529
530
531
532
      }

      if (event) {
        context._activeTrigger[
Jacob Thornton's avatar
Jacob Thornton committed
533
          event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER
534
535
536
        ] = true
      }

Starsam80's avatar
Starsam80 committed
537
538
539
      if ($(context.getTipElement()).hasClass(ClassName.SHOW) ||
         context._hoverState === HoverState.SHOW) {
        context._hoverState = HoverState.SHOW
540
541
542
543
544
        return
      }

      clearTimeout(context._timeout)

Starsam80's avatar
Starsam80 committed
545
      context._hoverState = HoverState.SHOW
546
547
548
549
550
551
552

      if (!context.config.delay || !context.config.delay.show) {
        context.show()
        return
      }

      context._timeout = setTimeout(() => {
Starsam80's avatar
Starsam80 committed
553
        if (context._hoverState === HoverState.SHOW) {
554
555
556
557
558
559
          context.show()
        }
      }, context.config.delay.show)
    }

    _leave(event, context) {
560
      const dataKey = this.constructor.DATA_KEY
fat's avatar
fat committed
561
562

      context = context || $(event.currentTarget).data(dataKey)
563
564
565
566
567
568

      if (!context) {
        context = new this.constructor(
          event.currentTarget,
          this._getDelegateConfig()
        )
fat's avatar
fat committed
569
        $(event.currentTarget).data(dataKey, context)
570
571
572
573
      }

      if (event) {
        context._activeTrigger[
Jacob Thornton's avatar
Jacob Thornton committed
574
          event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
        ] = false
      }

      if (context._isWithActiveTrigger()) {
        return
      }

      clearTimeout(context._timeout)

      context._hoverState = HoverState.OUT

      if (!context.config.delay || !context.config.delay.hide) {
        context.hide()
        return
      }

      context._timeout = setTimeout(() => {
        if (context._hoverState === HoverState.OUT) {
          context.hide()
        }
      }, context.config.delay.hide)
    }

    _isWithActiveTrigger() {
599
      for (const trigger in this._activeTrigger) {
600
601
602
603
604
605
606
607
608
        if (this._activeTrigger[trigger]) {
          return true
        }
      }

      return false
    }

    _getConfig(config) {
609
610
611
612
613
      config = {
        ...this.constructor.Default,
        ...$(this.element).data(),
        ...config
      }
614

615
      if (typeof config.delay === 'number') {
616
        config.delay = {
XhmikosR's avatar
XhmikosR committed
617
618
          show: config.delay,
          hide: config.delay
619
620
621
        }
      }

622
      if (typeof config.title === 'number') {
623
624
625
        config.title = config.title.toString()
      }

626
      if (typeof config.content === 'number') {
627
628
629
        config.content = config.content.toString()
      }

fat's avatar
fat committed
630
631
632
633
634
635
      Util.typeCheckConfig(
        NAME,
        config,
        this.constructor.DefaultType
      )

636
637
638
639
      return config
    }

    _getDelegateConfig() {
640
      const config = {}
641
642

      if (this.config) {
643
        for (const key in this.config) {
Jacob Thornton's avatar
Jacob Thornton committed
644
645
          if (this.constructor.Default[key] !== this.config[key]) {
            config[key] = this.config[key]
646
647
648
649
650
651
652
          }
        }
      }

      return config
    }

Johann-S's avatar
Johann-S committed
653
654
655
656
657
658
    _cleanTipClass() {
      const $tip = $(this.getTipElement())
      const tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX)
      if (tabClass !== null && tabClass.length > 0) {
        $tip.removeClass(tabClass.join(''))
      }
Johann-S's avatar
Johann-S committed
659
660
    }

661
    _handlePopperPlacementChange(data) {
662
663
      this._cleanTipClass()
      this.addAttachmentClass(this._getAttachment(data.placement))
664
    }
665

666
    _fixTransition() {
XhmikosR's avatar
XhmikosR committed
667
      const tip = this.getTipElement()
668
669
      const initConfigAnimation = this.config.animation
      if (tip.getAttribute('x-placement') !== null) {
670
        return
671
672
673
674
675
676
677
678
      }
      $(tip).removeClass(ClassName.FADE)
      this.config.animation = false
      this.hide()
      this.show()
      this.config.animation = initConfigAnimation
    }

XhmikosR's avatar
XhmikosR committed
679
    // Static
680
681
682

    static _jQueryInterface(config) {
      return this.each(function () {
XhmikosR's avatar
XhmikosR committed
683
        let data = $(this).data(DATA_KEY)
684
        const _config = typeof config === 'object' && config
685

Johann-S's avatar
Johann-S committed
686
        if (!data && /dispose|hide/.test(config)) {
687
688
689
690
691
692
693
694
695
          return
        }

        if (!data) {
          data = new Tooltip(this, _config)
          $(this).data(DATA_KEY, data)
        }

        if (typeof config === 'string') {
XhmikosR's avatar
XhmikosR committed
696
          if (typeof data[config] === 'undefined') {
XhmikosR's avatar
XhmikosR committed
697
            throw new TypeError(`No method named "${config}"`)
698
          }
699
700
701
702
703
704
705
706
707
708
709
710
          data[config]()
        }
      })
    }
  }

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

XhmikosR's avatar
XhmikosR committed
711
  $.fn[NAME] = Tooltip._jQueryInterface
712
  $.fn[NAME].Constructor = Tooltip
XhmikosR's avatar
XhmikosR committed
713
  $.fn[NAME].noConflict = function () {
714
715
716
717
718
    $.fn[NAME] = JQUERY_NO_CONFLICT
    return Tooltip._jQueryInterface
  }

  return Tooltip
719
})($, Popper)
720
721

export default Tooltip