0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/js/dist/popover.js

206 lines
6.7 KiB
JavaScript
Raw Normal View History

2018-11-13 07:41:12 +01:00
/*!
2020-08-06 18:22:43 +02:00
* Bootstrap popover.js v4.5.2 (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('./tooltip.js')) :
typeof define === 'function' && define.amd ? define(['jquery', './tooltip.js'], factory) :
2020-08-04 18:24:33 +02:00
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Popover = factory(global.jQuery, global.Tooltip));
2019-11-26 18:12:00 +01:00
}(this, (function ($, Tooltip) { 'use strict';
2018-07-24 02:51:14 +02:00
2020-05-12 18:53:07 +02:00
$ = $ && Object.prototype.hasOwnProperty.call($, 'default') ? $['default'] : $;
Tooltip = Tooltip && Object.prototype.hasOwnProperty.call(Tooltip, 'default') ? Tooltip['default'] : Tooltip;
2018-07-24 02:51:14 +02:00
2020-08-04 18:24:33 +02:00
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); } }
2018-07-24 02:51:14 +02:00
2020-08-04 18:24:33 +02:00
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
2018-07-24 02:51:14 +02:00
2020-08-04 18:24:33 +02:00
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
2017-12-23 01:21:54 +01:00
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); }
2018-11-13 07:41:12 +01:00
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'popover';
2020-08-06 18:22:43 +02:00
var VERSION = '4.5.2';
2018-11-13 07:41:12 +01:00
var DATA_KEY = 'bs.popover';
var EVENT_KEY = "." + DATA_KEY;
var JQUERY_NO_CONFLICT = $.fn[NAME];
var CLASS_PREFIX = 'bs-popover';
var BSCLS_PREFIX_REGEX = new RegExp("(^|\\s)" + CLASS_PREFIX + "\\S+", 'g');
2020-08-04 18:24:33 +02:00
var Default = _extends({}, Tooltip.Default, {
2018-11-13 07:41:12 +01:00
placement: 'right',
trigger: 'click',
content: '',
template: '<div class="popover" role="tooltip">' + '<div class="arrow"></div>' + '<h3 class="popover-header"></h3>' + '<div class="popover-body"></div></div>'
});
2020-08-04 18:24:33 +02:00
var DefaultType = _extends({}, Tooltip.DefaultType, {
2018-11-13 07:41:12 +01:00
content: '(string|element|function)'
});
2020-05-12 18:53:07 +02:00
var CLASS_NAME_FADE = 'fade';
var CLASS_NAME_SHOW = 'show';
var SELECTOR_TITLE = '.popover-header';
var SELECTOR_CONTENT = '.popover-body';
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
};
2019-11-26 18:12:00 +01:00
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
2015-05-12 23:28:11 +02:00
2020-05-12 18:53:07 +02:00
var Popover = /*#__PURE__*/function (_Tooltip) {
2018-11-13 07:41:12 +01:00
_inheritsLoose(Popover, _Tooltip);
2015-05-12 23:28:11 +02:00
2018-11-13 07:41:12 +01:00
function Popover() {
return _Tooltip.apply(this, arguments) || this;
}
2017-05-16 09:59:44 +02:00
2018-11-13 07:41:12 +01:00
var _proto = Popover.prototype;
2015-05-12 23:28:11 +02:00
2018-11-13 07:41:12 +01:00
// Overrides
_proto.isWithContent = function isWithContent() {
return this.getTitle() || this._getContent();
};
2015-05-12 23:28:11 +02:00
2018-11-13 07:41:12 +01:00
_proto.addAttachmentClass = function addAttachmentClass(attachment) {
$(this.getTipElement()).addClass(CLASS_PREFIX + "-" + attachment);
};
2015-05-12 23:28:11 +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;
};
2015-05-12 23:28:11 +02:00
2018-11-13 07:41:12 +01:00
_proto.setContent = function setContent() {
var $tip = $(this.getTipElement()); // We use append for html objects to maintain js events
2017-11-08 05:45:26 +01:00
2020-05-12 18:53:07 +02:00
this.setElementContent($tip.find(SELECTOR_TITLE), this.getTitle());
2017-11-08 05:45:26 +01:00
2018-11-13 07:41:12 +01:00
var content = this._getContent();
2017-11-08 05:45:26 +01:00
2018-11-13 07:41:12 +01:00
if (typeof content === 'function') {
content = content.call(this.element);
}
2015-08-13 06:12:03 +02:00
2020-05-12 18:53:07 +02:00
this.setElementContent($tip.find(SELECTOR_CONTENT), content);
$tip.removeClass(CLASS_NAME_FADE + " " + CLASS_NAME_SHOW);
2019-01-04 17:29:45 +01:00
} // Private
;
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
_proto._getContent = function _getContent() {
return this.element.getAttribute('data-content') || this.config.content;
};
2015-08-13 06:12: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);
2015-08-13 06:12:03 +02:00
2018-11-13 07:41:12 +01:00
if (tabClass !== null && tabClass.length > 0) {
$tip.removeClass(tabClass.join(''));
}
2019-01-04 17:29:45 +01:00
} // Static
;
2015-08-13 06:12:03 +02:00
2018-11-13 07:41:12 +01:00
Popover._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var data = $(this).data(DATA_KEY);
2016-10-10 02:26:51 +02:00
2018-11-13 07:41:12 +01:00
var _config = typeof config === 'object' ? config : null;
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
if (!data && /dispose|hide/.test(config)) {
return;
}
2015-05-12 23:28:11 +02:00
2018-11-13 07:41:12 +01:00
if (!data) {
data = new Popover(this, _config);
$(this).data(DATA_KEY, data);
}
2018-07-24 02:51:14 +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 + "\"");
2018-07-24 02:51:14 +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(Popover, null, [{
key: "VERSION",
// Getters
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;
}
}]);
2015-05-12 23:28:11 +02:00
2018-11-13 07:41:12 +01:00
return Popover;
}(Tooltip);
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
2015-05-12 23:28:11 +02:00
2017-09-30 23:28:03 +02:00
2018-11-13 07:41:12 +01:00
$.fn[NAME] = Popover._jQueryInterface;
$.fn[NAME].Constructor = Popover;
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 Popover._jQueryInterface;
};
2015-05-12 23:28:11 +02:00
return Popover;
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=popover.js.map