tooltip.js 13.6 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
import Util from './util'


/**
 * --------------------------------------------------------------------------
 * Bootstrap (v4.0.0): tooltip.js
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

fat's avatar
fat committed
11
const Tooltip = (($) => {
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36


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

  const NAME                = 'tooltip'
  const VERSION             = '4.0.0'
  const DATA_KEY            = 'bs.tooltip'
  const JQUERY_NO_CONFLICT  = $.fn[NAME]
  const TRANSITION_DURATION = 150
  const CLASS_PREFIX        = 'bs-tether'

  const Default = {
    animation   : true,
    template    : '<div class="tooltip" role="tooltip">'
                + '<div class="tooltip-arrow"></div>'
                + '<div class="tooltip-inner"></div></div>',
    trigger     : 'hover focus',
    title       : '',
    delay       : 0,
    html        : false,
    selector    : false,
fat's avatar
fat committed
37
    placement   : 'top',
38
39
40
41
    offset      : '0 0',
    constraints : null
  }

fat's avatar
fat committed
42
43
44
45
46
  const AttachmentMap = {
    TOP    : 'bottom center',
    RIGHT  : 'middle left',
    BOTTOM : 'top center',
    LEFT   : 'middle right'
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
  }

  const HoverState = {
    IN  : 'in',
    OUT : 'out'
  }

  const Event = {
    HIDE       : 'hide.bs.tooltip',
    HIDDEN     : 'hidden.bs.tooltip',
    SHOW       : 'show.bs.tooltip',
    SHOWN      : 'shown.bs.tooltip',
    INSERTED   : 'inserted.bs.tooltip',
    CLICK      : 'click.bs.tooltip',
    FOCUSIN    : 'focusin.bs.tooltip',
    FOCUSOUT   : 'focusout.bs.tooltip',
    MOUSEENTER : 'mouseenter.bs.tooltip',
    MOUSELEAVE : 'mouseleave.bs.tooltip'
  }

  const ClassName = {
    FADE : 'fade',
    IN   : 'in'
  }

  const Selector = {
    TOOLTIP       : '.tooltip',
fat's avatar
fat committed
74
    TOOLTIP_INNER : '.tooltip-inner'
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
  }

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

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


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

  class Tooltip {

    constructor(element, config) {

      // private
      this._isEnabled      = true
      this._timeout        = 0
      this._hoverState     = ''
      this._activeTrigger  = {}
fat's avatar
fat committed
105
      this._tether         = null
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126

      // 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
127
128
129
130
131
132
133
134
135
136
137
138
139
    static get NAME() {
      return NAME
    }

    static get DATA_KEY() {
      return DATA_KEY
    }

    static get Event() {
      return Event
    }


140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156

    // public

    enable() {
      this._isEnabled = true
    }

    disable() {
      this._isEnabled = false
    }

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

    toggle(event) {
      let context = this
fat's avatar
fat committed
157
      let dataKey = this.constructor.DATA_KEY
158
159

      if (event) {
fat's avatar
fat committed
160
        context = $(event.currentTarget).data(dataKey)
161
162
163
164
165
166

        if (!context) {
          context = new this.constructor(
            event.currentTarget,
            this._getDelegateConfig()
          )
fat's avatar
fat committed
167
          $(event.currentTarget).data(dataKey, context)
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
        }

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

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

      } else {
        $(context.getTipElement()).hasClass(ClassName.IN) ?
          context._leave(null, context) :
          context._enter(null, context)
      }
    }

    destroy() {
      clearTimeout(this._timeout)
      this.hide(() => {
        $(this.element)
fat's avatar
fat committed
189
190
191
192
193
194
195
196
          .off(`.${this.constructor.NAME}`)
          .removeData(this.constructor.DATA_KEY)

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

        this.tip = null
197
198
199
200
      })
    }

    show() {
fat's avatar
fat committed
201
      let showEvent = $.Event(this.constructor.Event.SHOW)
202
203
204
205
206
207
208
209
210
211
212
213
214
215

      if (this.isWithContent() && this._isEnabled) {
        $(this.element).trigger(showEvent)

        let isInTheDom = $.contains(
          this.element.ownerDocument.documentElement,
          this.element
        )

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

        let tip   = this.getTipElement()
fat's avatar
fat committed
216
        let tipId = Util.getUID(this.constructor.NAME)
217
218
219
220
221
222
223
224
225
226

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

        this.setContent()

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

fat's avatar
fat committed
227
228
229
        let placement  = typeof this.config.placement === 'function' ?
          this.config.placement.call(this, tip, this.element) :
          this.config.placement
230

fat's avatar
fat committed
231
        let attachment = this._getAttachment(placement)
232

fat's avatar
fat committed
233
234
235
        $(tip)
          .data(this.constructor.DATA_KEY, this)
          .appendTo(document.body)
236

fat's avatar
fat committed
237
        $(this.element).trigger(this.constructor.Event.INSERTED)
238

fat's avatar
fat committed
239
240
        this._tether = new Tether({
          element     : tip,
241
242
243
244
245
246
247
248
249
          target      : this.element,
          attachment  : attachment,
          classes     : TetherClass,
          classPrefix : CLASS_PREFIX,
          offset      : this.config.offset,
          constraints : this.config.constraints
        })

        Util.reflow(tip)
fat's avatar
fat committed
250
        this._tether.position()
251
252
253
254
255
256
257

        $(tip).addClass(ClassName.IN)

        let complete = () => {
          let prevHoverState = this._hoverState
          this._hoverState   = null

fat's avatar
fat committed
258
          $(this.element).trigger(this.constructor.Event.SHOWN)
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274

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

        Util.supportsTransitionEnd() && $(this.tip).hasClass(ClassName.FADE) ?
          $(this.tip)
            .one(Util.TRANSITION_END, complete)
            .emulateTransitionEnd(Tooltip._TRANSITION_DURATION) :
          complete()
      }
    }

    hide(callback) {
      let tip       = this.getTipElement()
fat's avatar
fat committed
275
      let hideEvent = $.Event(this.constructor.Event.HIDE)
276
277
278
279
280
281
      let complete  = () => {
        if (this._hoverState !== HoverState.IN && tip.parentNode) {
          tip.parentNode.removeChild(tip)
        }

        this.element.removeAttribute('aria-describedby')
fat's avatar
fat committed
282
        $(this.element).trigger(this.constructor.Event.HIDDEN)
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
        this.cleanupTether()

        if (callback) {
          callback()
        }
      }

      $(this.element).trigger(hideEvent)

      if (hideEvent.isDefaultPrevented()) {
        return
      }

      $(tip).removeClass(ClassName.IN)

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

        $(tip)
          .one(Util.TRANSITION_END, complete)
          .emulateTransitionEnd(TRANSITION_DURATION)

      } else {
        complete()
      }

      this._hoverState = ''
    }


    // protected

    isWithContent() {
      return !!this.getTitle()
    }

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

    setContent() {
      let tip    = this.getTipElement()
      let title  = this.getTitle()
      let method = this.config.html ? 'innerHTML' : 'innerText'

      $(tip).find(Selector.TOOLTIP_INNER)[0][method] = title

      $(tip)
        .removeClass(ClassName.FADE)
        .removeClass(ClassName.IN)

      this.cleanupTether()
    }

    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
350
351
      if (this._tether) {
        this._tether.destroy()
352
353
354
355

        // clean up after tether's junk classes
        // remove after they fix issue
        // (https://github.com/HubSpot/tether/issues/36)
fat's avatar
fat committed
356
357
        $(this.element).removeClass(this._removeTetherClasses)
        $(this.tip).removeClass(this._removeTetherClasses)
358
359
360
361
362
363
      }
    }


    // private

fat's avatar
fat committed
364
365
366
367
    _getAttachment(placement) {
      return AttachmentMap[placement.toUpperCase()]
    }

368
369
370
371
372
373
    _setListeners() {
      let triggers = this.config.trigger.split(' ')

      triggers.forEach((trigger) => {
        if (trigger === 'click') {
          $(this.element).on(
fat's avatar
fat committed
374
            this.constructor.Event.CLICK,
375
            this.config.selector,
376
            $.proxy(this.toggle, this)
377
378
379
380
          )

        } else if (trigger !== Trigger.MANUAL) {
          let eventIn  = trigger == Trigger.HOVER ?
fat's avatar
fat committed
381
382
            this.constructor.Event.MOUSEENTER :
            this.constructor.Event.FOCUSIN
383
          let eventOut = trigger == Trigger.HOVER ?
fat's avatar
fat committed
384
385
            this.constructor.Event.MOUSELEAVE :
            this.constructor.Event.FOCUSOUT
386
387
388
389
390

          $(this.element)
            .on(
              eventIn,
              this.config.selector,
391
              $.proxy(this._enter, this)
392
393
394
395
            )
            .on(
              eventOut,
              this.config.selector,
396
              $.proxy(this._leave, this)
397
398
399
400
401
402
403
404
405
406
407
408
409
410
            )
        }
      })

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

fat's avatar
fat committed
411
412
413
414
415
416
    _removeTetherClasses(i, css) {
      return ((css.baseVal || css).match(
        new RegExp(`(^|\\s)${CLASS_PREFIX}-\\S+`, 'g')) || []
      ).join(' ')
    }

417
418
419
420
421
422
423
424
425
426
427
428
429
    _fixTitle() {
      let titleType = typeof this.element.getAttribute('data-original-title')
      if (this.element.getAttribute('title') ||
         (titleType !== 'string')) {
        this.element.setAttribute(
          'data-original-title',
          this.element.getAttribute('title') || ''
        )
        this.element.setAttribute('title', '')
      }
    }

    _enter(event, context) {
fat's avatar
fat committed
430
431
432
      let dataKey = this.constructor.DATA_KEY

      context = context || $(event.currentTarget).data(dataKey)
433
434
435
436
437
438

      if (!context) {
        context = new this.constructor(
          event.currentTarget,
          this._getDelegateConfig()
        )
fat's avatar
fat committed
439
        $(event.currentTarget).data(dataKey, context)
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
      }

      if (event) {
        context._activeTrigger[
          event.type == 'focusin' ? Trigger.FOCUS : Trigger.HOVER
        ] = true
      }

      if ($(context.getTipElement()).hasClass(ClassName.IN) ||
         (context._hoverState === HoverState.IN)) {
        context._hoverState = HoverState.IN
        return
      }

      clearTimeout(context._timeout)

      context._hoverState = HoverState.IN

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

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

    _leave(event, context) {
fat's avatar
fat committed
471
472
473
      let dataKey = this.constructor.DATA_KEY

      context = context || $(event.currentTarget).data(dataKey)
474
475
476
477
478
479

      if (!context) {
        context = new this.constructor(
          event.currentTarget,
          this._getDelegateConfig()
        )
fat's avatar
fat committed
480
        $(event.currentTarget).data(dataKey, context)
481
482
483
484
      }

      if (event) {
        context._activeTrigger[
fat's avatar
fat committed
485
          event.type == 'focusout' ? Trigger.FOCUS : Trigger.HOVER
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
        ] = 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() {
      for (let trigger in this._activeTrigger) {
        if (this._activeTrigger[trigger]) {
          return true
        }
      }

      return false
    }

    _getConfig(config) {
fat's avatar
fat committed
520
521
522
523
524
525
      config = $.extend(
        {},
        this.constructor.Default,
        $(this.element).data(),
        config
      )
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542

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

      return config
    }

    _getDelegateConfig() {
      let config = {}

      if (this.config) {
        for (let key in this.config) {
          let value = this.config[key]
fat's avatar
fat committed
543
          if (this.constructor.Default[key] !== value) {
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
            config[key] = value
          }
        }
      }

      return config
    }


    // static

    static _jQueryInterface(config) {
      return this.each(function () {
        let data   = $(this).data(DATA_KEY)
        let _config = typeof config === 'object' ?
          config : null

        if (!data && /destroy|hide/.test(config)) {
          return
        }

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

        if (typeof config === 'string') {
          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