tooltip.js 15.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.5): 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
   */
Jacob Thornton's avatar
Jacob Thornton committed
19
  if (window.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.5'
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
  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-inner"></div></div>',
    trigger     : 'hover focus',
    title       : '',
    delay       : 0,
    html        : false,
    selector    : false,
fat's avatar
fat committed
47
    placement   : 'top',
48
    offset      : '0 0',
49
50
    constraints : [],
    container   : false
fat's avatar
fat committed
51
52
53
54
55
  }

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

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

  const HoverState = {
75
76
    ACTIVE : 'active',
    OUT    : 'out'
77
78
79
  }

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

  const ClassName = {
93
94
    FADE   : 'fade',
    ACTIVE : 'active'
95
96
97
98
  }

  const Selector = {
    TOOLTIP       : '.tooltip',
fat's avatar
fat committed
99
    TOOLTIP_INNER : '.tooltip-inner'
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
  }

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

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


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

  class Tooltip {

    constructor(element, config) {

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

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

    static get DATA_KEY() {
      return DATA_KEY
    }

    static get Event() {
      return Event
    }

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

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

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

    // public

    enable() {
      this._isEnabled = true
    }

    disable() {
      this._isEnabled = false
    }

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

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

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

        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
209

210
        if ($(this.getTipElement()).hasClass(ClassName.ACTIVE)) {
Jacob Thornton's avatar
Jacob Thornton committed
211
212
213
214
215
          this._leave(null, this)
          return
        }

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

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

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

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

fat's avatar
fat committed
226
227
228
229
230
231
      $(this.element).off(this.constructor.EVENT_KEY)

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

232
233
234
235
236
      this._isEnabled     = null
      this._timeout       = null
      this._hoverState    = null
      this._activeTrigger = null
      this._tether        = null
fat's avatar
fat committed
237
238
239
240

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

    show() {
244
245
246
      if ($(this.element).css('display') === 'none') {
        throw new Error('Please use show on visible elements')
      }
247
      const showEvent = $.Event(this.constructor.Event.SHOW)
248
249
250
251

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

252
        const isInTheDom = $.contains(
253
254
255
256
257
258
259
260
          this.element.ownerDocument.documentElement,
          this.element
        )

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

261
262
        const tip   = this.getTipElement()
        const tipId = Util.getUID(this.constructor.NAME)
263
264
265
266
267
268
269
270
271
272

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

        this.setContent()

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

273
        const placement  = typeof this.config.placement === 'function' ?
fat's avatar
fat committed
274
275
          this.config.placement.call(this, tip, this.element) :
          this.config.placement
276

277
        const attachment = this._getAttachment(placement)
278

279
280
        const container = this.config.container === false ? document.body : $(this.config.container)

fat's avatar
fat committed
281
282
        $(tip)
          .data(this.constructor.DATA_KEY, this)
283
          .appendTo(container)
284

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

fat's avatar
fat committed
287
        this._tether = new Tether({
Jacob Thornton's avatar
Jacob Thornton committed
288
          attachment,
289
290
291
292
293
294
295
          element         : tip,
          target          : this.element,
          classes         : TetherClass,
          classPrefix     : CLASS_PREFIX,
          offset          : this.config.offset,
          constraints     : this.config.constraints,
          addTargetClasses: false
296
297
298
        })

        Util.reflow(tip)
fat's avatar
fat committed
299
        this._tether.position()
300

301
        $(tip).addClass(ClassName.ACTIVE)
302

303
304
305
        const complete = () => {
          const prevHoverState = this._hoverState
          this._hoverState     = null
306

fat's avatar
fat committed
307
          $(this.element).trigger(this.constructor.Event.SHOWN)
308
309
310
311
312
313

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

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

        complete()
322
323
324
325
      }
    }

    hide(callback) {
326
327
328
      const tip       = this.getTipElement()
      const hideEvent = $.Event(this.constructor.Event.HIDE)
      const complete  = () => {
329
        if (this._hoverState !== HoverState.ACTIVE && tip.parentNode) {
330
331
332
333
          tip.parentNode.removeChild(tip)
        }

        this.element.removeAttribute('aria-describedby')
fat's avatar
fat committed
334
        $(this.element).trigger(this.constructor.Event.HIDDEN)
335
336
337
338
339
340
341
342
343
344
345
346
347
        this.cleanupTether()

        if (callback) {
          callback()
        }
      }

      $(this.element).trigger(hideEvent)

      if (hideEvent.isDefaultPrevented()) {
        return
      }

348
      $(tip).removeClass(ClassName.ACTIVE)
349
350

      if (Util.supportsTransitionEnd() &&
351
          $(this.tip).hasClass(ClassName.FADE)) {
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367

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

      } else {
        complete()
      }

      this._hoverState = ''
    }


    // protected

    isWithContent() {
Jacob Thornton's avatar
Jacob Thornton committed
368
      return Boolean(this.getTitle())
369
370
371
    }

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

    setContent() {
376
      const $tip = $(this.getTipElement())
377

378
      this.setElementContent($tip.find(Selector.TOOLTIP_INNER), this.getTitle())
379

380
      $tip.removeClass(`${ClassName.FADE} ${ClassName.ACTIVE}`)
381
382
383
384

      this.cleanupTether()
    }

385
    setElementContent($element, content) {
386
      const html = this.config.html
387
388
389
390
391
392
393
394
395
396
397
398
399
400
      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)
      }
    }

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


    // private

fat's avatar
fat committed
422
423
424
425
    _getAttachment(placement) {
      return AttachmentMap[placement.toUpperCase()]
    }

426
    _setListeners() {
427
      const triggers = this.config.trigger.split(' ')
428
429
430
431

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

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

          $(this.element)
            .on(
              eventIn,
              this.config.selector,
449
              (event) => this._enter(event)
450
451
452
453
            )
            .on(
              eventOut,
              this.config.selector,
454
              (event) => this._leave(event)
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
            )
        }
      })

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

    _fixTitle() {
470
      const titleType = typeof this.element.getAttribute('data-original-title')
471
      if (this.element.getAttribute('title') ||
472
         titleType !== 'string') {
473
474
475
476
477
478
479
480
481
        this.element.setAttribute(
          'data-original-title',
          this.element.getAttribute('title') || ''
        )
        this.element.setAttribute('title', '')
      }
    }

    _enter(event, context) {
482
      const dataKey = this.constructor.DATA_KEY
fat's avatar
fat committed
483
484

      context = context || $(event.currentTarget).data(dataKey)
485
486
487
488
489
490

      if (!context) {
        context = new this.constructor(
          event.currentTarget,
          this._getDelegateConfig()
        )
fat's avatar
fat committed
491
        $(event.currentTarget).data(dataKey, context)
492
493
494
495
      }

      if (event) {
        context._activeTrigger[
Jacob Thornton's avatar
Jacob Thornton committed
496
          event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER
497
498
499
        ] = true
      }

500
      if ($(context.getTipElement()).hasClass(ClassName.ACTIVE) ||
501
         context._hoverState === HoverState.ACTIVE) {
502
        context._hoverState = HoverState.ACTIVE
503
504
505
506
507
        return
      }

      clearTimeout(context._timeout)

508
      context._hoverState = HoverState.ACTIVE
509
510
511
512
513
514
515

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

      context._timeout = setTimeout(() => {
516
        if (context._hoverState === HoverState.ACTIVE) {
517
518
519
520
521
522
          context.show()
        }
      }, context.config.delay.show)
    }

    _leave(event, context) {
523
      const dataKey = this.constructor.DATA_KEY
fat's avatar
fat committed
524
525

      context = context || $(event.currentTarget).data(dataKey)
526
527
528
529
530
531

      if (!context) {
        context = new this.constructor(
          event.currentTarget,
          this._getDelegateConfig()
        )
fat's avatar
fat committed
532
        $(event.currentTarget).data(dataKey, context)
533
534
535
536
      }

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

      return false
    }

    _getConfig(config) {
fat's avatar
fat committed
572
573
574
575
576
577
      config = $.extend(
        {},
        this.constructor.Default,
        $(this.element).data(),
        config
      )
578
579
580
581
582
583
584
585

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

fat's avatar
fat committed
586
587
588
589
590
591
      Util.typeCheckConfig(
        NAME,
        config,
        this.constructor.DefaultType
      )

592
593
594
595
      return config
    }

    _getDelegateConfig() {
596
      const config = {}
597
598

      if (this.config) {
599
        for (const key in this.config) {
Jacob Thornton's avatar
Jacob Thornton committed
600
601
          if (this.constructor.Default[key] !== this.config[key]) {
            config[key] = this.config[key]
602
603
604
605
606
607
608
609
610
611
612
613
          }
        }
      }

      return config
    }


    // static

    static _jQueryInterface(config) {
      return this.each(function () {
614
615
        let data      = $(this).data(DATA_KEY)
        const _config = typeof config === 'object' && config
616

Johann-S's avatar
Johann-S committed
617
        if (!data && /dispose|hide/.test(config)) {
618
619
620
621
622
623
624
625
626
          return
        }

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

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