tooltip.js 16 KB
Newer Older
1
/* global Popper */
2

3
4
5
6
7
import Util from './util'


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

fat's avatar
fat committed
13
const Tooltip = (($) => {
14

15
  /**
16
17
   * Check for Popper dependency
   * Tether - https://popper.js.org
18
   */
19
20
  if (typeof Popper === 'undefined') {
    throw new Error('Bootstrap tooltips require Popper (https://popper.js.org)')
21
22
  }

23
24
25
26
27
28
29
30

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

  const NAME                = 'tooltip'
Mark Otto's avatar
Mark Otto committed
31
  const VERSION             = '4.0.0-alpha.6'
32
  const DATA_KEY            = 'bs.tooltip'
fat's avatar
fat committed
33
  const EVENT_KEY           = `.${DATA_KEY}`
34
35
36
37
38
39
40
41
42
43
44
45
  const JQUERY_NO_CONFLICT  = $.fn[NAME]
  const TRANSITION_DURATION = 150

  const Default = {
    animation   : true,
    template    : '<div class="tooltip" role="tooltip">'
                + '<div class="tooltip-inner"></div></div>',
    trigger     : 'hover focus',
    title       : '',
    delay       : 0,
    html        : false,
    selector    : false,
fat's avatar
fat committed
46
    placement   : 'top',
47
    offset      : '0 0',
48
49
    constraints : [],
    container   : false
fat's avatar
fat committed
50
51
52
53
54
  }

  const DefaultType = {
    animation   : 'boolean',
    template    : 'string',
55
    title       : '(string|element|function)',
fat's avatar
fat committed
56
57
58
59
60
61
    trigger     : 'string',
    delay       : '(number|object)',
    html        : 'boolean',
    selector    : '(string|boolean)',
    placement   : '(string|function)',
    offset      : 'string',
62
63
    constraints : 'array',
    container   : '(string|element|boolean)'
64
65
  }

fat's avatar
fat committed
66
  const AttachmentMap = {
67
68
69
70
    TOP    : 'top',
    RIGHT  : 'right',
    BOTTOM : 'bottom',
    LEFT   : 'left'
71
72
73
  }

  const HoverState = {
Starsam80's avatar
Starsam80 committed
74
75
    SHOW : 'show',
    OUT  : 'out'
76
77
78
  }

  const Event = {
fat's avatar
fat committed
79
80
81
82
83
84
85
86
87
88
    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}`
89
90
91
  }

  const ClassName = {
Starsam80's avatar
Starsam80 committed
92
93
    FADE : 'fade',
    SHOW : 'show'
94
95
96
97
  }

  const Selector = {
    TOOLTIP       : '.tooltip',
fat's avatar
fat committed
98
    TOOLTIP_INNER : '.tooltip-inner'
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
  }

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


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

  class Tooltip {

    constructor(element, config) {

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

      // 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
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
    }

166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182

    // public

    enable() {
      this._isEnabled = true
    }

    disable() {
      this._isEnabled = false
    }

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

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

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

        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
203

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

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

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

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

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

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

225
226
227
228
      this._isEnabled     = null
      this._timeout       = null
      this._hoverState    = null
      this._activeTrigger = null
229
      this._popper        = null
fat's avatar
fat committed
230
231
232
233

      this.element = null
      this.config  = null
      this.tip     = null
234
235
236
    }

    show() {
237
238
239
      if ($(this.element).css('display') === 'none') {
        throw new Error('Please use show on visible elements')
      }
240

241
      const showEvent = $.Event(this.constructor.Event.SHOW)
242
243
244
      if (this.isWithContent() && this._isEnabled) {
        $(this.element).trigger(showEvent)

245
        const isInTheDom = $.contains(
246
247
248
249
250
251
252
253
          this.element.ownerDocument.documentElement,
          this.element
        )

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

254
255
        const tip   = this.getTipElement()
        const tipId = Util.getUID(this.constructor.NAME)
256
257
258
259
260
261
262
263
264
265

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

        this.setContent()

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

266
        const placement  = typeof this.config.placement === 'function' ?
fat's avatar
fat committed
267
268
          this.config.placement.call(this, tip, this.element) :
          this.config.placement
269

270
        const attachment = this._getAttachment(placement)
271

272
273
        const container = this.config.container === false ? document.body : $(this.config.container)

274
275
276
277
278
        $(tip).data(this.constructor.DATA_KEY, this)

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

fat's avatar
fat committed
280
        $(this.element).trigger(this.constructor.Event.INSERTED)
281

282
283
284
285
286
287
288
289
290
291
        this._popper = new Popper(this.element, tip, {
          placement : attachment,
          modifiers : {
            arrow : {
              element : Selector.TOOLTIP
            },
            offset : {
              offset : this.config.offset
            }
          }
292
293
294
295
        })

        Util.reflow(tip)

Starsam80's avatar
Starsam80 committed
296
        $(tip).addClass(ClassName.SHOW)
297

Patrick H. Lauke's avatar
Patrick H. Lauke committed
298
299
300
301
        // 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
302
        if ('ontouchstart' in document.documentElement) {
Patrick H. Lauke's avatar
Patrick H. Lauke committed
303
304
305
          $('body').children().on('mouseover', null, $.noop)
        }

306
307
        const complete = () => {
          const prevHoverState = this._hoverState
308
          this._hoverState     = null
309

fat's avatar
fat committed
310
          $(this.element).trigger(this.constructor.Event.SHOWN)
311
312
313
314
315
316

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

Jacob Thornton's avatar
Jacob Thornton committed
317
        if (Util.supportsTransitionEnd() && $(this.tip).hasClass(ClassName.FADE)) {
318
319
          $(this.tip)
            .one(Util.TRANSITION_END, complete)
Jacob Thornton's avatar
Jacob Thornton committed
320
321
322
323
324
            .emulateTransitionEnd(Tooltip._TRANSITION_DURATION)
          return
        }

        complete()
325
326
327
328
      }
    }

    hide(callback) {
329
330
331
      const tip       = this.getTipElement()
      const hideEvent = $.Event(this.constructor.Event.HIDE)
      const complete  = () => {
Starsam80's avatar
Starsam80 committed
332
        if (this._hoverState !== HoverState.SHOW && tip.parentNode) {
333
334
335
336
          tip.parentNode.removeChild(tip)
        }

        this.element.removeAttribute('aria-describedby')
fat's avatar
fat committed
337
        $(this.element).trigger(this.constructor.Event.HIDDEN)
338
        this._popper.destroy()
339
340
341
342
343
344
345
346
347
348
349
        if (callback) {
          callback()
        }
      }

      $(this.element).trigger(hideEvent)

      if (hideEvent.isDefaultPrevented()) {
        return
      }

Starsam80's avatar
Starsam80 committed
350
      $(tip).removeClass(ClassName.SHOW)
351

Patrick H. Lauke's avatar
Patrick H. Lauke committed
352
353
354
355
356
357
      // 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)
      }

358
359
360
361
      this._activeTrigger[Trigger.CLICK] = false
      this._activeTrigger[Trigger.FOCUS] = false
      this._activeTrigger[Trigger.HOVER] = false

362
      if (Util.supportsTransitionEnd() &&
363
          $(this.tip).hasClass(ClassName.FADE)) {
364

365
366
367
368
369
370
371
372
373
        $(tip)
          .one(Util.TRANSITION_END, complete)
          .emulateTransitionEnd(TRANSITION_DURATION)

      } else {
        complete()
      }

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

375
376
377
378
379
380
    }


    // protected

    isWithContent() {
Jacob Thornton's avatar
Jacob Thornton committed
381
      return Boolean(this.getTitle())
382
383
384
    }

    getTipElement() {
385
      return this.tip = this.tip || $(this.config.template)[0]
386
387
388
    }

    setContent() {
389
      const $tip = $(this.getTipElement())
390
      this.setElementContent($tip.find(Selector.TOOLTIP_INNER), this.getTitle())
Starsam80's avatar
Starsam80 committed
391
      $tip.removeClass(`${ClassName.FADE} ${ClassName.SHOW}`)
392
393
    }

394
    setElementContent($element, content) {
395
      const html = this.config.html
396
397
398
399
400
401
402
403
404
405
406
407
408
409
      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)
      }
    }

410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
    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
425
426
427
428
    _getAttachment(placement) {
      return AttachmentMap[placement.toUpperCase()]
    }

429
    _setListeners() {
430
      const triggers = this.config.trigger.split(' ')
431
432
433
434

      triggers.forEach((trigger) => {
        if (trigger === 'click') {
          $(this.element).on(
fat's avatar
fat committed
435
            this.constructor.Event.CLICK,
436
            this.config.selector,
437
            (event) => this.toggle(event)
438
439
440
          )

        } else if (trigger !== Trigger.MANUAL) {
441
          const eventIn  = trigger === Trigger.HOVER ?
fat's avatar
fat committed
442
443
            this.constructor.Event.MOUSEENTER :
            this.constructor.Event.FOCUSIN
444
          const eventOut = trigger === Trigger.HOVER ?
fat's avatar
fat committed
445
446
            this.constructor.Event.MOUSELEAVE :
            this.constructor.Event.FOCUSOUT
447
448
449
450
451

          $(this.element)
            .on(
              eventIn,
              this.config.selector,
452
              (event) => this._enter(event)
453
454
455
456
            )
            .on(
              eventOut,
              this.config.selector,
457
              (event) => this._leave(event)
458
459
            )
        }
460
461
462
463
464

        $(this.element).closest('.modal').on(
          'hide.bs.modal',
          () => this.hide()
        )
465
466
467
468
469
470
471
472
473
474
475
476
477
      })

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

    _fixTitle() {
478
      const titleType = typeof this.element.getAttribute('data-original-title')
479
      if (this.element.getAttribute('title') ||
480
         titleType !== 'string') {
481
482
483
484
485
486
487
488
489
        this.element.setAttribute(
          'data-original-title',
          this.element.getAttribute('title') || ''
        )
        this.element.setAttribute('title', '')
      }
    }

    _enter(event, context) {
490
      const dataKey = this.constructor.DATA_KEY
fat's avatar
fat committed
491
492

      context = context || $(event.currentTarget).data(dataKey)
493
494
495
496
497
498

      if (!context) {
        context = new this.constructor(
          event.currentTarget,
          this._getDelegateConfig()
        )
fat's avatar
fat committed
499
        $(event.currentTarget).data(dataKey, context)
500
501
502
503
      }

      if (event) {
        context._activeTrigger[
Jacob Thornton's avatar
Jacob Thornton committed
504
          event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER
505
506
507
        ] = true
      }

Starsam80's avatar
Starsam80 committed
508
509
510
      if ($(context.getTipElement()).hasClass(ClassName.SHOW) ||
         context._hoverState === HoverState.SHOW) {
        context._hoverState = HoverState.SHOW
511
512
513
514
515
        return
      }

      clearTimeout(context._timeout)

Starsam80's avatar
Starsam80 committed
516
      context._hoverState = HoverState.SHOW
517
518
519
520
521
522
523

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

      context._timeout = setTimeout(() => {
Starsam80's avatar
Starsam80 committed
524
        if (context._hoverState === HoverState.SHOW) {
525
526
527
528
529
530
          context.show()
        }
      }, context.config.delay.show)
    }

    _leave(event, context) {
531
      const dataKey = this.constructor.DATA_KEY
fat's avatar
fat committed
532
533

      context = context || $(event.currentTarget).data(dataKey)
534
535
536
537
538
539

      if (!context) {
        context = new this.constructor(
          event.currentTarget,
          this._getDelegateConfig()
        )
fat's avatar
fat committed
540
        $(event.currentTarget).data(dataKey, context)
541
542
543
544
      }

      if (event) {
        context._activeTrigger[
Jacob Thornton's avatar
Jacob Thornton committed
545
          event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
        ] = 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() {
570
      for (const trigger in this._activeTrigger) {
571
572
573
574
575
576
577
578
579
        if (this._activeTrigger[trigger]) {
          return true
        }
      }

      return false
    }

    _getConfig(config) {
fat's avatar
fat committed
580
581
582
583
584
585
      config = $.extend(
        {},
        this.constructor.Default,
        $(this.element).data(),
        config
      )
586
587
588
589
590
591
592
593

      if (config.delay && typeof config.delay === 'number') {
        config.delay = {
          show : config.delay,
          hide : config.delay
        }
      }

594
595
596
597
598
599
600
601
      if (config.title && typeof config.title === 'number') {
        config.title = config.title.toString()
      }

      if (config.content && typeof config.content === 'number') {
        config.content = config.content.toString()
      }

fat's avatar
fat committed
602
603
604
605
606
607
      Util.typeCheckConfig(
        NAME,
        config,
        this.constructor.DefaultType
      )

608
609
610
611
      return config
    }

    _getDelegateConfig() {
612
      const config = {}
613
614

      if (this.config) {
615
        for (const key in this.config) {
Jacob Thornton's avatar
Jacob Thornton committed
616
617
          if (this.constructor.Default[key] !== this.config[key]) {
            config[key] = this.config[key]
618
619
620
621
622
623
624
625
626
627
628
629
          }
        }
      }

      return config
    }


    // static

    static _jQueryInterface(config) {
      return this.each(function () {
630
631
        let data      = $(this).data(DATA_KEY)
        const _config = typeof config === 'object' && config
632

Johann-S's avatar
Johann-S committed
633
        if (!data && /dispose|hide/.test(config)) {
634
635
636
637
638
639
640
641
642
          return
        }

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

        if (typeof config === 'string') {
643
644
645
          if (data[config] === undefined) {
            throw new Error(`No method named "${config}"`)
          }
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
          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

})(jQuery)

export default Tooltip