0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-12 00:08:59 +01:00
Bootstrap/js/dist/tooltip.js

858 lines
26 KiB
JavaScript
Raw Normal View History

2018-11-13 07:41:12 +01:00
/*!
2020-08-04 18:24:33 +02:00
* Bootstrap tooltip.js v4.5.1 (https://getbootstrap.com/)
2020-05-12 18:53:07 +02:00
* Copyright 2011-2020 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2020-08-04 18:24:33 +02:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
2018-11-13 07:41:12 +01:00
*/
2018-07-24 02:51:14 +02:00
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('jquery'), require('popper.js'), require('./util.js')) :
typeof define === 'function' && define.amd ? define(['jquery', 'popper.js', './util.js'], factory) :
2020-08-04 18:24:33 +02:00
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Tooltip = factory(global.jQuery, global.Popper, global.Util));
2019-11-26 18:12:00 +01:00
}(this, (function ($, Popper, Util) { 'use strict';
2018-07-24 02:51:14 +02:00
2020-05-12 18:53:07 +02:00
$ = $ && Object.prototype.hasOwnProperty.call($, 'default') ? $['default'] : $;
Popper = Popper && Object.prototype.hasOwnProperty.call(Popper, 'default') ? Popper['default'] : Popper;
Util = Util && Object.prototype.hasOwnProperty.call(Util, 'default') ? Util['default'] : Util;
2018-07-24 02:51:14 +02:00
2019-02-13 17:01:40 +01:00
/**
* --------------------------------------------------------------------------
2020-08-04 18:24:33 +02:00
* Bootstrap (v4.5.1): tools/sanitizer.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
2019-02-13 17:01:40 +01:00
* --------------------------------------------------------------------------
*/
var uriAttrs = ['background', 'cite', 'href', 'itemtype', 'longdesc', 'poster', 'src', 'xlink:href'];
var ARIA_ATTRIBUTE_PATTERN = /^aria-[\w-]*$/i;
var DefaultWhitelist = {
// Global attributes allowed on any supplied element below.
'*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN],
a: ['target', 'href', 'title', 'rel'],
area: [],
b: [],
br: [],
col: [],
code: [],
div: [],
em: [],
hr: [],
h1: [],
h2: [],
h3: [],
h4: [],
h5: [],
h6: [],
i: [],
2020-05-12 18:53:07 +02:00
img: ['src', 'srcset', 'alt', 'title', 'width', 'height'],
2019-02-13 17:01:40 +01:00
li: [],
ol: [],
p: [],
pre: [],
s: [],
small: [],
span: [],
sub: [],
sup: [],
strong: [],
u: [],
ul: []
};
2019-11-26 18:12:00 +01:00
/**
* A pattern that recognizes a commonly useful subset of URLs that are safe.
*
* Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts
*/
2020-05-12 18:53:07 +02:00
var SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file):|[^#&/:?]*(?:[#/?]|$))/gi;
2019-02-13 17:01:40 +01:00
/**
* A pattern that matches safe data URLs. Only matches image, video and audio types.
*
* Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts
*/
2020-05-12 18:53:07 +02:00
var DATA_URL_PATTERN = /^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i;
2019-02-13 17:01:40 +01:00
function allowedAttribute(attr, allowedAttributeList) {
var attrName = attr.nodeName.toLowerCase();
if (allowedAttributeList.indexOf(attrName) !== -1) {
if (uriAttrs.indexOf(attrName) !== -1) {
return Boolean(attr.nodeValue.match(SAFE_URL_PATTERN) || attr.nodeValue.match(DATA_URL_PATTERN));
}
return true;
}
var regExp = allowedAttributeList.filter(function (attrRegex) {
return attrRegex instanceof RegExp;
}); // Check if a regular expression validates the attribute.
2020-05-12 18:53:07 +02:00
for (var i = 0, len = regExp.length; i < len; i++) {
2019-02-13 17:01:40 +01:00
if (attrName.match(regExp[i])) {
return true;
}
}
return false;
}
function sanitizeHtml(unsafeHtml, whiteList, sanitizeFn) {
if (unsafeHtml.length === 0) {
return unsafeHtml;
}
if (sanitizeFn && typeof sanitizeFn === 'function') {
return sanitizeFn(unsafeHtml);
}
var domParser = new window.DOMParser();
var createdDocument = domParser.parseFromString(unsafeHtml, 'text/html');
var whitelistKeys = Object.keys(whiteList);
var elements = [].slice.call(createdDocument.body.querySelectorAll('*'));
var _loop = function _loop(i, len) {
var el = elements[i];
var elName = el.nodeName.toLowerCase();
if (whitelistKeys.indexOf(el.nodeName.toLowerCase()) === -1) {
el.parentNode.removeChild(el);
return "continue";
}
var attributeList = [].slice.call(el.attributes);
var whitelistedAttributes = [].concat(whiteList['*'] || [], whiteList[elName] || []);
attributeList.forEach(function (attr) {
if (!allowedAttribute(attr, whitelistedAttributes)) {
el.removeAttribute(attr.nodeName);
}
});
};
for (var i = 0, len = elements.length; i < len; i++) {
2019-11-26 18:12:00 +01:00
var _ret = _loop(i);
2019-02-13 17:01:40 +01:00
if (_ret === "continue") continue;
}
return createdDocument.body.innerHTML;
}
2020-08-04 18:24:33 +02:00
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
2018-11-13 07:41:12 +01:00
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'tooltip';
2020-08-04 18:24:33 +02:00
var VERSION = '4.5.1';
2018-11-13 07:41:12 +01:00
var DATA_KEY = 'bs.tooltip';
var EVENT_KEY = "." + DATA_KEY;
var JQUERY_NO_CONFLICT = $.fn[NAME];
var CLASS_PREFIX = 'bs-tooltip';
var BSCLS_PREFIX_REGEX = new RegExp("(^|\\s)" + CLASS_PREFIX + "\\S+", 'g');
2019-02-13 17:01:40 +01:00
var DISALLOWED_ATTRIBUTES = ['sanitize', 'whiteList', 'sanitizeFn'];
2018-11-13 07:41:12 +01:00
var DefaultType = {
animation: 'boolean',
template: 'string',
title: '(string|element|function)',
trigger: 'string',
delay: '(number|object)',
html: 'boolean',
selector: '(string|boolean)',
placement: '(string|function)',
offset: '(number|string|function)',
2018-11-13 07:41:12 +01:00
container: '(string|element|boolean)',
fallbackPlacement: '(string|array)',
2019-02-13 17:01:40 +01:00
boundary: '(string|element)',
sanitize: 'boolean',
sanitizeFn: '(null|function)',
2019-11-26 18:12:00 +01:00
whiteList: 'object',
popperConfig: '(null|object)'
2018-11-13 07:41:12 +01:00
};
var AttachmentMap = {
AUTO: 'auto',
TOP: 'top',
RIGHT: 'right',
BOTTOM: 'bottom',
LEFT: 'left'
};
var Default = {
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',
2019-02-13 17:01:40 +01:00
boundary: 'scrollParent',
sanitize: true,
sanitizeFn: null,
2019-11-26 18:12:00 +01:00
whiteList: DefaultWhitelist,
popperConfig: null
2018-11-13 07:41:12 +01:00
};
2020-05-12 18:53:07 +02:00
var HOVER_STATE_SHOW = 'show';
var HOVER_STATE_OUT = 'out';
2018-11-13 07:41:12 +01:00
var 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
};
2020-05-12 18:53:07 +02:00
var CLASS_NAME_FADE = 'fade';
var CLASS_NAME_SHOW = 'show';
var SELECTOR_TOOLTIP_INNER = '.tooltip-inner';
var SELECTOR_ARROW = '.arrow';
var TRIGGER_HOVER = 'hover';
var TRIGGER_FOCUS = 'focus';
var TRIGGER_CLICK = 'click';
var TRIGGER_MANUAL = 'manual';
2019-11-26 18:12:00 +01:00
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
2018-11-13 07:41:12 +01:00
2020-05-12 18:53:07 +02:00
var Tooltip = /*#__PURE__*/function () {
2018-11-13 07:41:12 +01:00
function Tooltip(element, config) {
if (typeof Popper === 'undefined') {
throw new TypeError('Bootstrap\'s tooltips require Popper.js (https://popper.js.org/)');
} // private
2017-10-30 00:19:14 +01:00
2018-11-13 07:41:12 +01:00
this._isEnabled = true;
this._timeout = 0;
this._hoverState = '';
this._activeTrigger = {};
this._popper = null; // Protected
2018-11-13 07:41:12 +01:00
this.element = element;
this.config = this._getConfig(config);
this.tip = null;
2018-11-13 07:41:12 +01:00
this._setListeners();
} // Getters
2015-08-13 06:12:03 +02:00
2018-11-13 07:41:12 +01:00
var _proto = Tooltip.prototype;
2018-11-13 07:41:12 +01:00
// Public
_proto.enable = function enable() {
this._isEnabled = true;
};
2018-11-13 07:41:12 +01:00
_proto.disable = function disable() {
this._isEnabled = false;
};
2018-11-13 07:41:12 +01:00
_proto.toggleEnabled = function toggleEnabled() {
this._isEnabled = !this._isEnabled;
};
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
_proto.toggle = function toggle(event) {
if (!this._isEnabled) {
return;
}
2015-08-19 05:28:28 +02:00
2018-11-13 07:41:12 +01:00
if (event) {
var dataKey = this.constructor.DATA_KEY;
var context = $(event.currentTarget).data(dataKey);
2015-08-19 05:28:28 +02:00
2018-11-13 07:41:12 +01:00
if (!context) {
context = new this.constructor(event.currentTarget, this._getDelegateConfig());
$(event.currentTarget).data(dataKey, context);
2017-09-30 23:28:03 +02:00
}
2015-05-12 23:28:11 +02:00
2018-11-13 07:41:12 +01:00
context._activeTrigger.click = !context._activeTrigger.click;
2015-05-12 23:28:11 +02:00
2018-11-13 07:41:12 +01:00
if (context._isWithActiveTrigger()) {
context._enter(null, context);
2016-10-10 02:26:51 +02:00
} else {
2018-11-13 07:41:12 +01:00
context._leave(null, context);
}
} else {
2020-05-12 18:53:07 +02:00
if ($(this.getTipElement()).hasClass(CLASS_NAME_SHOW)) {
2018-11-13 07:41:12 +01:00
this._leave(null, this);
2018-11-13 07:41:12 +01:00
return;
2018-07-24 02:51:14 +02:00
}
2018-11-13 07:41:12 +01:00
this._enter(null, this);
}
};
_proto.dispose = function dispose() {
clearTimeout(this._timeout);
$.removeData(this.element, this.constructor.DATA_KEY);
$(this.element).off(this.constructor.EVENT_KEY);
2019-11-26 18:12:00 +01:00
$(this.element).closest('.modal').off('hide.bs.modal', this._hideModalHandler);
2018-11-13 07:41:12 +01:00
if (this.tip) {
$(this.tip).remove();
}
2018-11-13 07:41:12 +01:00
this._isEnabled = null;
this._timeout = null;
this._hoverState = null;
this._activeTrigger = null;
2019-11-26 18:12:00 +01:00
if (this._popper) {
2018-11-13 07:41:12 +01:00
this._popper.destroy();
}
2018-11-13 07:41:12 +01:00
this._popper = null;
this.element = null;
this.config = null;
this.tip = null;
};
2018-11-13 07:41:12 +01:00
_proto.show = function show() {
var _this = this;
2018-11-13 07:41:12 +01:00
if ($(this.element).css('display') === 'none') {
throw new Error('Please use show on visible elements');
}
2018-11-13 07:41:12 +01:00
var showEvent = $.Event(this.constructor.Event.SHOW);
2018-11-13 07:41:12 +01:00
if (this.isWithContent() && this._isEnabled) {
$(this.element).trigger(showEvent);
2018-12-16 00:13:22 +01:00
var shadowRoot = Util.findShadowRoot(this.element);
var isInTheDom = $.contains(shadowRoot !== null ? shadowRoot : this.element.ownerDocument.documentElement, this.element);
2018-11-13 07:41:12 +01:00
if (showEvent.isDefaultPrevented() || !isInTheDom) {
return;
}
2018-11-13 07:41:12 +01:00
var tip = this.getTipElement();
var tipId = Util.getUID(this.constructor.NAME);
tip.setAttribute('id', tipId);
this.element.setAttribute('aria-describedby', tipId);
this.setContent();
2018-11-13 07:41:12 +01:00
if (this.config.animation) {
2020-05-12 18:53:07 +02:00
$(tip).addClass(CLASS_NAME_FADE);
2018-11-13 07:41:12 +01:00
}
2018-11-13 07:41:12 +01:00
var placement = typeof this.config.placement === 'function' ? this.config.placement.call(this, tip, this.element) : this.config.placement;
2016-11-27 04:17:23 +01:00
2018-11-13 07:41:12 +01:00
var attachment = this._getAttachment(placement);
2017-04-02 04:18:29 +02:00
2018-11-13 07:41:12 +01:00
this.addAttachmentClass(attachment);
2018-12-16 00:13:22 +01:00
var container = this._getContainer();
2018-11-13 07:41:12 +01:00
$(tip).data(this.constructor.DATA_KEY, this);
2015-08-19 05:28:28 +02:00
2018-11-13 07:41:12 +01:00
if (!$.contains(this.element.ownerDocument.documentElement, this.tip)) {
$(tip).appendTo(container);
}
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
$(this.element).trigger(this.constructor.Event.INSERTED);
2019-11-26 18:12:00 +01:00
this._popper = new Popper(this.element, tip, this._getPopperConfig(attachment));
2020-05-12 18:53:07 +02:00
$(tip).addClass(CLASS_NAME_SHOW); // If this is a touch-enabled device we add extra
2018-11-13 07:41:12 +01:00
// 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
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
if ('ontouchstart' in document.documentElement) {
$(document.body).children().on('mouseover', null, $.noop);
}
2017-04-22 08:58:09 +02:00
2018-11-13 07:41:12 +01:00
var complete = function complete() {
if (_this.config.animation) {
_this._fixTransition();
}
2018-11-13 07:41:12 +01:00
var prevHoverState = _this._hoverState;
_this._hoverState = null;
$(_this.element).trigger(_this.constructor.Event.SHOWN);
2020-05-12 18:53:07 +02:00
if (prevHoverState === HOVER_STATE_OUT) {
2018-11-13 07:41:12 +01:00
_this._leave(null, _this);
}
2018-11-13 07:41:12 +01:00
};
2020-05-12 18:53:07 +02:00
if ($(this.tip).hasClass(CLASS_NAME_FADE)) {
2018-11-13 07:41:12 +01:00
var transitionDuration = Util.getTransitionDurationFromElement(this.tip);
$(this.tip).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration);
} else {
complete();
}
2018-11-13 07:41:12 +01:00
}
};
2018-11-13 07:41:12 +01:00
_proto.hide = function hide(callback) {
var _this2 = this;
2018-11-13 07:41:12 +01:00
var tip = this.getTipElement();
var hideEvent = $.Event(this.constructor.Event.HIDE);
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
var complete = function complete() {
2020-05-12 18:53:07 +02:00
if (_this2._hoverState !== HOVER_STATE_SHOW && tip.parentNode) {
2018-11-13 07:41:12 +01:00
tip.parentNode.removeChild(tip);
}
2018-11-13 07:41:12 +01:00
_this2._cleanTipClass();
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
_this2.element.removeAttribute('aria-describedby');
2018-11-13 07:41:12 +01:00
$(_this2.element).trigger(_this2.constructor.Event.HIDDEN);
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
if (_this2._popper !== null) {
_this2._popper.destroy();
}
2018-11-13 07:41:12 +01:00
if (callback) {
callback();
}
};
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
$(this.element).trigger(hideEvent);
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
if (hideEvent.isDefaultPrevented()) {
return;
}
2017-09-30 23:28:03 +02:00
2020-05-12 18:53:07 +02:00
$(tip).removeClass(CLASS_NAME_SHOW); // If this is a touch-enabled device we remove the extra
2018-11-13 07:41:12 +01:00
// empty mouseover listeners we added for iOS support
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
if ('ontouchstart' in document.documentElement) {
$(document.body).children().off('mouseover', null, $.noop);
}
2017-09-30 23:28:03 +02:00
2020-05-12 18:53:07 +02:00
this._activeTrigger[TRIGGER_CLICK] = false;
this._activeTrigger[TRIGGER_FOCUS] = false;
this._activeTrigger[TRIGGER_HOVER] = false;
2017-09-30 23:28:03 +02:00
2020-05-12 18:53:07 +02:00
if ($(this.tip).hasClass(CLASS_NAME_FADE)) {
2018-11-13 07:41:12 +01:00
var transitionDuration = Util.getTransitionDurationFromElement(tip);
$(tip).one(Util.TRANSITION_END, complete).emulateTransitionEnd(transitionDuration);
} else {
complete();
}
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
this._hoverState = '';
};
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
_proto.update = function update() {
if (this._popper !== null) {
this._popper.scheduleUpdate();
}
2019-01-04 17:29:45 +01:00
} // Protected
;
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
_proto.isWithContent = function isWithContent() {
return Boolean(this.getTitle());
};
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
_proto.addAttachmentClass = function addAttachmentClass(attachment) {
$(this.getTipElement()).addClass(CLASS_PREFIX + "-" + attachment);
};
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
_proto.getTipElement = function getTipElement() {
this.tip = this.tip || $(this.config.template)[0];
return this.tip;
};
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
_proto.setContent = function setContent() {
var tip = this.getTipElement();
2020-05-12 18:53:07 +02:00
this.setElementContent($(tip.querySelectorAll(SELECTOR_TOOLTIP_INNER)), this.getTitle());
$(tip).removeClass(CLASS_NAME_FADE + " " + CLASS_NAME_SHOW);
2018-11-13 07:41:12 +01:00
};
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
_proto.setElementContent = function setElementContent($element, content) {
if (typeof content === 'object' && (content.nodeType || content.jquery)) {
// Content is a DOM node or a jQuery
2019-02-13 17:01:40 +01:00
if (this.config.html) {
2018-11-13 07:41:12 +01:00
if (!$(content).parent().is($element)) {
$element.empty().append(content);
2015-08-29 23:03:55 +02:00
}
} else {
2018-11-13 07:41:12 +01:00
$element.text($(content).text());
2015-08-29 23:03:55 +02:00
}
2019-02-13 17:01:40 +01:00
return;
}
if (this.config.html) {
if (this.config.sanitize) {
content = sanitizeHtml(content, this.config.whiteList, this.config.sanitizeFn);
}
$element.html(content);
2018-11-13 07:41:12 +01:00
} else {
2019-02-13 17:01:40 +01:00
$element.text(content);
2018-11-13 07:41:12 +01:00
}
};
2018-11-13 07:41:12 +01:00
_proto.getTitle = function getTitle() {
var title = this.element.getAttribute('data-original-title');
2018-11-13 07:41:12 +01:00
if (!title) {
title = typeof this.config.title === 'function' ? this.config.title.call(this.element) : this.config.title;
}
2018-11-13 07:41:12 +01:00
return title;
2019-01-04 17:29:45 +01:00
} // Private
;
2016-10-10 02:26:51 +02:00
2019-11-26 18:12:00 +01:00
_proto._getPopperConfig = function _getPopperConfig(attachment) {
var _this3 = this;
2019-11-26 18:12:00 +01:00
var defaultBsConfig = {
placement: attachment,
modifiers: {
offset: this._getOffset(),
flip: {
behavior: this.config.fallbackPlacement
},
arrow: {
2020-05-12 18:53:07 +02:00
element: SELECTOR_ARROW
2019-11-26 18:12:00 +01:00
},
preventOverflow: {
boundariesElement: this.config.boundary
}
},
onCreate: function onCreate(data) {
if (data.originalPlacement !== data.placement) {
_this3._handlePopperPlacementChange(data);
}
},
onUpdate: function onUpdate(data) {
return _this3._handlePopperPlacementChange(data);
}
};
2020-08-04 18:24:33 +02:00
return _extends({}, defaultBsConfig, this.config.popperConfig);
2019-11-26 18:12:00 +01:00
};
_proto._getOffset = function _getOffset() {
var _this4 = this;
var offset = {};
if (typeof this.config.offset === 'function') {
offset.fn = function (data) {
2020-08-04 18:24:33 +02:00
data.offsets = _extends({}, data.offsets, _this4.config.offset(data.offsets, _this4.element) || {});
return data;
};
} else {
offset.offset = this.config.offset;
}
return offset;
};
2018-12-16 00:13:22 +01:00
_proto._getContainer = function _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);
};
2018-11-13 07:41:12 +01:00
_proto._getAttachment = function _getAttachment(placement) {
return AttachmentMap[placement.toUpperCase()];
};
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
_proto._setListeners = function _setListeners() {
2019-11-26 18:12:00 +01:00
var _this5 = this;
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
var triggers = this.config.trigger.split(' ');
triggers.forEach(function (trigger) {
if (trigger === 'click') {
2019-11-26 18:12:00 +01:00
$(_this5.element).on(_this5.constructor.Event.CLICK, _this5.config.selector, function (event) {
return _this5.toggle(event);
2017-09-30 23:28:03 +02:00
});
2020-05-12 18:53:07 +02:00
} else if (trigger !== TRIGGER_MANUAL) {
var eventIn = trigger === TRIGGER_HOVER ? _this5.constructor.Event.MOUSEENTER : _this5.constructor.Event.FOCUSIN;
var eventOut = trigger === TRIGGER_HOVER ? _this5.constructor.Event.MOUSELEAVE : _this5.constructor.Event.FOCUSOUT;
2019-11-26 18:12:00 +01:00
$(_this5.element).on(eventIn, _this5.config.selector, function (event) {
return _this5._enter(event);
}).on(eventOut, _this5.config.selector, function (event) {
return _this5._leave(event);
2017-09-06 06:05:12 +02:00
});
}
2018-11-13 07:41:12 +01:00
});
2019-11-26 18:12:00 +01:00
this._hideModalHandler = function () {
if (_this5.element) {
_this5.hide();
2018-11-13 07:41:12 +01:00
}
2019-11-26 18:12:00 +01:00
};
$(this.element).closest('.modal').on('hide.bs.modal', this._hideModalHandler);
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
if (this.config.selector) {
2020-08-04 18:24:33 +02:00
this.config = _extends({}, this.config, {
2018-11-13 07:41:12 +01:00
trigger: 'manual',
selector: ''
});
} else {
this._fixTitle();
}
};
2018-11-13 07:41:12 +01:00
_proto._fixTitle = function _fixTitle() {
var titleType = typeof this.element.getAttribute('data-original-title');
2018-11-13 07:41:12 +01:00
if (this.element.getAttribute('title') || titleType !== 'string') {
this.element.setAttribute('data-original-title', this.element.getAttribute('title') || '');
this.element.setAttribute('title', '');
}
};
2018-11-13 07:41:12 +01:00
_proto._enter = function _enter(event, context) {
var dataKey = this.constructor.DATA_KEY;
context = context || $(event.currentTarget).data(dataKey);
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
if (!context) {
context = new this.constructor(event.currentTarget, this._getDelegateConfig());
$(event.currentTarget).data(dataKey, context);
}
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
if (event) {
2020-05-12 18:53:07 +02:00
context._activeTrigger[event.type === 'focusin' ? TRIGGER_FOCUS : TRIGGER_HOVER] = true;
2018-11-13 07:41:12 +01:00
}
2020-05-12 18:53:07 +02:00
if ($(context.getTipElement()).hasClass(CLASS_NAME_SHOW) || context._hoverState === HOVER_STATE_SHOW) {
context._hoverState = HOVER_STATE_SHOW;
2018-11-13 07:41:12 +01:00
return;
}
clearTimeout(context._timeout);
2020-05-12 18:53:07 +02:00
context._hoverState = HOVER_STATE_SHOW;
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
if (!context.config.delay || !context.config.delay.show) {
context.show();
return;
}
context._timeout = setTimeout(function () {
2020-05-12 18:53:07 +02:00
if (context._hoverState === HOVER_STATE_SHOW) {
context.show();
}
2018-11-13 07:41:12 +01:00
}, context.config.delay.show);
};
2018-11-13 07:41:12 +01:00
_proto._leave = function _leave(event, context) {
var dataKey = this.constructor.DATA_KEY;
context = context || $(event.currentTarget).data(dataKey);
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
if (!context) {
context = new this.constructor(event.currentTarget, this._getDelegateConfig());
$(event.currentTarget).data(dataKey, context);
}
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
if (event) {
2020-05-12 18:53:07 +02:00
context._activeTrigger[event.type === 'focusout' ? TRIGGER_FOCUS : TRIGGER_HOVER] = false;
2018-11-13 07:41:12 +01:00
}
2018-11-13 07:41:12 +01:00
if (context._isWithActiveTrigger()) {
return;
}
2018-11-13 07:41:12 +01:00
clearTimeout(context._timeout);
2020-05-12 18:53:07 +02:00
context._hoverState = HOVER_STATE_OUT;
2018-11-13 07:41:12 +01:00
if (!context.config.delay || !context.config.delay.hide) {
context.hide();
return;
}
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
context._timeout = setTimeout(function () {
2020-05-12 18:53:07 +02:00
if (context._hoverState === HOVER_STATE_OUT) {
2017-09-30 23:28:03 +02:00
context.hide();
}
2018-11-13 07:41:12 +01:00
}, context.config.delay.hide);
};
2018-11-13 07:41:12 +01:00
_proto._isWithActiveTrigger = function _isWithActiveTrigger() {
for (var trigger in this._activeTrigger) {
if (this._activeTrigger[trigger]) {
return true;
2017-09-30 23:28:03 +02:00
}
2018-11-13 07:41:12 +01:00
}
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
return false;
};
2015-05-13 23:46:50 +02:00
2018-11-13 07:41:12 +01:00
_proto._getConfig = function _getConfig(config) {
2019-02-13 17:01:40 +01:00
var dataAttributes = $(this.element).data();
Object.keys(dataAttributes).forEach(function (dataAttr) {
if (DISALLOWED_ATTRIBUTES.indexOf(dataAttr) !== -1) {
delete dataAttributes[dataAttr];
}
});
2020-08-04 18:24:33 +02:00
config = _extends({}, this.constructor.Default, dataAttributes, typeof config === 'object' && config ? config : {});
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
if (typeof config.delay === 'number') {
config.delay = {
show: config.delay,
hide: config.delay
};
}
2017-04-02 04:18:29 +02:00
2018-11-13 07:41:12 +01:00
if (typeof config.title === 'number') {
config.title = config.title.toString();
}
2017-04-02 04:18:29 +02:00
2018-11-13 07:41:12 +01:00
if (typeof config.content === 'number') {
config.content = config.content.toString();
}
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
Util.typeCheckConfig(NAME, config, this.constructor.DefaultType);
2019-02-13 17:01:40 +01:00
if (config.sanitize) {
config.template = sanitizeHtml(config.template, config.whiteList, config.sanitizeFn);
}
2018-11-13 07:41:12 +01:00
return config;
};
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
_proto._getDelegateConfig = function _getDelegateConfig() {
var config = {};
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
if (this.config) {
for (var key in this.config) {
if (this.constructor.Default[key] !== this.config[key]) {
config[key] = this.config[key];
}
}
2018-11-13 07:41:12 +01:00
}
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
return config;
};
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
_proto._cleanTipClass = function _cleanTipClass() {
var $tip = $(this.getTipElement());
var tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX);
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
if (tabClass !== null && tabClass.length) {
$tip.removeClass(tabClass.join(''));
}
};
2018-07-12 06:42:55 +02:00
2018-11-13 07:41:12 +01:00
_proto._handlePopperPlacementChange = function _handlePopperPlacementChange(popperData) {
2020-05-12 18:53:07 +02:00
this.tip = popperData.instance.popper;
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
this._cleanTipClass();
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
this.addAttachmentClass(this._getAttachment(popperData.placement));
};
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
_proto._fixTransition = function _fixTransition() {
var tip = this.getTipElement();
var initConfigAnimation = this.config.animation;
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
if (tip.getAttribute('x-placement') !== null) {
return;
}
2017-09-30 23:28:03 +02:00
2020-05-12 18:53:07 +02:00
$(tip).removeClass(CLASS_NAME_FADE);
2018-11-13 07:41:12 +01:00
this.config.animation = false;
this.hide();
this.show();
this.config.animation = initConfigAnimation;
2019-01-04 17:29:45 +01:00
} // Static
;
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
Tooltip._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var data = $(this).data(DATA_KEY);
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
var _config = typeof config === 'object' && config;
2017-09-06 06:05:12 +02:00
2018-11-13 07:41:12 +01:00
if (!data && /dispose|hide/.test(config)) {
return;
}
2018-07-24 02:51:14 +02:00
2018-11-13 07:41:12 +01:00
if (!data) {
data = new Tooltip(this, _config);
$(this).data(DATA_KEY, data);
}
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
if (typeof config === 'string') {
if (typeof data[config] === 'undefined') {
throw new TypeError("No method named \"" + config + "\"");
2017-09-06 06:05:12 +02:00
}
2018-11-13 07:41:12 +01:00
data[config]();
2018-07-24 02:51:14 +02:00
}
2018-11-13 07:41:12 +01:00
});
};
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
_createClass(Tooltip, null, [{
key: "VERSION",
get: function get() {
return VERSION;
}
}, {
key: "Default",
get: function get() {
return Default;
}
}, {
key: "NAME",
get: function get() {
return NAME;
}
}, {
key: "DATA_KEY",
get: function get() {
return DATA_KEY;
}
}, {
key: "Event",
get: function get() {
return Event;
}
}, {
key: "EVENT_KEY",
get: function get() {
return EVENT_KEY;
}
}, {
key: "DefaultType",
get: function get() {
return DefaultType;
}
}]);
2018-11-13 07:41:12 +01:00
return Tooltip;
}();
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
$.fn[NAME] = Tooltip._jQueryInterface;
$.fn[NAME].Constructor = Tooltip;
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return Tooltip._jQueryInterface;
};
return Tooltip;
2018-07-24 02:51:14 +02:00
2019-11-26 18:12:00 +01:00
})));
2018-07-24 02:51:14 +02:00
//# sourceMappingURL=tooltip.js.map