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

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


/**
 * --------------------------------------------------------------------------
8
 * Bootstrap (v4.0.0-alpha.2): 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
18
  /**
   * Check for Tether dependency
   * Tether - http://github.hubspot.com/tether/
   */
Michael J. Ryan's avatar
Michael J. Ryan committed
19
  if ('undefined' === typeof Tether) {
20
21
22
    throw new Error('Bootstrap tooltips require Tether (http://github.hubspot.com/tether/)')
  }

23
24
25
26
27
28
29
30

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

  const NAME                = 'tooltip'
31
  const VERSION             = '4.0.0-alpha.2'
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
46
47
  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
48
    placement   : 'top',
49
    offset      : '0 0',
fat's avatar
fat committed
50
51
52
53
54
55
    constraints : []
  }

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

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

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

  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
92
93
94
95
96
97
  }

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

  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
120
121
122
123
124
125
126
127
128
  }

  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
129
      this._tether         = null
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150

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

    static get DATA_KEY() {
      return DATA_KEY
    }

    static get Event() {
      return Event
    }

fat's avatar
fat committed
163
164
165
    static get EVENT_KEY() {
      return EVENT_KEY
    }
fat's avatar
fat committed
166

fat's avatar
fat committed
167
168
169
170
    static get DefaultType() {
      return DefaultType
    }

171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187

    // public

    enable() {
      this._isEnabled = true
    }

    disable() {
      this._isEnabled = false
    }

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

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

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

        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
208
209
210
211
212
213
214

        if ($(this.getTipElement()).hasClass(ClassName.IN)) {
          this._leave(null, this)
          return
        }

        this._enter(null, this)
215
216
217
      }
    }

fat's avatar
fat committed
218
    dispose() {
219
      clearTimeout(this._timeout)
fat's avatar
fat committed
220

fat's avatar
fat committed
221
222
223
      this.cleanupTether()

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

fat's avatar
fat committed
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
      $(this.element).off(this.constructor.EVENT_KEY)

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

      this._isEnabled      = null
      this._timeout        = null
      this._hoverState     = null
      this._activeTrigger  = null
      this._tether         = null

      this.element = null
      this.config  = null
      this.tip     = null
240
241
242
    }

    show() {
fat's avatar
fat committed
243
      let showEvent = $.Event(this.constructor.Event.SHOW)
244
245
246
247
248
249
250
251
252
253
254
255
256
257

      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
258
        let 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)
        }

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

fat's avatar
fat committed
273
        let attachment = this._getAttachment(placement)
274

fat's avatar
fat committed
275
276
277
        $(tip)
          .data(this.constructor.DATA_KEY, this)
          .appendTo(document.body)
278

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

fat's avatar
fat committed
281
        this._tether = new Tether({
Jacob Thornton's avatar
Jacob Thornton committed
282
          attachment,
283
284
285
286
287
288
289
          element         : tip,
          target          : this.element,
          classes         : TetherClass,
          classPrefix     : CLASS_PREFIX,
          offset          : this.config.offset,
          constraints     : this.config.constraints,
          addTargetClasses: false
290
291
292
        })

        Util.reflow(tip)
fat's avatar
fat committed
293
        this._tether.position()
294
295
296
297
298
299
300

        $(tip).addClass(ClassName.IN)

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

fat's avatar
fat committed
301
          $(this.element).trigger(this.constructor.Event.SHOWN)
302
303
304
305
306
307

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

Jacob Thornton's avatar
Jacob Thornton committed
308
        if (Util.supportsTransitionEnd() && $(this.tip).hasClass(ClassName.FADE)) {
309
310
          $(this.tip)
            .one(Util.TRANSITION_END, complete)
Jacob Thornton's avatar
Jacob Thornton committed
311
312
313
314
315
            .emulateTransitionEnd(Tooltip._TRANSITION_DURATION)
          return
        }

        complete()
316
317
318
319
320
      }
    }

    hide(callback) {
      let tip       = this.getTipElement()
fat's avatar
fat committed
321
      let hideEvent = $.Event(this.constructor.Event.HIDE)
322
323
324
325
326
327
      let complete  = () => {
        if (this._hoverState !== HoverState.IN && tip.parentNode) {
          tip.parentNode.removeChild(tip)
        }

        this.element.removeAttribute('aria-describedby')
fat's avatar
fat committed
328
        $(this.element).trigger(this.constructor.Event.HIDDEN)
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
        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() {
Jacob Thornton's avatar
Jacob Thornton committed
362
      return Boolean(this.getTitle())
363
364
365
366
367
368
369
    }

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

    setContent() {
370
      let $tip = $(this.getTipElement())
371

372
      this.setElementContent($tip.find(Selector.TOOLTIP_INNER), this.getTitle())
373

374
      $tip
375
376
377
378
379
380
        .removeClass(ClassName.FADE)
        .removeClass(ClassName.IN)

      this.cleanupTether()
    }

381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
    setElementContent($element, content) {
      let html = this.config.html
      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)
      }
    }

397
398
399
400
401
402
403
404
405
406
407
408
409
    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
410
411
      if (this._tether) {
        this._tether.destroy()
412
413
414
415
416
417
      }
    }


    // private

fat's avatar
fat committed
418
419
420
421
    _getAttachment(placement) {
      return AttachmentMap[placement.toUpperCase()]
    }

422
423
424
425
426
427
    _setListeners() {
      let triggers = this.config.trigger.split(' ')

      triggers.forEach((trigger) => {
        if (trigger === 'click') {
          $(this.element).on(
fat's avatar
fat committed
428
            this.constructor.Event.CLICK,
429
            this.config.selector,
430
            $.proxy(this.toggle, this)
431
432
433
          )

        } else if (trigger !== Trigger.MANUAL) {
Jacob Thornton's avatar
Jacob Thornton committed
434
          let eventIn  = trigger === Trigger.HOVER ?
fat's avatar
fat committed
435
436
            this.constructor.Event.MOUSEENTER :
            this.constructor.Event.FOCUSIN
Jacob Thornton's avatar
Jacob Thornton committed
437
          let eventOut = trigger === Trigger.HOVER ?
fat's avatar
fat committed
438
439
            this.constructor.Event.MOUSELEAVE :
            this.constructor.Event.FOCUSOUT
440
441
442
443
444

          $(this.element)
            .on(
              eventIn,
              this.config.selector,
445
              $.proxy(this._enter, this)
446
447
448
449
            )
            .on(
              eventOut,
              this.config.selector,
450
              $.proxy(this._leave, this)
451
452
453
454
455
456
457
458
459
460
461
462
463
464
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() {
      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
478
479
480
      let dataKey = this.constructor.DATA_KEY

      context = context || $(event.currentTarget).data(dataKey)
481
482
483
484
485
486

      if (!context) {
        context = new this.constructor(
          event.currentTarget,
          this._getDelegateConfig()
        )
fat's avatar
fat committed
487
        $(event.currentTarget).data(dataKey, context)
488
489
490
491
      }

      if (event) {
        context._activeTrigger[
Jacob Thornton's avatar
Jacob Thornton committed
492
          event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER
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
        ] = 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
519
520
521
      let dataKey = this.constructor.DATA_KEY

      context = context || $(event.currentTarget).data(dataKey)
522
523
524
525
526
527

      if (!context) {
        context = new this.constructor(
          event.currentTarget,
          this._getDelegateConfig()
        )
fat's avatar
fat committed
528
        $(event.currentTarget).data(dataKey, context)
529
530
531
532
      }

      if (event) {
        context._activeTrigger[
Jacob Thornton's avatar
Jacob Thornton committed
533
          event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
        ] = 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
568
569
570
571
572
573
      config = $.extend(
        {},
        this.constructor.Default,
        $(this.element).data(),
        config
      )
574
575
576
577
578
579
580
581

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

fat's avatar
fat committed
582
583
584
585
586
587
      Util.typeCheckConfig(
        NAME,
        config,
        this.constructor.DefaultType
      )

588
589
590
591
592
593
594
595
      return config
    }

    _getDelegateConfig() {
      let config = {}

      if (this.config) {
        for (let key in this.config) {
Jacob Thornton's avatar
Jacob Thornton committed
596
597
          if (this.constructor.Default[key] !== this.config[key]) {
            config[key] = this.config[key]
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
          }
        }
      }

      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') {
624
625
626
          if (data[config] === undefined) {
            throw new Error(`No method named "${config}"`)
          }
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
          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