tooltip.js 17.7 KB
Newer Older
1
2
/**
 * --------------------------------------------------------------------------
Mark Otto's avatar
Mark Otto committed
3
 * Bootstrap (v4.3.0): tooltip.js
4
5
6
7
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 */

8
9
10
11
import $ from 'jquery'
import Popper from 'popper.js'
import Util from './util'

Johann-S's avatar
Johann-S committed
12
13
14
15
16
/**
 * ------------------------------------------------------------------------
 * Constants
 * ------------------------------------------------------------------------
 */
17

Johann-S's avatar
Johann-S committed
18
const NAME               = 'tooltip'
Mark Otto's avatar
Mark Otto committed
19
const VERSION            = '4.3.0'
Johann-S's avatar
Johann-S committed
20
21
22
23
24
25
26
const DATA_KEY           = 'bs.tooltip'
const EVENT_KEY          = `.${DATA_KEY}`
const JQUERY_NO_CONFLICT = $.fn[NAME]
const CLASS_PREFIX       = 'bs-tooltip'
const BSCLS_PREFIX_REGEX = new RegExp(`(^|\\s)${CLASS_PREFIX}\\S+`, 'g')

const DefaultType = {
27
28
29
30
31
32
33
34
  animation         : 'boolean',
  template          : 'string',
  title             : '(string|element|function)',
  trigger           : 'string',
  delay             : '(number|object)',
  html              : 'boolean',
  selector          : '(string|boolean)',
  placement         : '(string|function)',
35
  offset            : '(number|string|function)',
36
37
38
  container         : '(string|element|boolean)',
  fallbackPlacement : '(string|array)',
  boundary          : '(string|element)'
Johann-S's avatar
Johann-S committed
39
40
41
42
43
44
45
46
47
48
49
}

const AttachmentMap = {
  AUTO   : 'auto',
  TOP    : 'top',
  RIGHT  : 'right',
  BOTTOM : 'bottom',
  LEFT   : 'left'
}

const Default = {
50
51
52
53
54
55
56
57
58
59
60
61
62
63
  animation         : true,
  template          : '<div class="tooltip" role="tooltip">' +
                    '<div class="arrow"></div>' +
                    '<div class="tooltip-inner"></div></div>',
  trigger           : 'hover focus',
  title             : '',
  delay             : 0,
  html              : false,
  selector          : false,
  placement         : 'top',
  offset            : 0,
  container         : false,
  fallbackPlacement : 'flip',
  boundary          : 'scrollParent'
Johann-S's avatar
Johann-S committed
64
65
66
67
68
69
70
71
72
73
74
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
}

const HoverState = {
  SHOW : 'show',
  OUT  : 'out'
}

const Event = {
  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}`
}

const ClassName = {
  FADE : 'fade',
  SHOW : 'show'
}

const Selector = {
  TOOLTIP       : '.tooltip',
  TOOLTIP_INNER : '.tooltip-inner',
  ARROW         : '.arrow'
}

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


Johann-S's avatar
Johann-S committed
103
104
105
106
107
/**
 * ------------------------------------------------------------------------
 * Class Definition
 * ------------------------------------------------------------------------
 */
108

Johann-S's avatar
Johann-S committed
109
110
111
112
113
114
115
class Tooltip {
  constructor(element, config) {
    /**
     * Check for Popper dependency
     * Popper - https://popper.js.org
     */
    if (typeof Popper === 'undefined') {
116
      throw new TypeError('Bootstrap\'s tooltips require Popper.js (https://popper.js.org/)')
117
118
    }

Johann-S's avatar
Johann-S committed
119
120
121
122
123
124
    // private
    this._isEnabled     = true
    this._timeout       = 0
    this._hoverState    = ''
    this._activeTrigger = {}
    this._popper        = null
125

Johann-S's avatar
Johann-S committed
126
127
128
129
    // Protected
    this.element = element
    this.config  = this._getConfig(config)
    this.tip     = null
fat's avatar
fat committed
130

Johann-S's avatar
Johann-S committed
131
132
    this._setListeners()
  }
fat's avatar
fat committed
133

Johann-S's avatar
Johann-S committed
134
  // Getters
fat's avatar
fat committed
135

Johann-S's avatar
Johann-S committed
136
137
138
  static get VERSION() {
    return VERSION
  }
fat's avatar
fat committed
139

Johann-S's avatar
Johann-S committed
140
141
142
  static get Default() {
    return Default
  }
fat's avatar
fat committed
143

Johann-S's avatar
Johann-S committed
144
145
146
  static get NAME() {
    return NAME
  }
147

Johann-S's avatar
Johann-S committed
148
149
150
  static get DATA_KEY() {
    return DATA_KEY
  }
151

Johann-S's avatar
Johann-S committed
152
153
154
  static get Event() {
    return Event
  }
155

Johann-S's avatar
Johann-S committed
156
157
158
  static get EVENT_KEY() {
    return EVENT_KEY
  }
159

Johann-S's avatar
Johann-S committed
160
161
162
  static get DefaultType() {
    return DefaultType
  }
163

Johann-S's avatar
Johann-S committed
164
  // Public
165

Johann-S's avatar
Johann-S committed
166
167
168
  enable() {
    this._isEnabled = true
  }
169

Johann-S's avatar
Johann-S committed
170
171
172
  disable() {
    this._isEnabled = false
  }
173

Johann-S's avatar
Johann-S committed
174
175
176
  toggleEnabled() {
    this._isEnabled = !this._isEnabled
  }
Jacob Thornton's avatar
Jacob Thornton committed
177

Johann-S's avatar
Johann-S committed
178
179
180
  toggle(event) {
    if (!this._isEnabled) {
      return
181
182
    }

Johann-S's avatar
Johann-S committed
183
184
185
    if (event) {
      const dataKey = this.constructor.DATA_KEY
      let context = $(event.currentTarget).data(dataKey)
fat's avatar
fat committed
186

Johann-S's avatar
Johann-S committed
187
188
189
190
191
192
193
      if (!context) {
        context = new this.constructor(
          event.currentTarget,
          this._getDelegateConfig()
        )
        $(event.currentTarget).data(dataKey, context)
      }
fat's avatar
fat committed
194

Johann-S's avatar
Johann-S committed
195
      context._activeTrigger.click = !context._activeTrigger.click
fat's avatar
fat committed
196

Johann-S's avatar
Johann-S committed
197
198
199
200
      if (context._isWithActiveTrigger()) {
        context._enter(null, context)
      } else {
        context._leave(null, context)
fat's avatar
fat committed
201
      }
Johann-S's avatar
Johann-S committed
202
203
204
205
    } else {
      if ($(this.getTipElement()).hasClass(ClassName.SHOW)) {
        this._leave(null, this)
        return
206
      }
fat's avatar
fat committed
207

Johann-S's avatar
Johann-S committed
208
      this._enter(null, this)
209
    }
Johann-S's avatar
Johann-S committed
210
  }
211

Johann-S's avatar
Johann-S committed
212
213
  dispose() {
    clearTimeout(this._timeout)
214

Johann-S's avatar
Johann-S committed
215
    $.removeData(this.element, this.constructor.DATA_KEY)
216

Johann-S's avatar
Johann-S committed
217
218
    $(this.element).off(this.constructor.EVENT_KEY)
    $(this.element).closest('.modal').off('hide.bs.modal')
219

Johann-S's avatar
Johann-S committed
220
221
222
223
224
225
226
227
228
229
230
    if (this.tip) {
      $(this.tip).remove()
    }

    this._isEnabled     = null
    this._timeout       = null
    this._hoverState    = null
    this._activeTrigger = null
    if (this._popper !== null) {
      this._popper.destroy()
    }
231

Johann-S's avatar
Johann-S committed
232
233
234
235
236
    this._popper = null
    this.element = null
    this.config  = null
    this.tip     = null
  }
237

Johann-S's avatar
Johann-S committed
238
239
240
241
  show() {
    if ($(this.element).css('display') === 'none') {
      throw new Error('Please use show on visible elements')
    }
242

Johann-S's avatar
Johann-S committed
243
244
245
    const showEvent = $.Event(this.constructor.Event.SHOW)
    if (this.isWithContent() && this._isEnabled) {
      $(this.element).trigger(showEvent)
246

247
      const shadowRoot = Util.findShadowRoot(this.element)
Johann-S's avatar
Johann-S committed
248
      const isInTheDom = $.contains(
249
        shadowRoot !== null ? shadowRoot : this.element.ownerDocument.documentElement,
Johann-S's avatar
Johann-S committed
250
251
        this.element
      )
252

Johann-S's avatar
Johann-S committed
253
254
255
      if (showEvent.isDefaultPrevented() || !isInTheDom) {
        return
      }
256

Johann-S's avatar
Johann-S committed
257
258
      const tip   = this.getTipElement()
      const tipId = Util.getUID(this.constructor.NAME)
259

Johann-S's avatar
Johann-S committed
260
261
      tip.setAttribute('id', tipId)
      this.element.setAttribute('aria-describedby', tipId)
262

Johann-S's avatar
Johann-S committed
263
      this.setContent()
264

Johann-S's avatar
Johann-S committed
265
266
267
      if (this.config.animation) {
        $(tip).addClass(ClassName.FADE)
      }
268

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

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

276
      const container = this._getContainer()
Johann-S's avatar
Johann-S committed
277
278
279
280
281
      $(tip).data(this.constructor.DATA_KEY, this)

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

Johann-S's avatar
Johann-S committed
283
      $(this.element).trigger(this.constructor.Event.INSERTED)
284

Johann-S's avatar
Johann-S committed
285
286
287
      this._popper = new Popper(this.element, tip, {
        placement: attachment,
        modifiers: {
288
          offset: this._getOffset(),
Johann-S's avatar
Johann-S committed
289
290
291
292
293
294
295
296
297
298
299
300
301
          flip: {
            behavior: this.config.fallbackPlacement
          },
          arrow: {
            element: Selector.ARROW
          },
          preventOverflow: {
            boundariesElement: this.config.boundary
          }
        },
        onCreate: (data) => {
          if (data.originalPlacement !== data.placement) {
            this._handlePopperPlacementChange(data)
302
          }
Johann-S's avatar
Johann-S committed
303
        },
304
        onUpdate: (data) => this._handlePopperPlacementChange(data)
Johann-S's avatar
Johann-S committed
305
      })
306

Johann-S's avatar
Johann-S committed
307
      $(tip).addClass(ClassName.SHOW)
308

Johann-S's avatar
Johann-S committed
309
310
311
312
313
314
      // 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
      if ('ontouchstart' in document.documentElement) {
        $(document.body).children().on('mouseover', null, $.noop)
315
316
      }

XhmikosR's avatar
XhmikosR committed
317
      const complete = () => {
Johann-S's avatar
Johann-S committed
318
319
        if (this.config.animation) {
          this._fixTransition()
320
        }
Johann-S's avatar
Johann-S committed
321
322
        const prevHoverState = this._hoverState
        this._hoverState     = null
323

Johann-S's avatar
Johann-S committed
324
        $(this.element).trigger(this.constructor.Event.SHOWN)
325

Johann-S's avatar
Johann-S committed
326
327
        if (prevHoverState === HoverState.OUT) {
          this._leave(null, this)
328
329
330
        }
      }

331
      if ($(this.tip).hasClass(ClassName.FADE)) {
Johann-S's avatar
Johann-S committed
332
        const transitionDuration = Util.getTransitionDurationFromElement(this.tip)
333

Johann-S's avatar
Johann-S committed
334
        $(this.tip)
335
          .one(Util.TRANSITION_END, complete)
336
          .emulateTransitionEnd(transitionDuration)
337
338
339
340
      } else {
        complete()
      }
    }
Johann-S's avatar
Johann-S committed
341
  }
342

Johann-S's avatar
Johann-S committed
343
344
345
346
347
348
  hide(callback) {
    const tip       = this.getTipElement()
    const hideEvent = $.Event(this.constructor.Event.HIDE)
    const complete = () => {
      if (this._hoverState !== HoverState.SHOW && tip.parentNode) {
        tip.parentNode.removeChild(tip)
349
      }
350

Johann-S's avatar
Johann-S committed
351
352
353
354
355
356
      this._cleanTipClass()
      this.element.removeAttribute('aria-describedby')
      $(this.element).trigger(this.constructor.Event.HIDDEN)
      if (this._popper !== null) {
        this._popper.destroy()
      }
357

Johann-S's avatar
Johann-S committed
358
359
360
      if (callback) {
        callback()
      }
361
362
    }

Johann-S's avatar
Johann-S committed
363
    $(this.element).trigger(hideEvent)
Johann-S's avatar
Johann-S committed
364

Johann-S's avatar
Johann-S committed
365
366
    if (hideEvent.isDefaultPrevented()) {
      return
367
368
    }

Johann-S's avatar
Johann-S committed
369
    $(tip).removeClass(ClassName.SHOW)
370

Johann-S's avatar
Johann-S committed
371
372
373
374
    // If this is a touch-enabled device we remove the extra
    // empty mouseover listeners we added for iOS support
    if ('ontouchstart' in document.documentElement) {
      $(document.body).children().off('mouseover', null, $.noop)
375
376
    }

Johann-S's avatar
Johann-S committed
377
378
379
    this._activeTrigger[Trigger.CLICK] = false
    this._activeTrigger[Trigger.FOCUS] = false
    this._activeTrigger[Trigger.HOVER] = false
380

Johann-S's avatar
Johann-S committed
381
382
    if ($(this.tip).hasClass(ClassName.FADE)) {
      const transitionDuration = Util.getTransitionDurationFromElement(tip)
383

Johann-S's avatar
Johann-S committed
384
385
386
387
388
      $(tip)
        .one(Util.TRANSITION_END, complete)
        .emulateTransitionEnd(transitionDuration)
    } else {
      complete()
389
390
    }

Johann-S's avatar
Johann-S committed
391
392
    this._hoverState = ''
  }
393

Johann-S's avatar
Johann-S committed
394
395
396
  update() {
    if (this._popper !== null) {
      this._popper.scheduleUpdate()
fat's avatar
fat committed
397
    }
Johann-S's avatar
Johann-S committed
398
  }
fat's avatar
fat committed
399

Johann-S's avatar
Johann-S committed
400
  // Protected
401

Johann-S's avatar
Johann-S committed
402
403
404
  isWithContent() {
    return Boolean(this.getTitle())
  }
405

Johann-S's avatar
Johann-S committed
406
407
408
  addAttachmentClass(attachment) {
    $(this.getTipElement()).addClass(`${CLASS_PREFIX}-${attachment}`)
  }
409

Johann-S's avatar
Johann-S committed
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
  getTipElement() {
    this.tip = this.tip || $(this.config.template)[0]
    return this.tip
  }

  setContent() {
    const tip = this.getTipElement()
    this.setElementContent($(tip.querySelectorAll(Selector.TOOLTIP_INNER)), this.getTitle())
    $(tip).removeClass(`${ClassName.FADE} ${ClassName.SHOW}`)
  }

  setElementContent($element, content) {
    const 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)
428
        }
429
      } else {
Johann-S's avatar
Johann-S committed
430
        $element.text($(content).text())
431
      }
Johann-S's avatar
Johann-S committed
432
433
    } else {
      $element[html ? 'html' : 'text'](content)
434
    }
Johann-S's avatar
Johann-S committed
435
  }
436

Johann-S's avatar
Johann-S committed
437
438
439
440
441
442
443
  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
444
445
    }

Johann-S's avatar
Johann-S committed
446
447
    return title
  }
fat's avatar
fat committed
448

Johann-S's avatar
Johann-S committed
449
  // Private
450

451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
  _getOffset() {
    const offset = {}

    if (typeof this.config.offset === 'function') {
      offset.fn = (data) => {
        data.offsets = {
          ...data.offsets,
          ...this.config.offset(data.offsets, this.element) || {}
        }

        return data
      }
    } else {
      offset.offset = this.config.offset
    }

    return offset
  }

470
471
472
473
474
475
476
477
478
479
480
481
  _getContainer() {
    if (this.config.container === false) {
      return document.body
    }

    if (Util.isElement(this.config.container)) {
      return $(this.config.container)
    }

    return $(document).find(this.config.container)
  }

Johann-S's avatar
Johann-S committed
482
483
484
485
486
487
488
489
490
491
492
493
494
  _getAttachment(placement) {
    return AttachmentMap[placement.toUpperCase()]
  }

  _setListeners() {
    const triggers = this.config.trigger.split(' ')

    triggers.forEach((trigger) => {
      if (trigger === 'click') {
        $(this.element).on(
          this.constructor.Event.CLICK,
          this.config.selector,
          (event) => this.toggle(event)
495
        )
Johann-S's avatar
Johann-S committed
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
      } else if (trigger !== Trigger.MANUAL) {
        const eventIn = trigger === Trigger.HOVER
          ? this.constructor.Event.MOUSEENTER
          : this.constructor.Event.FOCUSIN
        const eventOut = trigger === Trigger.HOVER
          ? this.constructor.Event.MOUSELEAVE
          : this.constructor.Event.FOCUSOUT

        $(this.element)
          .on(
            eventIn,
            this.config.selector,
            (event) => this._enter(event)
          )
          .on(
            eventOut,
            this.config.selector,
            (event) => this._leave(event)
          )
515
      }
Johann-S's avatar
Johann-S committed
516
    })
517

518
519
520
521
522
523
524
525
526
    $(this.element).closest('.modal').on(
      'hide.bs.modal',
      () => {
        if (this.element) {
          this.hide()
        }
      }
    )

Johann-S's avatar
Johann-S committed
527
528
529
530
531
    if (this.config.selector) {
      this.config = {
        ...this.config,
        trigger: 'manual',
        selector: ''
532
      }
Johann-S's avatar
Johann-S committed
533
534
535
536
    } else {
      this._fixTitle()
    }
  }
537

Johann-S's avatar
Johann-S committed
538
539
  _fixTitle() {
    const titleType = typeof this.element.getAttribute('data-original-title')
540
541

    if (this.element.getAttribute('title') || titleType !== 'string') {
Johann-S's avatar
Johann-S committed
542
543
544
545
      this.element.setAttribute(
        'data-original-title',
        this.element.getAttribute('title') || ''
      )
546

Johann-S's avatar
Johann-S committed
547
548
549
      this.element.setAttribute('title', '')
    }
  }
550

Johann-S's avatar
Johann-S committed
551
552
553
  _enter(event, context) {
    const dataKey = this.constructor.DATA_KEY
    context = context || $(event.currentTarget).data(dataKey)
554

Johann-S's avatar
Johann-S committed
555
556
557
558
559
560
    if (!context) {
      context = new this.constructor(
        event.currentTarget,
        this._getDelegateConfig()
      )
      $(event.currentTarget).data(dataKey, context)
561
562
    }

Johann-S's avatar
Johann-S committed
563
564
565
566
567
    if (event) {
      context._activeTrigger[
        event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER
      ] = true
    }
fat's avatar
fat committed
568

569
    if ($(context.getTipElement()).hasClass(ClassName.SHOW) || context._hoverState === HoverState.SHOW) {
Johann-S's avatar
Johann-S committed
570
571
572
      context._hoverState = HoverState.SHOW
      return
    }
573

Johann-S's avatar
Johann-S committed
574
    clearTimeout(context._timeout)
575

Johann-S's avatar
Johann-S committed
576
    context._hoverState = HoverState.SHOW
577

Johann-S's avatar
Johann-S committed
578
579
580
581
    if (!context.config.delay || !context.config.delay.show) {
      context.show()
      return
    }
582

Johann-S's avatar
Johann-S committed
583
584
585
586
587
588
    context._timeout = setTimeout(() => {
      if (context._hoverState === HoverState.SHOW) {
        context.show()
      }
    }, context.config.delay.show)
  }
589

Johann-S's avatar
Johann-S committed
590
591
592
  _leave(event, context) {
    const dataKey = this.constructor.DATA_KEY
    context = context || $(event.currentTarget).data(dataKey)
593

Johann-S's avatar
Johann-S committed
594
595
596
597
598
599
    if (!context) {
      context = new this.constructor(
        event.currentTarget,
        this._getDelegateConfig()
      )
      $(event.currentTarget).data(dataKey, context)
600
601
    }

Johann-S's avatar
Johann-S committed
602
603
604
605
606
    if (event) {
      context._activeTrigger[
        event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER
      ] = false
    }
607

Johann-S's avatar
Johann-S committed
608
609
    if (context._isWithActiveTrigger()) {
      return
610
611
    }

Johann-S's avatar
Johann-S committed
612
    clearTimeout(context._timeout)
613

Johann-S's avatar
Johann-S committed
614
    context._hoverState = HoverState.OUT
615

Johann-S's avatar
Johann-S committed
616
617
618
619
    if (!context.config.delay || !context.config.delay.hide) {
      context.hide()
      return
    }
620

Johann-S's avatar
Johann-S committed
621
622
623
    context._timeout = setTimeout(() => {
      if (context._hoverState === HoverState.OUT) {
        context.hide()
624
      }
Johann-S's avatar
Johann-S committed
625
626
    }, context.config.delay.hide)
  }
627

Johann-S's avatar
Johann-S committed
628
629
630
631
632
  _isWithActiveTrigger() {
    for (const trigger in this._activeTrigger) {
      if (this._activeTrigger[trigger]) {
        return true
      }
633
634
    }

Johann-S's avatar
Johann-S committed
635
636
    return false
  }
637

Johann-S's avatar
Johann-S committed
638
639
640
641
642
  _getConfig(config) {
    config = {
      ...this.constructor.Default,
      ...$(this.element).data(),
      ...typeof config === 'object' && config ? config : {}
643
644
    }

Johann-S's avatar
Johann-S committed
645
646
647
648
    if (typeof config.delay === 'number') {
      config.delay = {
        show: config.delay,
        hide: config.delay
Johann-S's avatar
Johann-S committed
649
      }
Johann-S's avatar
Johann-S committed
650
651
    }

Johann-S's avatar
Johann-S committed
652
653
    if (typeof config.title === 'number') {
      config.title = config.title.toString()
654
    }
655

Johann-S's avatar
Johann-S committed
656
657
    if (typeof config.content === 'number') {
      config.content = config.content.toString()
658
659
    }

Johann-S's avatar
Johann-S committed
660
661
662
663
664
    Util.typeCheckConfig(
      NAME,
      config,
      this.constructor.DefaultType
    )
665

Johann-S's avatar
Johann-S committed
666
667
    return config
  }
668

Johann-S's avatar
Johann-S committed
669
670
  _getDelegateConfig() {
    const config = {}
671

Johann-S's avatar
Johann-S committed
672
673
674
675
    if (this.config) {
      for (const key in this.config) {
        if (this.constructor.Default[key] !== this.config[key]) {
          config[key] = this.config[key]
676
        }
Johann-S's avatar
Johann-S committed
677
678
      }
    }
679

Johann-S's avatar
Johann-S committed
680
681
682
683
684
685
686
687
    return config
  }

  _cleanTipClass() {
    const $tip = $(this.getTipElement())
    const tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX)
    if (tabClass !== null && tabClass.length) {
      $tip.removeClass(tabClass.join(''))
688
689
690
    }
  }

Johann-S's avatar
Johann-S committed
691
692
693
694
695
696
697
698
699
700
  _handlePopperPlacementChange(popperData) {
    const popperInstance = popperData.instance
    this.tip = popperInstance.popper
    this._cleanTipClass()
    this.addAttachmentClass(this._getAttachment(popperData.placement))
  }

  _fixTransition() {
    const tip = this.getTipElement()
    const initConfigAnimation = this.config.animation
701

Johann-S's avatar
Johann-S committed
702
703
704
    if (tip.getAttribute('x-placement') !== null) {
      return
    }
705

Johann-S's avatar
Johann-S committed
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
    $(tip).removeClass(ClassName.FADE)
    this.config.animation = false
    this.hide()
    this.show()
    this.config.animation = initConfigAnimation
  }

  // Static

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

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

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

Johann-S's avatar
Johann-S committed
729
730
731
732
733
734
735
      if (typeof config === 'string') {
        if (typeof data[config] === 'undefined') {
          throw new TypeError(`No method named "${config}"`)
        }
        data[config]()
      }
    })
736
  }
Johann-S's avatar
Johann-S committed
737
738
739
740
741
742
743
}

/**
 * ------------------------------------------------------------------------
 * jQuery
 * ------------------------------------------------------------------------
 */
744

Johann-S's avatar
Johann-S committed
745
746
747
748
749
750
$.fn[NAME] = Tooltip._jQueryInterface
$.fn[NAME].Constructor = Tooltip
$.fn[NAME].noConflict = () => {
  $.fn[NAME] = JQUERY_NO_CONFLICT
  return Tooltip._jQueryInterface
}
751
752

export default Tooltip