tooltip.js 16.1 KB
Newer Older
1
2
/* global Tether */

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
  /**
   * Check for Tether dependency
17
   * Tether - http://tether.io/
18
   */
Michael J. Ryan's avatar
Michael J. Ryan committed
19
  if (typeof Tether === 'undefined') {
20
    throw new Error('Bootstrap tooltips require Tether (http://tether.io/)')
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
  const JQUERY_NO_CONFLICT  = $.fn[NAME]
  const TRANSITION_DURATION = 150
  const CLASS_PREFIX        = 'bs-tether'
37
  const TETHER_PREFIX_REGEX = new RegExp(`(^|\\s)${CLASS_PREFIX}\\S+`, 'g')
38
39
40
41
42
43
44
45
46
47

  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
48
    placement   : 'top',
49
    offset      : '0 0',
50
51
    constraints : [],
    container   : false
fat's avatar
fat committed
52
53
54
55
56
  }

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

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

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

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

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

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

  const TetherClass = {
    element : false,
    enabled : false
  }

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


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

  class Tooltip {

    constructor(element, config) {

      // private
127
128
129
130
131
132
      this._isEnabled        = true
      this._timeout          = 0
      this._hoverState       = ''
      this._activeTrigger    = {}
      this._isTransitioning  = false
      this._tether           = null
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153

      // 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
154
155
156
157
158
159
160
161
162
163
164
165
    static get NAME() {
      return NAME
    }

    static get DATA_KEY() {
      return DATA_KEY
    }

    static get Event() {
      return Event
    }

fat's avatar
fat committed
166
167
168
    static get EVENT_KEY() {
      return EVENT_KEY
    }
fat's avatar
fat committed
169

fat's avatar
fat committed
170
171
172
173
    static get DefaultType() {
      return DefaultType
    }

174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190

    // public

    enable() {
      this._isEnabled = true
    }

    disable() {
      this._isEnabled = false
    }

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

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

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

        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
211

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

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

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

fat's avatar
fat committed
224
225
226
      this.cleanupTether()

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

fat's avatar
fat committed
228
      $(this.element).off(this.constructor.EVENT_KEY)
229
      $(this.element).closest('.modal').off('hide.bs.modal')
fat's avatar
fat committed
230
231
232
233
234

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

235
236
237
238
239
      this._isEnabled     = null
      this._timeout       = null
      this._hoverState    = null
      this._activeTrigger = null
      this._tether        = null
fat's avatar
fat committed
240
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
      if (this.isWithContent() && this._isEnabled) {
253
254
255
        if (this._isTransitioning) {
          throw new Error('Tooltip is transitioning')
        }
256
257
        $(this.element).trigger(showEvent)

258
        const isInTheDom = $.contains(
259
260
261
262
263
264
265
266
          this.element.ownerDocument.documentElement,
          this.element
        )

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

267
268
        const tip   = this.getTipElement()
        const tipId = Util.getUID(this.constructor.NAME)
269
270
271
272
273
274
275
276
277
278

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

        this.setContent()

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

279
        const placement  = typeof this.config.placement === 'function' ?
fat's avatar
fat committed
280
281
          this.config.placement.call(this, tip, this.element) :
          this.config.placement
282

283
        const attachment = this._getAttachment(placement)
284

285
286
        const container = this.config.container === false ? document.body : $(this.config.container)

fat's avatar
fat committed
287
288
        $(tip)
          .data(this.constructor.DATA_KEY, this)
289
          .appendTo(container)
290

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

fat's avatar
fat committed
293
        this._tether = new Tether({
Jacob Thornton's avatar
Jacob Thornton committed
294
          attachment,
295
296
297
298
299
300
301
          element         : tip,
          target          : this.element,
          classes         : TetherClass,
          classPrefix     : CLASS_PREFIX,
          offset          : this.config.offset,
          constraints     : this.config.constraints,
          addTargetClasses: false
302
303
304
        })

        Util.reflow(tip)
fat's avatar
fat committed
305
        this._tether.position()
306

Starsam80's avatar
Starsam80 committed
307
        $(tip).addClass(ClassName.SHOW)
308

309
310
        const complete = () => {
          const prevHoverState = this._hoverState
311
312
          this._hoverState   = null
          this._isTransitioning = false
313

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

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

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

        complete()
330
331
332
333
      }
    }

    hide(callback) {
334
335
      const tip       = this.getTipElement()
      const hideEvent = $.Event(this.constructor.Event.HIDE)
336
337
338
      if (this._isTransitioning) {
        throw new Error('Tooltip is transitioning')
      }
339
      const complete  = () => {
Starsam80's avatar
Starsam80 committed
340
        if (this._hoverState !== HoverState.SHOW && tip.parentNode) {
341
342
343
          tip.parentNode.removeChild(tip)
        }

344
        this._cleanTipClass()
345
        this.element.removeAttribute('aria-describedby')
fat's avatar
fat committed
346
        $(this.element).trigger(this.constructor.Event.HIDDEN)
347
        this._isTransitioning = false
348
349
350
351
352
353
354
355
356
357
358
359
360
        this.cleanupTether()

        if (callback) {
          callback()
        }
      }

      $(this.element).trigger(hideEvent)

      if (hideEvent.isDefaultPrevented()) {
        return
      }

Starsam80's avatar
Starsam80 committed
361
      $(tip).removeClass(ClassName.SHOW)
362

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

367
      if (Util.supportsTransitionEnd() &&
368
          $(this.tip).hasClass(ClassName.FADE)) {
369
        this._isTransitioning = true
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
        $(tip)
          .one(Util.TRANSITION_END, complete)
          .emulateTransitionEnd(TRANSITION_DURATION)

      } else {
        complete()
      }

      this._hoverState = ''
    }


    // protected

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

    getTipElement() {
389
      return this.tip = this.tip || $(this.config.template)[0]
390
391
392
    }

    setContent() {
393
      const $tip = $(this.getTipElement())
394

395
      this.setElementContent($tip.find(Selector.TOOLTIP_INNER), this.getTitle())
396

Starsam80's avatar
Starsam80 committed
397
      $tip.removeClass(`${ClassName.FADE} ${ClassName.SHOW}`)
398
399
400
401

      this.cleanupTether()
    }

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

418
419
420
421
422
423
424
425
426
427
428
429
430
    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
    }

    cleanupTether() {
fat's avatar
fat committed
431
432
      if (this._tether) {
        this._tether.destroy()
433
434
435
436
437
438
      }
    }


    // private

fat's avatar
fat committed
439
440
441
442
    _getAttachment(placement) {
      return AttachmentMap[placement.toUpperCase()]
    }

443
444
445
446
447
448
449
450
    _cleanTipClass() {
      const $tip = $(this.getTipElement())
      const tabClass = $tip.attr('class').match(TETHER_PREFIX_REGEX)
      if (tabClass !== null && tabClass.length > 0) {
        $tip.removeClass(tabClass.join(''))
      }
    }

451
    _setListeners() {
452
      const triggers = this.config.trigger.split(' ')
453
454
455
456

      triggers.forEach((trigger) => {
        if (trigger === 'click') {
          $(this.element).on(
fat's avatar
fat committed
457
            this.constructor.Event.CLICK,
458
            this.config.selector,
459
            (event) => this.toggle(event)
460
461
462
          )

        } else if (trigger !== Trigger.MANUAL) {
463
          const eventIn  = trigger === Trigger.HOVER ?
fat's avatar
fat committed
464
465
            this.constructor.Event.MOUSEENTER :
            this.constructor.Event.FOCUSIN
466
          const eventOut = trigger === Trigger.HOVER ?
fat's avatar
fat committed
467
468
            this.constructor.Event.MOUSELEAVE :
            this.constructor.Event.FOCUSOUT
469
470
471
472
473

          $(this.element)
            .on(
              eventIn,
              this.config.selector,
474
              (event) => this._enter(event)
475
476
477
478
            )
            .on(
              eventOut,
              this.config.selector,
479
              (event) => this._leave(event)
480
481
            )
        }
482
483
484
485
486

        $(this.element).closest('.modal').on(
          'hide.bs.modal',
          () => this.hide()
        )
487
488
489
490
491
492
493
494
495
496
497
498
499
      })

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

    _fixTitle() {
500
      const titleType = typeof this.element.getAttribute('data-original-title')
501
      if (this.element.getAttribute('title') ||
502
         titleType !== 'string') {
503
504
505
506
507
508
509
510
511
        this.element.setAttribute(
          'data-original-title',
          this.element.getAttribute('title') || ''
        )
        this.element.setAttribute('title', '')
      }
    }

    _enter(event, context) {
512
      const dataKey = this.constructor.DATA_KEY
fat's avatar
fat committed
513
514

      context = context || $(event.currentTarget).data(dataKey)
515
516
517
518
519
520

      if (!context) {
        context = new this.constructor(
          event.currentTarget,
          this._getDelegateConfig()
        )
fat's avatar
fat committed
521
        $(event.currentTarget).data(dataKey, context)
522
523
524
525
      }

      if (event) {
        context._activeTrigger[
Jacob Thornton's avatar
Jacob Thornton committed
526
          event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER
527
528
529
        ] = true
      }

Starsam80's avatar
Starsam80 committed
530
531
532
      if ($(context.getTipElement()).hasClass(ClassName.SHOW) ||
         context._hoverState === HoverState.SHOW) {
        context._hoverState = HoverState.SHOW
533
534
535
536
537
        return
      }

      clearTimeout(context._timeout)

Starsam80's avatar
Starsam80 committed
538
      context._hoverState = HoverState.SHOW
539
540
541
542
543
544
545

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

      context._timeout = setTimeout(() => {
Starsam80's avatar
Starsam80 committed
546
        if (context._hoverState === HoverState.SHOW) {
547
548
549
550
551
552
          context.show()
        }
      }, context.config.delay.show)
    }

    _leave(event, context) {
553
      const dataKey = this.constructor.DATA_KEY
fat's avatar
fat committed
554
555

      context = context || $(event.currentTarget).data(dataKey)
556
557
558
559
560
561

      if (!context) {
        context = new this.constructor(
          event.currentTarget,
          this._getDelegateConfig()
        )
fat's avatar
fat committed
562
        $(event.currentTarget).data(dataKey, context)
563
564
565
566
      }

      if (event) {
        context._activeTrigger[
Jacob Thornton's avatar
Jacob Thornton committed
567
          event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
        ] = 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() {
592
      for (const trigger in this._activeTrigger) {
593
594
595
596
597
598
599
600
601
        if (this._activeTrigger[trigger]) {
          return true
        }
      }

      return false
    }

    _getConfig(config) {
fat's avatar
fat committed
602
603
604
605
606
607
      config = $.extend(
        {},
        this.constructor.Default,
        $(this.element).data(),
        config
      )
608
609
610
611
612
613
614
615

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

fat's avatar
fat committed
616
617
618
619
620
621
      Util.typeCheckConfig(
        NAME,
        config,
        this.constructor.DefaultType
      )

622
623
624
625
      return config
    }

    _getDelegateConfig() {
626
      const config = {}
627
628

      if (this.config) {
629
        for (const key in this.config) {
Jacob Thornton's avatar
Jacob Thornton committed
630
631
          if (this.constructor.Default[key] !== this.config[key]) {
            config[key] = this.config[key]
632
633
634
635
636
637
638
639
640
641
642
643
          }
        }
      }

      return config
    }


    // static

    static _jQueryInterface(config) {
      return this.each(function () {
644
645
        let data      = $(this).data(DATA_KEY)
        const _config = typeof config === 'object' && config
646

Johann-S's avatar
Johann-S committed
647
        if (!data && /dispose|hide/.test(config)) {
648
649
650
651
652
653
654
655
656
          return
        }

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

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