tooltip.js 16.6 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
  const JQUERY_NO_CONFLICT  = $.fn[NAME]
  const TRANSITION_DURATION = 150
Johann-S's avatar
Johann-S committed
36
37
  const CLASS_PREFIX        = 'bs-tooltip'
  const BSCLS_PREFIX_REGEX = new RegExp(`(^|\\s)${CLASS_PREFIX}\\S+`, 'g')
38
39
40
41

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

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

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

  const HoverState = {
Starsam80's avatar
Starsam80 committed
77
78
    SHOW : 'show',
    OUT  : 'out'
79
80
81
  }

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

  const ClassName = {
Starsam80's avatar
Starsam80 committed
95
96
    FADE : 'fade',
    SHOW : 'show'
97
98
99
100
  }

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

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


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

  class Tooltip {

    constructor(element, config) {

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

    // public

    enable() {
      this._isEnabled = true
    }

    disable() {
      this._isEnabled = false
    }

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

    toggle(event) {
      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
205
        }

        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
206

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

        this._enter(null, this)
213
214
215
      }
    }

fat's avatar
fat committed
216
    dispose() {
217
      clearTimeout(this._timeout)
fat's avatar
fat committed
218

fat's avatar
fat committed
219
      $.removeData(this.element, this.constructor.DATA_KEY)
fat's avatar
fat committed
220

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

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

228
229
230
231
      this._isEnabled     = null
      this._timeout       = null
      this._hoverState    = null
      this._activeTrigger = null
232
      this._popper        = null
fat's avatar
fat committed
233
234
235
236

      this.element = null
      this.config  = null
      this.tip     = null
237
238
239
    }

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

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

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

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

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

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

        this.setContent()

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

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

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

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

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

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

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

286
287
        this._popper = new Popper(this.element, tip, {
          placement : attachment,
288
          arrowElement : '.arrow',
289
290
291
292
293
          modifiers : {
            offset : {
              offset : this.config.offset
            }
          }
294
295
296
297
        })

        Util.reflow(tip)

Starsam80's avatar
Starsam80 committed
298
        $(tip).addClass(ClassName.SHOW)
299

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

308
309
        const complete = () => {
          const prevHoverState = this._hoverState
310
          this._hoverState     = null
311

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

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

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

        complete()
327
328
329
330
      }
    }

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

Johann-S's avatar
Johann-S committed
338
        this._cleanTipClass()
339
        this.element.removeAttribute('aria-describedby')
fat's avatar
fat committed
340
        $(this.element).trigger(this.constructor.Event.HIDDEN)
341
342
343
344
        if (this._popper !== null) {
          this._popper.destroy()
        }

345
346
347
348
349
350
351
352
353
354
355
        if (callback) {
          callback()
        }
      }

      $(this.element).trigger(hideEvent)

      if (hideEvent.isDefaultPrevented()) {
        return
      }

Starsam80's avatar
Starsam80 committed
356
      $(tip).removeClass(ClassName.SHOW)
357

Patrick H. Lauke's avatar
Patrick H. Lauke committed
358
359
360
361
362
363
      // 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)
      }

364
365
366
367
      this._activeTrigger[Trigger.CLICK] = false
      this._activeTrigger[Trigger.FOCUS] = false
      this._activeTrigger[Trigger.HOVER] = false

368
      if (Util.supportsTransitionEnd() &&
369
          $(this.tip).hasClass(ClassName.FADE)) {
370

371
372
373
374
375
376
377
378
379
        $(tip)
          .one(Util.TRANSITION_END, complete)
          .emulateTransitionEnd(TRANSITION_DURATION)

      } else {
        complete()
      }

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

381
382
383
384
385
386
    }


    // protected

    isWithContent() {
Jacob Thornton's avatar
Jacob Thornton committed
387
      return Boolean(this.getTitle())
388
389
    }

Johann-S's avatar
Johann-S committed
390
391
392
393
    addAttachmentClass(attachment) {
      $(this.getTipElement()).addClass(`${CLASS_PREFIX}-${attachment}`)
    }

394
    getTipElement() {
395
      return this.tip = this.tip || $(this.config.template)[0]
396
397
398
    }

    setContent() {
399
      const $tip = $(this.getTipElement())
400
      this.setElementContent($tip.find(Selector.TOOLTIP_INNER), this.getTitle())
Starsam80's avatar
Starsam80 committed
401
      $tip.removeClass(`${ClassName.FADE} ${ClassName.SHOW}`)
402
403
    }

404
    setElementContent($element, content) {
405
      const html = this.config.html
406
407
408
409
410
411
412
413
414
415
416
417
418
419
      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)
      }
    }

420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
    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
435
436
437
438
    _getAttachment(placement) {
      return AttachmentMap[placement.toUpperCase()]
    }

439
    _setListeners() {
440
      const triggers = this.config.trigger.split(' ')
441
442
443
444

      triggers.forEach((trigger) => {
        if (trigger === 'click') {
          $(this.element).on(
fat's avatar
fat committed
445
            this.constructor.Event.CLICK,
446
            this.config.selector,
447
            (event) => this.toggle(event)
448
449
450
          )

        } else if (trigger !== Trigger.MANUAL) {
451
          const eventIn  = trigger === Trigger.HOVER ?
fat's avatar
fat committed
452
453
            this.constructor.Event.MOUSEENTER :
            this.constructor.Event.FOCUSIN
454
          const eventOut = trigger === Trigger.HOVER ?
fat's avatar
fat committed
455
456
            this.constructor.Event.MOUSELEAVE :
            this.constructor.Event.FOCUSOUT
457
458
459
460
461

          $(this.element)
            .on(
              eventIn,
              this.config.selector,
462
              (event) => this._enter(event)
463
464
465
466
            )
            .on(
              eventOut,
              this.config.selector,
467
              (event) => this._leave(event)
468
469
            )
        }
470
471
472
473
474

        $(this.element).closest('.modal').on(
          'hide.bs.modal',
          () => this.hide()
        )
475
476
477
478
479
480
481
482
483
484
485
486
487
      })

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

    _fixTitle() {
488
      const titleType = typeof this.element.getAttribute('data-original-title')
489
      if (this.element.getAttribute('title') ||
490
         titleType !== 'string') {
491
492
493
494
495
496
497
498
499
        this.element.setAttribute(
          'data-original-title',
          this.element.getAttribute('title') || ''
        )
        this.element.setAttribute('title', '')
      }
    }

    _enter(event, context) {
500
      const dataKey = this.constructor.DATA_KEY
fat's avatar
fat committed
501
502

      context = context || $(event.currentTarget).data(dataKey)
503
504
505
506
507
508

      if (!context) {
        context = new this.constructor(
          event.currentTarget,
          this._getDelegateConfig()
        )
fat's avatar
fat committed
509
        $(event.currentTarget).data(dataKey, context)
510
511
512
513
      }

      if (event) {
        context._activeTrigger[
Jacob Thornton's avatar
Jacob Thornton committed
514
          event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER
515
516
517
        ] = true
      }

Starsam80's avatar
Starsam80 committed
518
519
520
      if ($(context.getTipElement()).hasClass(ClassName.SHOW) ||
         context._hoverState === HoverState.SHOW) {
        context._hoverState = HoverState.SHOW
521
522
523
524
525
        return
      }

      clearTimeout(context._timeout)

Starsam80's avatar
Starsam80 committed
526
      context._hoverState = HoverState.SHOW
527
528
529
530
531
532
533

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

      context._timeout = setTimeout(() => {
Starsam80's avatar
Starsam80 committed
534
        if (context._hoverState === HoverState.SHOW) {
535
536
537
538
539
540
          context.show()
        }
      }, context.config.delay.show)
    }

    _leave(event, context) {
541
      const dataKey = this.constructor.DATA_KEY
fat's avatar
fat committed
542
543

      context = context || $(event.currentTarget).data(dataKey)
544
545
546
547
548
549

      if (!context) {
        context = new this.constructor(
          event.currentTarget,
          this._getDelegateConfig()
        )
fat's avatar
fat committed
550
        $(event.currentTarget).data(dataKey, context)
551
552
553
554
      }

      if (event) {
        context._activeTrigger[
Jacob Thornton's avatar
Jacob Thornton committed
555
          event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
        ] = 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() {
580
      for (const trigger in this._activeTrigger) {
581
582
583
584
585
586
587
588
589
        if (this._activeTrigger[trigger]) {
          return true
        }
      }

      return false
    }

    _getConfig(config) {
fat's avatar
fat committed
590
591
592
593
594
595
      config = $.extend(
        {},
        this.constructor.Default,
        $(this.element).data(),
        config
      )
596
597
598
599
600
601
602
603

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

604
605
606
607
608
609
610
611
      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
612
613
614
615
616
617
      Util.typeCheckConfig(
        NAME,
        config,
        this.constructor.DefaultType
      )

618
619
620
621
      return config
    }

    _getDelegateConfig() {
622
      const config = {}
623
624

      if (this.config) {
625
        for (const key in this.config) {
Jacob Thornton's avatar
Jacob Thornton committed
626
627
          if (this.constructor.Default[key] !== this.config[key]) {
            config[key] = this.config[key]
628
629
630
631
632
633
634
          }
        }
      }

      return config
    }

Johann-S's avatar
Johann-S committed
635
636
637
638
639
640
641
642
  _cleanTipClass() {
    const $tip = $(this.getTipElement())
    const tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX)
    if (tabClass !== null && tabClass.length > 0) {
      $tip.removeClass(tabClass.join(''))
    }
  }

643
644
645
646
647

    // static

    static _jQueryInterface(config) {
      return this.each(function () {
648
649
        let data      = $(this).data(DATA_KEY)
        const _config = typeof config === 'object' && config
650

Johann-S's avatar
Johann-S committed
651
        if (!data && /dispose|hide/.test(config)) {
652
653
654
655
656
657
658
659
660
          return
        }

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

        if (typeof config === 'string') {
661
662
663
          if (data[config] === undefined) {
            throw new Error(`No method named "${config}"`)
          }
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
          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