twbs--bootstrap/js/dist/popover.js

185 lines
5.3 KiB
JavaScript
Raw Normal View History

2018-11-13 06:41:12 +00:00
/*!
2021-10-09 06:33:12 +00:00
* Bootstrap popover.js v5.1.3 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
2020-06-16 18:50:01 +00:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
2018-11-13 06:41:12 +00:00
*/
2018-07-24 00:51:14 +00:00
(function (global, factory) {
2021-08-04 15:41:51 +00:00
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('./tooltip.js')) :
typeof define === 'function' && define.amd ? define(['./tooltip'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.Popover = factory(global.Tooltip));
2021-10-05 15:50:18 +00:00
})(this, (function (Tooltip) { 'use strict';
2018-07-24 00:51:14 +00:00
2021-10-05 15:50:18 +00:00
const _interopDefaultLegacy = e => e && typeof e === 'object' && 'default' in e ? e : { default: e };
2020-09-14 15:12:06 +00:00
2021-10-05 15:50:18 +00:00
const Tooltip__default = /*#__PURE__*/_interopDefaultLegacy(Tooltip);
2018-07-24 00:51:14 +00:00
2021-08-04 15:41:51 +00:00
/**
* --------------------------------------------------------------------------
2021-10-09 06:33:12 +00:00
* Bootstrap (v5.1.3): util/index.js
2021-08-04 15:41:51 +00:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
2021-03-23 16:26:54 +00:00
const getjQuery = () => {
const {
jQuery
} = window;
2019-08-27 13:03:21 +00:00
2020-11-23 13:17:16 +00:00
if (jQuery && !document.body.hasAttribute('data-bs-no-jquery')) {
2019-08-27 13:03:21 +00:00
return jQuery;
}
return null;
};
2019-03-01 16:31:34 +00:00
const DOMContentLoadedCallbacks = [];
2021-03-23 16:26:54 +00:00
const onDOMContentLoaded = callback => {
2020-11-11 17:07:37 +00:00
if (document.readyState === 'loading') {
// add listener on the first call when the document is in loading state
if (!DOMContentLoadedCallbacks.length) {
document.addEventListener('DOMContentLoaded', () => {
DOMContentLoadedCallbacks.forEach(callback => callback());
});
}
DOMContentLoadedCallbacks.push(callback);
2020-11-11 17:07:37 +00:00
} else {
callback();
}
};
const defineJQueryPlugin = plugin => {
2021-03-23 16:26:54 +00:00
onDOMContentLoaded(() => {
const $ = getjQuery();
/* istanbul ignore if */
2020-06-13 22:40:28 +00:00
if ($) {
const name = plugin.NAME;
2021-03-23 16:26:54 +00:00
const JQUERY_NO_CONFLICT = $.fn[name];
$.fn[name] = plugin.jQueryInterface;
$.fn[name].Constructor = plugin;
2020-06-13 22:40:28 +00:00
2021-03-23 16:26:54 +00:00
$.fn[name].noConflict = () => {
$.fn[name] = JQUERY_NO_CONFLICT;
return plugin.jQueryInterface;
};
}
});
};
2020-06-13 22:40:28 +00:00
2021-03-23 16:26:54 +00:00
/**
* --------------------------------------------------------------------------
2021-10-09 06:33:12 +00:00
* Bootstrap (v5.1.3): popover.js
2021-03-23 16:26:54 +00:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
2018-11-13 06:41:12 +00:00
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
2021-03-23 16:26:54 +00:00
const NAME = 'popover';
const DATA_KEY = 'bs.popover';
const EVENT_KEY = `.${DATA_KEY}`;
const CLASS_PREFIX = 'bs-popover';
2021-10-05 15:50:18 +00:00
const Default = { ...Tooltip__default.default.Default,
2018-11-13 06:41:12 +00:00
placement: 'right',
offset: [0, 8],
2018-11-13 06:41:12 +00:00
trigger: 'click',
content: '',
2020-12-03 14:18:59 +00:00
template: '<div class="popover" role="tooltip">' + '<div class="popover-arrow"></div>' + '<h3 class="popover-header"></h3>' + '<div class="popover-body"></div>' + '</div>'
2021-03-23 16:26:54 +00:00
};
2021-10-05 15:50:18 +00:00
const DefaultType = { ...Tooltip__default.default.DefaultType,
2018-11-13 06:41:12 +00:00
content: '(string|element|function)'
};
2021-03-23 16:26:54 +00:00
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 SELECTOR_TITLE = '.popover-header';
const SELECTOR_CONTENT = '.popover-body';
2019-10-08 06:39:10 +00:00
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
2015-05-12 21:28:11 +00:00
2021-10-05 15:50:18 +00:00
class Popover extends Tooltip__default.default {
2021-03-23 16:26:54 +00:00
// Getters
static get Default() {
return Default;
}
2015-05-12 21:28:11 +00:00
2021-03-23 16:26:54 +00:00
static get NAME() {
return NAME;
2018-11-13 06:41:12 +00:00
}
2017-05-16 07:59:44 +00:00
2021-03-23 16:26:54 +00:00
static get Event() {
return Event;
}
2015-05-12 21:28:11 +00:00
2021-03-23 16:26:54 +00:00
static get DefaultType() {
return DefaultType;
} // Overrides
isWithContent() {
2018-11-13 06:41:12 +00:00
return this.getTitle() || this._getContent();
2021-03-23 16:26:54 +00:00
}
2015-05-12 21:28:11 +00:00
2021-08-04 15:41:51 +00:00
setContent(tip) {
this._sanitizeAndSetContent(tip, this.getTitle(), SELECTOR_TITLE);
2021-08-04 15:41:51 +00:00
this._sanitizeAndSetContent(tip, this._getContent(), SELECTOR_CONTENT);
2020-09-14 15:12:06 +00:00
} // Private
2019-08-27 13:03:21 +00:00
2017-09-30 21:28:03 +00:00
2021-03-23 16:26:54 +00:00
_getContent() {
2021-08-04 15:41:51 +00:00
return this._resolvePossibleFunction(this._config.content);
2021-03-23 16:26:54 +00:00
}
2015-08-13 04:12:03 +00:00
2021-08-04 15:41:51 +00:00
_getBasicClassPrefix() {
return CLASS_PREFIX;
2019-01-04 16:29:45 +00:00
} // Static
2015-08-13 04:12:03 +00:00
2021-03-23 16:26:54 +00:00
static jQueryInterface(config) {
2018-11-13 06:41:12 +00:00
return this.each(function () {
const data = Popover.getOrCreateInstance(this, config);
2018-07-24 00:51:14 +00:00
2018-11-13 06:41:12 +00:00
if (typeof config === 'string') {
if (typeof data[config] === 'undefined') {
2021-03-23 16:26:54 +00:00
throw new TypeError(`No method named "${config}"`);
2018-07-24 00:51:14 +00:00
}
2018-11-13 06:41:12 +00:00
data[config]();
2018-07-24 00:51:14 +00:00
}
2018-11-13 06:41:12 +00:00
});
2021-03-23 16:26:54 +00:00
}
2015-05-12 21:28:11 +00:00
2021-03-23 16:26:54 +00:00
}
2018-11-13 06:41:12 +00:00
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
2020-11-11 17:07:37 +00:00
* add .Popover to jQuery only if jQuery is present
2018-11-13 06:41:12 +00:00
*/
2015-05-12 21:28:11 +00:00
defineJQueryPlugin(Popover);
2015-05-12 21:28:11 +00:00
return Popover;
2018-07-24 00:51:14 +00:00
2021-10-05 15:50:18 +00:00
}));
2018-07-24 00:51:14 +00:00
//# sourceMappingURL=popover.js.map