2015-11-04 00:04:26 +01:00
|
|
|
/* global Tether */
|
|
|
|
|
2015-05-12 08:32:37 +02:00
|
|
|
import Util from './util'
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* --------------------------------------------------------------------------
|
2016-10-19 17:27:41 +02:00
|
|
|
* Bootstrap (v4.0.0-alpha.5): tooltip.js
|
2015-05-12 08:32:37 +02:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
|
|
|
* --------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2015-05-12 23:28:11 +02:00
|
|
|
const Tooltip = (($) => {
|
2015-05-12 08:32:37 +02:00
|
|
|
|
2015-11-15 05:35:10 +01:00
|
|
|
/**
|
|
|
|
* Check for Tether dependency
|
2016-10-03 18:55:59 +02:00
|
|
|
* Tether - http://tether.io/
|
2015-11-15 05:35:10 +01:00
|
|
|
*/
|
2016-03-14 21:29:03 +01:00
|
|
|
if (typeof Tether === 'undefined') {
|
2016-10-03 18:55:59 +02:00
|
|
|
throw new Error('Bootstrap tooltips require Tether (http://tether.io/)')
|
2015-11-15 05:35:10 +01:00
|
|
|
}
|
|
|
|
|
2015-05-12 08:32:37 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* Constants
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
const NAME = 'tooltip'
|
2016-10-19 17:27:41 +02:00
|
|
|
const VERSION = '4.0.0-alpha.5'
|
2015-05-12 08:32:37 +02:00
|
|
|
const DATA_KEY = 'bs.tooltip'
|
2015-05-13 21:48:34 +02:00
|
|
|
const EVENT_KEY = `.${DATA_KEY}`
|
2015-05-12 08:32:37 +02:00
|
|
|
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,
|
2015-05-12 23:28:11 +02:00
|
|
|
placement : 'top',
|
2015-05-12 08:32:37 +02:00
|
|
|
offset : '0 0',
|
2016-09-15 11:33:11 +02:00
|
|
|
constraints : [],
|
|
|
|
container : false
|
2015-05-13 23:46:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const DefaultType = {
|
|
|
|
animation : 'boolean',
|
|
|
|
template : 'string',
|
2015-08-31 01:57:16 +02:00
|
|
|
title : '(string|element|function)',
|
2015-05-13 23:46:50 +02:00
|
|
|
trigger : 'string',
|
|
|
|
delay : '(number|object)',
|
|
|
|
html : 'boolean',
|
|
|
|
selector : '(string|boolean)',
|
|
|
|
placement : '(string|function)',
|
|
|
|
offset : 'string',
|
2016-09-15 11:33:11 +02:00
|
|
|
constraints : 'array',
|
|
|
|
container : '(string|element|boolean)'
|
2015-05-12 08:32:37 +02:00
|
|
|
}
|
|
|
|
|
2015-05-12 23:28:11 +02:00
|
|
|
const AttachmentMap = {
|
|
|
|
TOP : 'bottom center',
|
|
|
|
RIGHT : 'middle left',
|
|
|
|
BOTTOM : 'top center',
|
|
|
|
LEFT : 'middle right'
|
2015-05-12 08:32:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const HoverState = {
|
2016-10-28 00:13:17 +02:00
|
|
|
SHOW : 'show',
|
|
|
|
OUT : 'out'
|
2015-05-12 08:32:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const Event = {
|
2015-05-13 21:48:34 +02:00
|
|
|
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}`
|
2015-05-12 08:32:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const ClassName = {
|
2016-10-28 00:13:17 +02:00
|
|
|
FADE : 'fade',
|
|
|
|
SHOW : 'show'
|
2015-05-12 08:32:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const Selector = {
|
|
|
|
TOOLTIP : '.tooltip',
|
2015-05-12 23:28:11 +02:00
|
|
|
TOOLTIP_INNER : '.tooltip-inner'
|
2015-05-12 08:32:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const TetherClass = {
|
|
|
|
element : false,
|
|
|
|
enabled : false
|
|
|
|
}
|
|
|
|
|
|
|
|
const Trigger = {
|
|
|
|
HOVER : 'hover',
|
|
|
|
FOCUS : 'focus',
|
|
|
|
CLICK : 'click',
|
|
|
|
MANUAL : 'manual'
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* Class Definition
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
class Tooltip {
|
|
|
|
|
|
|
|
constructor(element, config) {
|
|
|
|
|
|
|
|
// private
|
2016-12-02 18:52:19 +01:00
|
|
|
this._isEnabled = true
|
|
|
|
this._timeout = 0
|
|
|
|
this._hoverState = ''
|
|
|
|
this._activeTrigger = {}
|
|
|
|
this._isTransitioning = false
|
|
|
|
this._tether = null
|
2015-05-12 08:32:37 +02:00
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
2015-05-12 23:28:11 +02:00
|
|
|
static get NAME() {
|
|
|
|
return NAME
|
|
|
|
}
|
|
|
|
|
|
|
|
static get DATA_KEY() {
|
|
|
|
return DATA_KEY
|
|
|
|
}
|
|
|
|
|
|
|
|
static get Event() {
|
|
|
|
return Event
|
|
|
|
}
|
|
|
|
|
2015-05-13 21:48:34 +02:00
|
|
|
static get EVENT_KEY() {
|
|
|
|
return EVENT_KEY
|
|
|
|
}
|
2015-05-12 23:28:11 +02:00
|
|
|
|
2015-05-13 23:46:50 +02:00
|
|
|
static get DefaultType() {
|
|
|
|
return DefaultType
|
|
|
|
}
|
|
|
|
|
2015-05-12 08:32:37 +02:00
|
|
|
|
|
|
|
// public
|
|
|
|
|
|
|
|
enable() {
|
|
|
|
this._isEnabled = true
|
|
|
|
}
|
|
|
|
|
|
|
|
disable() {
|
|
|
|
this._isEnabled = false
|
|
|
|
}
|
|
|
|
|
|
|
|
toggleEnabled() {
|
|
|
|
this._isEnabled = !this._isEnabled
|
|
|
|
}
|
|
|
|
|
|
|
|
toggle(event) {
|
|
|
|
if (event) {
|
2016-11-21 15:36:00 +01:00
|
|
|
const dataKey = this.constructor.DATA_KEY
|
2015-08-19 04:22:46 +02:00
|
|
|
let context = $(event.currentTarget).data(dataKey)
|
2015-05-12 08:32:37 +02:00
|
|
|
|
|
|
|
if (!context) {
|
|
|
|
context = new this.constructor(
|
|
|
|
event.currentTarget,
|
|
|
|
this._getDelegateConfig()
|
|
|
|
)
|
2015-05-12 23:28:11 +02:00
|
|
|
$(event.currentTarget).data(dataKey, context)
|
2015-05-12 08:32:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
context._activeTrigger.click = !context._activeTrigger.click
|
|
|
|
|
|
|
|
if (context._isWithActiveTrigger()) {
|
|
|
|
context._enter(null, context)
|
|
|
|
} else {
|
|
|
|
context._leave(null, context)
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2015-08-19 04:22:46 +02:00
|
|
|
|
2016-10-28 00:13:17 +02:00
|
|
|
if ($(this.getTipElement()).hasClass(ClassName.SHOW)) {
|
2015-08-19 04:22:46 +02:00
|
|
|
this._leave(null, this)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
this._enter(null, this)
|
2015-05-12 08:32:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-13 21:48:34 +02:00
|
|
|
dispose() {
|
2015-05-12 08:32:37 +02:00
|
|
|
clearTimeout(this._timeout)
|
2015-05-12 23:28:11 +02:00
|
|
|
|
2015-05-13 21:48:34 +02:00
|
|
|
this.cleanupTether()
|
|
|
|
|
|
|
|
$.removeData(this.element, this.constructor.DATA_KEY)
|
2015-05-12 23:28:11 +02:00
|
|
|
|
2015-05-13 21:48:34 +02:00
|
|
|
$(this.element).off(this.constructor.EVENT_KEY)
|
2016-11-29 18:45:14 +01:00
|
|
|
$(this.element).closest('.modal').off('hide.bs.modal')
|
2015-05-13 21:48:34 +02:00
|
|
|
|
|
|
|
if (this.tip) {
|
|
|
|
$(this.tip).remove()
|
|
|
|
}
|
|
|
|
|
2016-11-21 15:36:00 +01:00
|
|
|
this._isEnabled = null
|
|
|
|
this._timeout = null
|
|
|
|
this._hoverState = null
|
|
|
|
this._activeTrigger = null
|
|
|
|
this._tether = null
|
2015-05-13 21:48:34 +02:00
|
|
|
|
|
|
|
this.element = null
|
|
|
|
this.config = null
|
|
|
|
this.tip = null
|
2015-05-12 08:32:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
show() {
|
2016-11-01 04:33:53 +01:00
|
|
|
if ($(this.element).css('display') === 'none') {
|
|
|
|
throw new Error('Please use show on visible elements')
|
|
|
|
}
|
2015-05-12 08:32:37 +02:00
|
|
|
|
2016-12-02 18:52:19 +01:00
|
|
|
const showEvent = $.Event(this.constructor.Event.SHOW)
|
2015-05-12 08:32:37 +02:00
|
|
|
if (this.isWithContent() && this._isEnabled) {
|
2016-12-02 18:52:19 +01:00
|
|
|
if (this._isTransitioning) {
|
|
|
|
throw new Error('Tooltip is transitioning')
|
|
|
|
}
|
2015-05-12 08:32:37 +02:00
|
|
|
$(this.element).trigger(showEvent)
|
|
|
|
|
2016-11-21 15:36:00 +01:00
|
|
|
const isInTheDom = $.contains(
|
2015-05-12 08:32:37 +02:00
|
|
|
this.element.ownerDocument.documentElement,
|
|
|
|
this.element
|
|
|
|
)
|
|
|
|
|
|
|
|
if (showEvent.isDefaultPrevented() || !isInTheDom) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-11-21 15:36:00 +01:00
|
|
|
const tip = this.getTipElement()
|
|
|
|
const tipId = Util.getUID(this.constructor.NAME)
|
2015-05-12 08:32:37 +02:00
|
|
|
|
|
|
|
tip.setAttribute('id', tipId)
|
|
|
|
this.element.setAttribute('aria-describedby', tipId)
|
|
|
|
|
|
|
|
this.setContent()
|
|
|
|
|
|
|
|
if (this.config.animation) {
|
|
|
|
$(tip).addClass(ClassName.FADE)
|
|
|
|
}
|
|
|
|
|
2016-11-21 15:36:00 +01:00
|
|
|
const placement = typeof this.config.placement === 'function' ?
|
2015-05-12 23:28:11 +02:00
|
|
|
this.config.placement.call(this, tip, this.element) :
|
|
|
|
this.config.placement
|
2015-05-12 08:32:37 +02:00
|
|
|
|
2016-11-21 15:36:00 +01:00
|
|
|
const attachment = this._getAttachment(placement)
|
2015-05-12 08:32:37 +02:00
|
|
|
|
2016-09-15 11:33:11 +02:00
|
|
|
const container = this.config.container === false ? document.body : $(this.config.container)
|
|
|
|
|
2015-05-12 23:28:11 +02:00
|
|
|
$(tip)
|
|
|
|
.data(this.constructor.DATA_KEY, this)
|
2016-09-15 11:33:11 +02:00
|
|
|
.appendTo(container)
|
2015-05-12 08:32:37 +02:00
|
|
|
|
2015-05-12 23:28:11 +02:00
|
|
|
$(this.element).trigger(this.constructor.Event.INSERTED)
|
2015-05-12 08:32:37 +02:00
|
|
|
|
2015-05-12 23:28:11 +02:00
|
|
|
this._tether = new Tether({
|
2015-08-19 04:22:46 +02:00
|
|
|
attachment,
|
2015-08-20 07:03:29 +02:00
|
|
|
element : tip,
|
|
|
|
target : this.element,
|
|
|
|
classes : TetherClass,
|
|
|
|
classPrefix : CLASS_PREFIX,
|
|
|
|
offset : this.config.offset,
|
|
|
|
constraints : this.config.constraints,
|
|
|
|
addTargetClasses: false
|
2015-05-12 08:32:37 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
Util.reflow(tip)
|
2015-05-12 23:28:11 +02:00
|
|
|
this._tether.position()
|
2015-05-12 08:32:37 +02:00
|
|
|
|
2016-10-28 00:13:17 +02:00
|
|
|
$(tip).addClass(ClassName.SHOW)
|
2015-05-12 08:32:37 +02:00
|
|
|
|
2016-11-21 15:36:00 +01:00
|
|
|
const complete = () => {
|
|
|
|
const prevHoverState = this._hoverState
|
2016-12-02 18:52:19 +01:00
|
|
|
this._hoverState = null
|
|
|
|
this._isTransitioning = false
|
2015-05-12 08:32:37 +02:00
|
|
|
|
2015-05-12 23:28:11 +02:00
|
|
|
$(this.element).trigger(this.constructor.Event.SHOWN)
|
2015-05-12 08:32:37 +02:00
|
|
|
|
|
|
|
if (prevHoverState === HoverState.OUT) {
|
|
|
|
this._leave(null, this)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-19 04:22:46 +02:00
|
|
|
if (Util.supportsTransitionEnd() && $(this.tip).hasClass(ClassName.FADE)) {
|
2016-12-02 18:52:19 +01:00
|
|
|
this._isTransitioning = true
|
2015-05-12 08:32:37 +02:00
|
|
|
$(this.tip)
|
|
|
|
.one(Util.TRANSITION_END, complete)
|
2015-08-19 04:22:46 +02:00
|
|
|
.emulateTransitionEnd(Tooltip._TRANSITION_DURATION)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
complete()
|
2015-05-12 08:32:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
hide(callback) {
|
2016-11-21 15:36:00 +01:00
|
|
|
const tip = this.getTipElement()
|
|
|
|
const hideEvent = $.Event(this.constructor.Event.HIDE)
|
2016-12-02 18:52:19 +01:00
|
|
|
if (this._isTransitioning) {
|
|
|
|
throw new Error('Tooltip is transitioning')
|
|
|
|
}
|
2016-11-21 15:36:00 +01:00
|
|
|
const complete = () => {
|
2016-10-28 00:13:17 +02:00
|
|
|
if (this._hoverState !== HoverState.SHOW && tip.parentNode) {
|
2015-05-12 08:32:37 +02:00
|
|
|
tip.parentNode.removeChild(tip)
|
|
|
|
}
|
|
|
|
|
|
|
|
this.element.removeAttribute('aria-describedby')
|
2015-05-12 23:28:11 +02:00
|
|
|
$(this.element).trigger(this.constructor.Event.HIDDEN)
|
2016-12-02 18:52:19 +01:00
|
|
|
this._isTransitioning = false
|
2015-05-12 08:32:37 +02:00
|
|
|
this.cleanupTether()
|
|
|
|
|
|
|
|
if (callback) {
|
|
|
|
callback()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$(this.element).trigger(hideEvent)
|
|
|
|
|
|
|
|
if (hideEvent.isDefaultPrevented()) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-10-28 00:13:17 +02:00
|
|
|
$(tip).removeClass(ClassName.SHOW)
|
2015-05-12 08:32:37 +02:00
|
|
|
|
|
|
|
if (Util.supportsTransitionEnd() &&
|
2016-11-21 15:36:00 +01:00
|
|
|
$(this.tip).hasClass(ClassName.FADE)) {
|
2016-12-02 18:52:19 +01:00
|
|
|
this._isTransitioning = true
|
2015-05-12 08:32:37 +02:00
|
|
|
$(tip)
|
|
|
|
.one(Util.TRANSITION_END, complete)
|
|
|
|
.emulateTransitionEnd(TRANSITION_DURATION)
|
|
|
|
|
|
|
|
} else {
|
|
|
|
complete()
|
|
|
|
}
|
|
|
|
|
|
|
|
this._hoverState = ''
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// protected
|
|
|
|
|
|
|
|
isWithContent() {
|
2015-08-19 04:22:46 +02:00
|
|
|
return Boolean(this.getTitle())
|
2015-05-12 08:32:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
getTipElement() {
|
2016-11-21 15:36:00 +01:00
|
|
|
return this.tip = this.tip || $(this.config.template)[0]
|
2015-05-12 08:32:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
setContent() {
|
2016-11-21 15:36:00 +01:00
|
|
|
const $tip = $(this.getTipElement())
|
2015-05-12 08:32:37 +02:00
|
|
|
|
2015-08-31 01:57:16 +02:00
|
|
|
this.setElementContent($tip.find(Selector.TOOLTIP_INNER), this.getTitle())
|
2015-05-12 08:32:37 +02:00
|
|
|
|
2016-10-28 00:13:17 +02:00
|
|
|
$tip.removeClass(`${ClassName.FADE} ${ClassName.SHOW}`)
|
2015-05-12 08:32:37 +02:00
|
|
|
|
|
|
|
this.cleanupTether()
|
|
|
|
}
|
|
|
|
|
2015-08-31 01:57:16 +02:00
|
|
|
setElementContent($element, content) {
|
2016-11-21 15:36:00 +01:00
|
|
|
const html = this.config.html
|
2015-08-31 01:57:16 +02:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-12 08:32:37 +02:00
|
|
|
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() {
|
2015-05-12 23:28:11 +02:00
|
|
|
if (this._tether) {
|
|
|
|
this._tether.destroy()
|
2015-05-12 08:32:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// private
|
|
|
|
|
2015-05-12 23:28:11 +02:00
|
|
|
_getAttachment(placement) {
|
|
|
|
return AttachmentMap[placement.toUpperCase()]
|
|
|
|
}
|
|
|
|
|
2015-05-12 08:32:37 +02:00
|
|
|
_setListeners() {
|
2016-11-21 15:36:00 +01:00
|
|
|
const triggers = this.config.trigger.split(' ')
|
2015-05-12 08:32:37 +02:00
|
|
|
|
|
|
|
triggers.forEach((trigger) => {
|
|
|
|
if (trigger === 'click') {
|
|
|
|
$(this.element).on(
|
2015-05-12 23:28:11 +02:00
|
|
|
this.constructor.Event.CLICK,
|
2015-05-12 08:32:37 +02:00
|
|
|
this.config.selector,
|
2016-11-01 04:32:36 +01:00
|
|
|
(event) => this.toggle(event)
|
2015-05-12 08:32:37 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
} else if (trigger !== Trigger.MANUAL) {
|
2016-11-21 15:36:00 +01:00
|
|
|
const eventIn = trigger === Trigger.HOVER ?
|
2015-05-12 23:28:11 +02:00
|
|
|
this.constructor.Event.MOUSEENTER :
|
|
|
|
this.constructor.Event.FOCUSIN
|
2016-11-21 15:36:00 +01:00
|
|
|
const eventOut = trigger === Trigger.HOVER ?
|
2015-05-12 23:28:11 +02:00
|
|
|
this.constructor.Event.MOUSELEAVE :
|
|
|
|
this.constructor.Event.FOCUSOUT
|
2015-05-12 08:32:37 +02:00
|
|
|
|
|
|
|
$(this.element)
|
|
|
|
.on(
|
|
|
|
eventIn,
|
|
|
|
this.config.selector,
|
2016-11-01 04:32:36 +01:00
|
|
|
(event) => this._enter(event)
|
2015-05-12 08:32:37 +02:00
|
|
|
)
|
|
|
|
.on(
|
|
|
|
eventOut,
|
|
|
|
this.config.selector,
|
2016-11-01 04:32:36 +01:00
|
|
|
(event) => this._leave(event)
|
2015-05-12 08:32:37 +02:00
|
|
|
)
|
|
|
|
}
|
2016-11-29 18:45:14 +01:00
|
|
|
|
|
|
|
$(this.element).closest('.modal').on(
|
|
|
|
'hide.bs.modal',
|
|
|
|
() => this.hide()
|
|
|
|
)
|
2015-05-12 08:32:37 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
if (this.config.selector) {
|
|
|
|
this.config = $.extend({}, this.config, {
|
|
|
|
trigger : 'manual',
|
|
|
|
selector : ''
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
this._fixTitle()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_fixTitle() {
|
2016-11-21 15:36:00 +01:00
|
|
|
const titleType = typeof this.element.getAttribute('data-original-title')
|
2015-05-12 08:32:37 +02:00
|
|
|
if (this.element.getAttribute('title') ||
|
2016-11-21 15:36:00 +01:00
|
|
|
titleType !== 'string') {
|
2015-05-12 08:32:37 +02:00
|
|
|
this.element.setAttribute(
|
|
|
|
'data-original-title',
|
|
|
|
this.element.getAttribute('title') || ''
|
|
|
|
)
|
|
|
|
this.element.setAttribute('title', '')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_enter(event, context) {
|
2016-11-21 15:36:00 +01:00
|
|
|
const dataKey = this.constructor.DATA_KEY
|
2015-05-12 23:28:11 +02:00
|
|
|
|
|
|
|
context = context || $(event.currentTarget).data(dataKey)
|
2015-05-12 08:32:37 +02:00
|
|
|
|
|
|
|
if (!context) {
|
|
|
|
context = new this.constructor(
|
|
|
|
event.currentTarget,
|
|
|
|
this._getDelegateConfig()
|
|
|
|
)
|
2015-05-12 23:28:11 +02:00
|
|
|
$(event.currentTarget).data(dataKey, context)
|
2015-05-12 08:32:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (event) {
|
|
|
|
context._activeTrigger[
|
2015-08-19 04:22:46 +02:00
|
|
|
event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER
|
2015-05-12 08:32:37 +02:00
|
|
|
] = true
|
|
|
|
}
|
|
|
|
|
2016-10-28 00:13:17 +02:00
|
|
|
if ($(context.getTipElement()).hasClass(ClassName.SHOW) ||
|
|
|
|
context._hoverState === HoverState.SHOW) {
|
|
|
|
context._hoverState = HoverState.SHOW
|
2015-05-12 08:32:37 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
clearTimeout(context._timeout)
|
|
|
|
|
2016-10-28 00:13:17 +02:00
|
|
|
context._hoverState = HoverState.SHOW
|
2015-05-12 08:32:37 +02:00
|
|
|
|
|
|
|
if (!context.config.delay || !context.config.delay.show) {
|
|
|
|
context.show()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
context._timeout = setTimeout(() => {
|
2016-10-28 00:13:17 +02:00
|
|
|
if (context._hoverState === HoverState.SHOW) {
|
2015-05-12 08:32:37 +02:00
|
|
|
context.show()
|
|
|
|
}
|
|
|
|
}, context.config.delay.show)
|
|
|
|
}
|
|
|
|
|
|
|
|
_leave(event, context) {
|
2016-11-21 15:36:00 +01:00
|
|
|
const dataKey = this.constructor.DATA_KEY
|
2015-05-12 23:28:11 +02:00
|
|
|
|
|
|
|
context = context || $(event.currentTarget).data(dataKey)
|
2015-05-12 08:32:37 +02:00
|
|
|
|
|
|
|
if (!context) {
|
|
|
|
context = new this.constructor(
|
|
|
|
event.currentTarget,
|
|
|
|
this._getDelegateConfig()
|
|
|
|
)
|
2015-05-12 23:28:11 +02:00
|
|
|
$(event.currentTarget).data(dataKey, context)
|
2015-05-12 08:32:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (event) {
|
|
|
|
context._activeTrigger[
|
2015-08-19 04:22:46 +02:00
|
|
|
event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER
|
2015-05-12 08:32:37 +02:00
|
|
|
] = 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() {
|
2016-11-21 15:36:00 +01:00
|
|
|
for (const trigger in this._activeTrigger) {
|
2015-05-12 08:32:37 +02:00
|
|
|
if (this._activeTrigger[trigger]) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
_getConfig(config) {
|
2015-05-12 23:28:11 +02:00
|
|
|
config = $.extend(
|
|
|
|
{},
|
|
|
|
this.constructor.Default,
|
|
|
|
$(this.element).data(),
|
|
|
|
config
|
|
|
|
)
|
2015-05-12 08:32:37 +02:00
|
|
|
|
|
|
|
if (config.delay && typeof config.delay === 'number') {
|
|
|
|
config.delay = {
|
|
|
|
show : config.delay,
|
|
|
|
hide : config.delay
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-13 23:46:50 +02:00
|
|
|
Util.typeCheckConfig(
|
|
|
|
NAME,
|
|
|
|
config,
|
|
|
|
this.constructor.DefaultType
|
|
|
|
)
|
|
|
|
|
2015-05-12 08:32:37 +02:00
|
|
|
return config
|
|
|
|
}
|
|
|
|
|
|
|
|
_getDelegateConfig() {
|
2016-11-21 15:36:00 +01:00
|
|
|
const config = {}
|
2015-05-12 08:32:37 +02:00
|
|
|
|
|
|
|
if (this.config) {
|
2016-11-21 15:36:00 +01:00
|
|
|
for (const key in this.config) {
|
2015-08-19 04:22:46 +02:00
|
|
|
if (this.constructor.Default[key] !== this.config[key]) {
|
|
|
|
config[key] = this.config[key]
|
2015-05-12 08:32:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return config
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// static
|
|
|
|
|
|
|
|
static _jQueryInterface(config) {
|
|
|
|
return this.each(function () {
|
2016-11-21 15:36:00 +01:00
|
|
|
let data = $(this).data(DATA_KEY)
|
|
|
|
const _config = typeof config === 'object' && config
|
2015-05-12 08:32:37 +02:00
|
|
|
|
2015-09-16 09:46:55 +02:00
|
|
|
if (!data && /dispose|hide/.test(config)) {
|
2015-05-12 08:32:37 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!data) {
|
|
|
|
data = new Tooltip(this, _config)
|
|
|
|
$(this).data(DATA_KEY, data)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof config === 'string') {
|
2015-09-16 10:35:29 +02:00
|
|
|
if (data[config] === undefined) {
|
|
|
|
throw new Error(`No method named "${config}"`)
|
|
|
|
}
|
2015-05-12 08:32:37 +02:00
|
|
|
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
|