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

204 lines
6.2 KiB
JavaScript
Raw Normal View History

2017-09-30 21:28:03 +00: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); } }
2017-09-06 04:05:12 +00:00
2017-09-30 21:28:03 +00:00
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
2015-05-12 21:28:11 +00:00
2017-09-30 21:28:03 +00:00
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
2015-05-12 21:28:11 +00:00
2017-12-23 00:21:54 +00: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); }
2015-05-12 21:28:11 +00:00
/**
* --------------------------------------------------------------------------
2017-12-28 17:16:39 +00:00
* Bootstrap (v4.0.0-beta.3): popover.js
2015-05-12 21:28:11 +00:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
2017-10-25 19:31:55 +00:00
var Popover = function ($) {
2015-05-12 21:28:11 +00:00
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'popover';
2017-12-28 17:16:39 +00:00
var VERSION = '4.0.0-beta.3';
2015-05-12 21:28:11 +00:00
var DATA_KEY = 'bs.popover';
2017-09-30 21:28:03 +00:00
var EVENT_KEY = "." + DATA_KEY;
2015-05-12 21:28:11 +00:00
var JQUERY_NO_CONFLICT = $.fn[NAME];
2017-05-16 07:59:44 +00:00
var CLASS_PREFIX = 'bs-popover';
2017-09-30 21:28:03 +00:00
var BSCLS_PREFIX_REGEX = new RegExp("(^|\\s)" + CLASS_PREFIX + "\\S+", 'g');
2017-12-23 00:21:54 +00:00
var Default = _extends({}, Tooltip.Default, {
2015-05-12 21:28:11 +00: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>'
2015-05-12 21:28:11 +00:00
});
2017-12-23 00:21:54 +00:00
var DefaultType = _extends({}, Tooltip.DefaultType, {
2015-08-29 21:03:55 +00:00
content: '(string|element|function)'
2015-05-13 21:46:50 +00:00
});
2017-12-23 00:21:54 +00:00
2015-05-12 21:28:11 +00:00
var ClassName = {
FADE: 'fade',
2016-12-20 05:48:24 +00:00
SHOW: 'show'
2015-05-12 21:28:11 +00:00
};
var Selector = {
TITLE: '.popover-header',
CONTENT: '.popover-body'
2015-05-12 21:28:11 +00:00
};
var Event = {
2017-09-30 21:28:03 +00: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
2017-09-13 05:24:15 +00:00
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
2015-05-12 21:28:11 +00:00
2017-09-13 05:24:15 +00:00
};
2015-08-13 04:12:03 +00:00
2017-09-30 21:28:03 +00:00
var Popover =
/*#__PURE__*/
function (_Tooltip) {
_inheritsLoose(Popover, _Tooltip);
2015-05-12 21:28:11 +00:00
2017-09-30 21:28:03 +00:00
function Popover() {
return _Tooltip.apply(this, arguments) || this;
2015-05-12 21:28:11 +00:00
}
2017-09-30 21:28:03 +00:00
var _proto = Popover.prototype;
2017-05-16 07:59:44 +00:00
2017-09-30 21:28:03 +00:00
// overrides
_proto.isWithContent = function isWithContent() {
return this.getTitle() || this._getContent();
};
2015-05-12 21:28:11 +00:00
2017-09-30 21:28:03 +00:00
_proto.addAttachmentClass = function addAttachmentClass(attachment) {
$(this.getTipElement()).addClass(CLASS_PREFIX + "-" + attachment);
};
2015-05-12 21:28:11 +00:00
2017-09-30 21:28:03 +00:00
_proto.getTipElement = function getTipElement() {
this.tip = this.tip || $(this.config.template)[0];
return this.tip;
};
2015-05-12 21:28:11 +00:00
2017-09-30 21:28:03 +00:00
_proto.setContent = function setContent() {
var $tip = $(this.getTipElement()); // we use append for html objects to maintain js events
2015-05-12 21:28:11 +00:00
2017-09-30 21:28:03 +00:00
this.setElementContent($tip.find(Selector.TITLE), this.getTitle());
2017-11-08 04:45:26 +00:00
var content = this._getContent();
if (typeof content === 'function') {
content = content.call(this.element);
}
this.setElementContent($tip.find(Selector.CONTENT), content);
2017-09-30 21:28:03 +00:00
$tip.removeClass(ClassName.FADE + " " + ClassName.SHOW);
}; // private
2015-05-12 21:28:11 +00:00
2015-08-13 04:12:03 +00:00
2017-09-30 21:28:03 +00:00
_proto._getContent = function _getContent() {
2017-11-08 04:45:26 +00:00
return this.element.getAttribute('data-content') || this.config.content;
2017-09-30 21:28:03 +00:00
};
_proto._cleanTipClass = function _cleanTipClass() {
var $tip = $(this.getTipElement());
var tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX);
if (tabClass !== null && tabClass.length > 0) {
$tip.removeClass(tabClass.join(''));
2017-05-16 07:59:44 +00:00
}
2017-09-30 21:28:03 +00:00
}; // static
2015-08-13 04:12:03 +00:00
2017-09-30 21:28:03 +00:00
Popover._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var data = $(this).data(DATA_KEY);
2015-08-13 04:12:03 +00:00
2017-09-30 21:28:03 +00:00
var _config = typeof config === 'object' ? config : null;
2015-08-13 04:12:03 +00:00
2017-09-30 21:28:03 +00:00
if (!data && /destroy|hide/.test(config)) {
return;
}
2016-10-10 00:26:51 +00:00
2017-09-30 21:28:03 +00:00
if (!data) {
data = new Popover(this, _config);
$(this).data(DATA_KEY, data);
}
if (typeof config === 'string') {
if (typeof data[config] === 'undefined') {
throw new Error("No method named \"" + config + "\"");
2017-09-06 04:05:12 +00:00
}
2015-05-12 21:28:11 +00:00
2017-09-30 21:28:03 +00:00
data[config]();
}
});
};
2016-10-10 00:26:51 +00:00
2017-09-30 21:28:03 +00:00
_createClass(Popover, null, [{
key: "VERSION",
2015-05-12 21:28:11 +00:00
// getters
2015-08-13 04:12:03 +00:00
get: function get() {
2015-05-12 21:28:11 +00:00
return VERSION;
}
}, {
2017-09-30 21:28:03 +00:00
key: "Default",
2015-08-13 04:12:03 +00:00
get: function get() {
2015-05-12 21:28:11 +00:00
return Default;
}
}, {
2017-09-30 21:28:03 +00:00
key: "NAME",
2015-08-13 04:12:03 +00:00
get: function get() {
2015-05-12 21:28:11 +00:00
return NAME;
}
}, {
2017-09-30 21:28:03 +00:00
key: "DATA_KEY",
2015-08-13 04:12:03 +00:00
get: function get() {
2015-05-12 21:28:11 +00:00
return DATA_KEY;
}
}, {
2017-09-30 21:28:03 +00:00
key: "Event",
2015-08-13 04:12:03 +00:00
get: function get() {
2015-05-12 21:28:11 +00:00
return Event;
}
2015-05-13 19:48:34 +00:00
}, {
2017-09-30 21:28:03 +00:00
key: "EVENT_KEY",
2015-08-13 04:12:03 +00:00
get: function get() {
2015-05-13 19:48:34 +00:00
return EVENT_KEY;
}
2015-05-13 21:46:50 +00:00
}, {
2017-09-30 21:28:03 +00:00
key: "DefaultType",
2015-08-13 04:12:03 +00:00
get: function get() {
2015-05-13 21:46:50 +00:00
return DefaultType;
}
2015-05-12 21:28:11 +00:00
}]);
return Popover;
2016-10-10 00:26:51 +00:00
}(Tooltip);
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
2015-05-12 21:28:11 +00:00
2017-09-30 21:28:03 +00:00
2015-05-12 21:28:11 +00:00
$.fn[NAME] = Popover._jQueryInterface;
$.fn[NAME].Constructor = Popover;
2017-09-30 21:28:03 +00:00
2015-05-12 21:28:11 +00:00
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return Popover._jQueryInterface;
};
return Popover;
2017-10-15 22:51:44 +00:00
}($);
2017-04-22 06:58:09 +00:00
//# sourceMappingURL=popover.js.map