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


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

13
const Tooltip = (($) => {
14
15
16
17
18
19
20
21

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

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

fat's avatar
fat committed
30
  const DefaultType = {
31
32
33
34
35
36
37
38
39
40
41
    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)',
    fallbackPlacement   : '(string|array)'
42
43
  }

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

52
53
54
  const Default = {
    animation           : true,
    template            : '<div class="tooltip" role="tooltip">'
55
                        + '<div class="arrow"></div>'
56
57
58
59
60
61
62
63
64
                        + '<div class="tooltip-inner"></div></div>',
    trigger             : 'hover focus',
    title               : '',
    delay               : 0,
    html                : false,
    selector            : false,
    placement           : 'top',
    offset              : 0,
    container           : false,
65
    fallbackPlacement   : 'flip'
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
113
  }

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


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

  class Tooltip {

    constructor(element, config) {
114
115
116
117
118
119
120
      /**
       * Check for Popper dependency
       * Popper - https://popper.js.org
       */
      if (typeof Popper === 'undefined') {
        throw new Error('Bootstrap tooltips require Popper.js (https://popper.js.org)')
      }
121
122

      // private
123
124
125
126
      this._isEnabled     = true
      this._timeout       = 0
      this._hoverState    = ''
      this._activeTrigger = {}
127
      this._popper        = null
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148

      // protected
      this.element = element
      this.config  = this._getConfig(config)
      this.tip     = null

      this._setListeners()

    }


    // getters

    static get VERSION() {
      return VERSION
    }

    static get Default() {
      return Default
    }

fat's avatar
fat committed
149
150
151
152
153
154
155
156
157
158
159
160
    static get NAME() {
      return NAME
    }

    static get DATA_KEY() {
      return DATA_KEY
    }

    static get Event() {
      return Event
    }

fat's avatar
fat committed
161
162
163
    static get EVENT_KEY() {
      return EVENT_KEY
    }
fat's avatar
fat committed
164

fat's avatar
fat committed
165
166
167
168
    static get DefaultType() {
      return DefaultType
    }

169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184

    // public

    enable() {
      this._isEnabled = true
    }

    disable() {
      this._isEnabled = false
    }

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

    toggle(event) {
185
186
187
188
      if (!this._isEnabled) {
        return
      }

189
      if (event) {
190
        const dataKey = this.constructor.DATA_KEY
Jacob Thornton's avatar
Jacob Thornton committed
191
        let context = $(event.currentTarget).data(dataKey)
192
193
194
195
196
197

        if (!context) {
          context = new this.constructor(
            event.currentTarget,
            this._getDelegateConfig()
          )
fat's avatar
fat committed
198
          $(event.currentTarget).data(dataKey, context)
199
200
201
202
203
204
205
206
207
208
209
        }

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

        if (context._isWithActiveTrigger()) {
          context._enter(null, context)
        } else {
          context._leave(null, context)
        }

      } else {
Jacob Thornton's avatar
Jacob Thornton committed
210

Starsam80's avatar
Starsam80 committed
211
        if ($(this.getTipElement()).hasClass(ClassName.SHOW)) {
Jacob Thornton's avatar
Jacob Thornton committed
212
213
214
215
216
          this._leave(null, this)
          return
        }

        this._enter(null, this)
217
218
219
      }
    }

fat's avatar
fat committed
220
    dispose() {
221
      clearTimeout(this._timeout)
fat's avatar
fat committed
222

fat's avatar
fat committed
223
      $.removeData(this.element, this.constructor.DATA_KEY)
fat's avatar
fat committed
224

fat's avatar
fat committed
225
      $(this.element).off(this.constructor.EVENT_KEY)
226
      $(this.element).closest('.modal').off('hide.bs.modal')
fat's avatar
fat committed
227
228
229
230
231

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

232
233
234
235
      this._isEnabled     = null
      this._timeout       = null
      this._hoverState    = null
      this._activeTrigger = null
236
237
238
      if (this._popper !== null) {
        this._popper.destroy()
      }
fat's avatar
fat committed
239

240
      this._popper = null
fat's avatar
fat committed
241
242
243
      this.element = null
      this.config  = null
      this.tip     = null
244
245
246
    }

    show() {
247
248
249
      if ($(this.element).css('display') === 'none') {
        throw new Error('Please use show on visible elements')
      }
250

251
      const showEvent = $.Event(this.constructor.Event.SHOW)
252
253
254
      if (this.isWithContent() && this._isEnabled) {
        $(this.element).trigger(showEvent)

255
        const isInTheDom = $.contains(
256
257
258
259
260
261
262
263
          this.element.ownerDocument.documentElement,
          this.element
        )

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

264
265
        const tip   = this.getTipElement()
        const tipId = Util.getUID(this.constructor.NAME)
266
267
268
269
270
271
272
273
274
275

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

        this.setContent()

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

276
        const placement  = typeof this.config.placement === 'function' ?
fat's avatar
fat committed
277
278
          this.config.placement.call(this, tip, this.element) :
          this.config.placement
279

280
        const attachment = this._getAttachment(placement)
Johann-S's avatar
Johann-S committed
281
        this.addAttachmentClass(attachment)
282

283
284
        const container = this.config.container === false ? document.body : $(this.config.container)

285
286
287
288
289
        $(tip).data(this.constructor.DATA_KEY, this)

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

fat's avatar
fat committed
291
        $(this.element).trigger(this.constructor.Event.INSERTED)
292

293
        this._popper = new Popper(this.element, tip, {
294
295
296
297
          placement: attachment,
          modifiers: {
            offset: {
              offset: this.config.offset
298
            },
299
300
301
302
303
            flip: {
              behavior: this.config.fallbackPlacement
            },
            arrow: {
              element: Selector.ARROW
304
            }
305
          },
306
          onCreate: (data) => {
307
308
309
            if (data.originalPlacement !== data.placement) {
              this._handlePopperPlacementChange(data)
            }
310
311
312
          },
          onUpdate : (data) => {
            this._handlePopperPlacementChange(data)
313
          }
314
315
        })

Starsam80's avatar
Starsam80 committed
316
        $(tip).addClass(ClassName.SHOW)
317

Patrick H. Lauke's avatar
Patrick H. Lauke committed
318
319
320
321
        // 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
322
        if ('ontouchstart' in document.documentElement) {
Patrick H. Lauke's avatar
Patrick H. Lauke committed
323
324
325
          $('body').children().on('mouseover', null, $.noop)
        }

326
        const complete = () => {
327
328
329
          if (this.config.animation) {
            this._fixTransition()
          }
330
          const prevHoverState = this._hoverState
331
          this._hoverState     = null
332

fat's avatar
fat committed
333
          $(this.element).trigger(this.constructor.Event.SHOWN)
334
335
336
337
338
339

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

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

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

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

365
366
367
368
369
370
371
372
373
374
375
        if (callback) {
          callback()
        }
      }

      $(this.element).trigger(hideEvent)

      if (hideEvent.isDefaultPrevented()) {
        return
      }

Starsam80's avatar
Starsam80 committed
376
      $(tip).removeClass(ClassName.SHOW)
377

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

384
385
386
387
      this._activeTrigger[Trigger.CLICK] = false
      this._activeTrigger[Trigger.FOCUS] = false
      this._activeTrigger[Trigger.HOVER] = false

388
      if (Util.supportsTransitionEnd() &&
389
          $(this.tip).hasClass(ClassName.FADE)) {
390

391
392
393
394
395
396
397
398
399
        $(tip)
          .one(Util.TRANSITION_END, complete)
          .emulateTransitionEnd(TRANSITION_DURATION)

      } else {
        complete()
      }

      this._hoverState = ''
Patrick H. Lauke's avatar
Patrick H. Lauke committed
400

401
402
    }

403
404
405
406
407
    update() {
      if (this._popper !== null) {
        this._popper.scheduleUpdate()
      }
    }
408
409
410
411

    // protected

    isWithContent() {
Jacob Thornton's avatar
Jacob Thornton committed
412
      return Boolean(this.getTitle())
413
414
    }

Johann-S's avatar
Johann-S committed
415
416
417
418
    addAttachmentClass(attachment) {
      $(this.getTipElement()).addClass(`${CLASS_PREFIX}-${attachment}`)
    }

419
    getTipElement() {
420
421
      this.tip = this.tip || $(this.config.template)[0]
      return this.tip
422
423
424
    }

    setContent() {
425
      const $tip = $(this.getTipElement())
426
      this.setElementContent($tip.find(Selector.TOOLTIP_INNER), this.getTitle())
Starsam80's avatar
Starsam80 committed
427
      $tip.removeClass(`${ClassName.FADE} ${ClassName.SHOW}`)
428
429
    }

430
    setElementContent($element, content) {
431
      const html = this.config.html
432
433
434
435
436
437
438
439
440
441
442
443
444
445
      if (typeof content === 'object' && (content.nodeType || content.jquery)) {
        // content is a DOM node or a jQuery
        if (html) {
          if (!$(content).parent().is($element)) {
            $element.empty().append(content)
          }
        } else {
          $element.text($(content).text())
        }
      } else {
        $element[html ? 'html' : 'text'](content)
      }
    }

446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
    getTitle() {
      let title = this.element.getAttribute('data-original-title')

      if (!title) {
        title = typeof this.config.title === 'function' ?
          this.config.title.call(this.element) :
          this.config.title
      }

      return title
    }


    // private

fat's avatar
fat committed
461
462
463
464
    _getAttachment(placement) {
      return AttachmentMap[placement.toUpperCase()]
    }

465
    _setListeners() {
466
      const triggers = this.config.trigger.split(' ')
467
468
469
470

      triggers.forEach((trigger) => {
        if (trigger === 'click') {
          $(this.element).on(
fat's avatar
fat committed
471
            this.constructor.Event.CLICK,
472
            this.config.selector,
473
            (event) => this.toggle(event)
474
475
476
          )

        } else if (trigger !== Trigger.MANUAL) {
477
          const eventIn  = trigger === Trigger.HOVER ?
fat's avatar
fat committed
478
479
            this.constructor.Event.MOUSEENTER :
            this.constructor.Event.FOCUSIN
480
          const eventOut = trigger === Trigger.HOVER ?
fat's avatar
fat committed
481
482
            this.constructor.Event.MOUSELEAVE :
            this.constructor.Event.FOCUSOUT
483
484
485
486
487

          $(this.element)
            .on(
              eventIn,
              this.config.selector,
488
              (event) => this._enter(event)
489
490
491
492
            )
            .on(
              eventOut,
              this.config.selector,
493
              (event) => this._leave(event)
494
495
            )
        }
496
497
498
499
500

        $(this.element).closest('.modal').on(
          'hide.bs.modal',
          () => this.hide()
        )
501
502
503
504
505
506
507
508
509
510
511
512
513
      })

      if (this.config.selector) {
        this.config = $.extend({}, this.config, {
          trigger  : 'manual',
          selector : ''
        })
      } else {
        this._fixTitle()
      }
    }

    _fixTitle() {
514
      const titleType = typeof this.element.getAttribute('data-original-title')
515
      if (this.element.getAttribute('title') ||
516
         titleType !== 'string') {
517
518
519
520
521
522
523
524
525
        this.element.setAttribute(
          'data-original-title',
          this.element.getAttribute('title') || ''
        )
        this.element.setAttribute('title', '')
      }
    }

    _enter(event, context) {
526
      const dataKey = this.constructor.DATA_KEY
fat's avatar
fat committed
527
528

      context = context || $(event.currentTarget).data(dataKey)
529
530
531
532
533
534

      if (!context) {
        context = new this.constructor(
          event.currentTarget,
          this._getDelegateConfig()
        )
fat's avatar
fat committed
535
        $(event.currentTarget).data(dataKey, context)
536
537
538
539
      }

      if (event) {
        context._activeTrigger[
Jacob Thornton's avatar
Jacob Thornton committed
540
          event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER
541
542
543
        ] = true
      }

Starsam80's avatar
Starsam80 committed
544
545
546
      if ($(context.getTipElement()).hasClass(ClassName.SHOW) ||
         context._hoverState === HoverState.SHOW) {
        context._hoverState = HoverState.SHOW
547
548
549
550
551
        return
      }

      clearTimeout(context._timeout)

Starsam80's avatar
Starsam80 committed
552
      context._hoverState = HoverState.SHOW
553
554
555
556
557
558
559

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

      context._timeout = setTimeout(() => {
Starsam80's avatar
Starsam80 committed
560
        if (context._hoverState === HoverState.SHOW) {
561
562
563
564
565
566
          context.show()
        }
      }, context.config.delay.show)
    }

    _leave(event, context) {
567
      const dataKey = this.constructor.DATA_KEY
fat's avatar
fat committed
568
569

      context = context || $(event.currentTarget).data(dataKey)
570
571
572
573
574
575

      if (!context) {
        context = new this.constructor(
          event.currentTarget,
          this._getDelegateConfig()
        )
fat's avatar
fat committed
576
        $(event.currentTarget).data(dataKey, context)
577
578
579
580
      }

      if (event) {
        context._activeTrigger[
Jacob Thornton's avatar
Jacob Thornton committed
581
          event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
        ] = 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() {
606
      for (const trigger in this._activeTrigger) {
607
608
609
610
611
612
613
614
615
        if (this._activeTrigger[trigger]) {
          return true
        }
      }

      return false
    }

    _getConfig(config) {
fat's avatar
fat committed
616
617
618
619
620
621
      config = $.extend(
        {},
        this.constructor.Default,
        $(this.element).data(),
        config
      )
622

623
      if (typeof config.delay === 'number') {
624
625
626
627
628
629
        config.delay = {
          show : config.delay,
          hide : config.delay
        }
      }

630
      if (typeof config.title === 'number') {
631
632
633
        config.title = config.title.toString()
      }

634
      if (typeof config.content === 'number') {
635
636
637
        config.content = config.content.toString()
      }

fat's avatar
fat committed
638
639
640
641
642
643
      Util.typeCheckConfig(
        NAME,
        config,
        this.constructor.DefaultType
      )

644
645
646
647
      return config
    }

    _getDelegateConfig() {
648
      const config = {}
649
650

      if (this.config) {
651
        for (const key in this.config) {
Jacob Thornton's avatar
Jacob Thornton committed
652
653
          if (this.constructor.Default[key] !== this.config[key]) {
            config[key] = this.config[key]
654
655
656
657
658
659
660
          }
        }
      }

      return config
    }

Johann-S's avatar
Johann-S committed
661
662
663
664
665
666
    _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
667
668
    }

669
    _handlePopperPlacementChange(data) {
670
671
      this._cleanTipClass()
      this.addAttachmentClass(this._getAttachment(data.placement))
672
    }
673

674
675
676
677
    _fixTransition() {
      const tip                 = this.getTipElement()
      const initConfigAnimation = this.config.animation
      if (tip.getAttribute('x-placement') !== null) {
678
        return
679
680
681
682
683
684
685
686
      }
      $(tip).removeClass(ClassName.FADE)
      this.config.animation = false
      this.hide()
      this.show()
      this.config.animation = initConfigAnimation
    }

687
688
689
690
    // static

    static _jQueryInterface(config) {
      return this.each(function () {
691
692
        let data      = $(this).data(DATA_KEY)
        const _config = typeof config === 'object' && config
693

Johann-S's avatar
Johann-S committed
694
        if (!data && /dispose|hide/.test(config)) {
695
696
697
698
699
700
701
702
703
          return
        }

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

        if (typeof config === 'string') {
XhmikosR's avatar
XhmikosR committed
704
          if (typeof data[config] === 'undefined') {
705
706
            throw new Error(`No method named "${config}"`)
          }
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
          data[config]()
        }
      })
    }
  }


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

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

  return Tooltip

729
})($, Popper)
730
731

export default Tooltip