forked from hero/www_hero
204 lines
7.5 KiB
JavaScript
204 lines
7.5 KiB
JavaScript
|
"use strict";
|
||
|
var __assign = (this && this.__assign) || function () {
|
||
|
__assign = Object.assign || function(t) {
|
||
|
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||
|
s = arguments[i];
|
||
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
||
|
t[p] = s[p];
|
||
|
}
|
||
|
return t;
|
||
|
};
|
||
|
return __assign.apply(this, arguments);
|
||
|
};
|
||
|
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
||
|
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
||
|
if (ar || !(i in from)) {
|
||
|
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
||
|
ar[i] = from[i];
|
||
|
}
|
||
|
}
|
||
|
return to.concat(ar || Array.prototype.slice.call(from));
|
||
|
};
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.initTooltips = void 0;
|
||
|
/* eslint-disable @typescript-eslint/no-empty-function */
|
||
|
var core_1 = require("@popperjs/core");
|
||
|
var Default = {
|
||
|
placement: 'top',
|
||
|
triggerType: 'hover',
|
||
|
onShow: function () { },
|
||
|
onHide: function () { },
|
||
|
onToggle: function () { },
|
||
|
};
|
||
|
var Tooltip = /** @class */ (function () {
|
||
|
function Tooltip(targetEl, triggerEl, options) {
|
||
|
if (targetEl === void 0) { targetEl = null; }
|
||
|
if (triggerEl === void 0) { triggerEl = null; }
|
||
|
if (options === void 0) { options = Default; }
|
||
|
this._targetEl = targetEl;
|
||
|
this._triggerEl = triggerEl;
|
||
|
this._options = __assign(__assign({}, Default), options);
|
||
|
this._popperInstance = this._createPopperInstance();
|
||
|
this._visible = false;
|
||
|
this._init();
|
||
|
}
|
||
|
Tooltip.prototype._init = function () {
|
||
|
if (this._triggerEl) {
|
||
|
this._setupEventListeners();
|
||
|
}
|
||
|
};
|
||
|
Tooltip.prototype._setupEventListeners = function () {
|
||
|
var _this = this;
|
||
|
var triggerEvents = this._getTriggerEvents();
|
||
|
triggerEvents.showEvents.forEach(function (ev) {
|
||
|
_this._triggerEl.addEventListener(ev, function () {
|
||
|
_this.show();
|
||
|
});
|
||
|
});
|
||
|
triggerEvents.hideEvents.forEach(function (ev) {
|
||
|
_this._triggerEl.addEventListener(ev, function () {
|
||
|
_this.hide();
|
||
|
});
|
||
|
});
|
||
|
};
|
||
|
Tooltip.prototype._createPopperInstance = function () {
|
||
|
return (0, core_1.createPopper)(this._triggerEl, this._targetEl, {
|
||
|
placement: this._options.placement,
|
||
|
modifiers: [
|
||
|
{
|
||
|
name: 'offset',
|
||
|
options: {
|
||
|
offset: [0, 8],
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
});
|
||
|
};
|
||
|
Tooltip.prototype._getTriggerEvents = function () {
|
||
|
switch (this._options.triggerType) {
|
||
|
case 'hover':
|
||
|
return {
|
||
|
showEvents: ['mouseenter', 'focus'],
|
||
|
hideEvents: ['mouseleave', 'blur'],
|
||
|
};
|
||
|
case 'click':
|
||
|
return {
|
||
|
showEvents: ['click', 'focus'],
|
||
|
hideEvents: ['focusout', 'blur'],
|
||
|
};
|
||
|
case 'none':
|
||
|
return {
|
||
|
showEvents: [],
|
||
|
hideEvents: [],
|
||
|
};
|
||
|
default:
|
||
|
return {
|
||
|
showEvents: ['mouseenter', 'focus'],
|
||
|
hideEvents: ['mouseleave', 'blur'],
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
Tooltip.prototype._setupKeydownListener = function () {
|
||
|
var _this = this;
|
||
|
this._keydownEventListener = function (ev) {
|
||
|
if (ev.key === 'Escape') {
|
||
|
_this.hide();
|
||
|
}
|
||
|
};
|
||
|
document.body.addEventListener('keydown', this._keydownEventListener, true);
|
||
|
};
|
||
|
Tooltip.prototype._removeKeydownListener = function () {
|
||
|
document.body.removeEventListener('keydown', this._keydownEventListener, true);
|
||
|
};
|
||
|
Tooltip.prototype._setupClickOutsideListener = function () {
|
||
|
var _this = this;
|
||
|
this._clickOutsideEventListener = function (ev) {
|
||
|
_this._handleClickOutside(ev, _this._targetEl);
|
||
|
};
|
||
|
document.body.addEventListener('click', this._clickOutsideEventListener, true);
|
||
|
};
|
||
|
Tooltip.prototype._removeClickOutsideListener = function () {
|
||
|
document.body.removeEventListener('click', this._clickOutsideEventListener, true);
|
||
|
};
|
||
|
Tooltip.prototype._handleClickOutside = function (ev, targetEl) {
|
||
|
var clickedEl = ev.target;
|
||
|
if (clickedEl !== targetEl &&
|
||
|
!targetEl.contains(clickedEl) &&
|
||
|
!this._triggerEl.contains(clickedEl) &&
|
||
|
this.isVisible()) {
|
||
|
this.hide();
|
||
|
}
|
||
|
};
|
||
|
Tooltip.prototype.isVisible = function () {
|
||
|
return this._visible;
|
||
|
};
|
||
|
Tooltip.prototype.toggle = function () {
|
||
|
if (this.isVisible()) {
|
||
|
this.hide();
|
||
|
}
|
||
|
else {
|
||
|
this.show();
|
||
|
}
|
||
|
};
|
||
|
Tooltip.prototype.show = function () {
|
||
|
this._targetEl.classList.remove('opacity-0', 'invisible');
|
||
|
this._targetEl.classList.add('opacity-100', 'visible');
|
||
|
// Enable the event listeners
|
||
|
this._popperInstance.setOptions(function (options) { return (__assign(__assign({}, options), { modifiers: __spreadArray(__spreadArray([], options.modifiers, true), [
|
||
|
{ name: 'eventListeners', enabled: true },
|
||
|
], false) })); });
|
||
|
// handle click outside
|
||
|
this._setupClickOutsideListener();
|
||
|
// handle esc keydown
|
||
|
this._setupKeydownListener();
|
||
|
// Update its position
|
||
|
this._popperInstance.update();
|
||
|
// set visibility
|
||
|
this._visible = true;
|
||
|
// callback function
|
||
|
this._options.onShow(this);
|
||
|
};
|
||
|
Tooltip.prototype.hide = function () {
|
||
|
this._targetEl.classList.remove('opacity-100', 'visible');
|
||
|
this._targetEl.classList.add('opacity-0', 'invisible');
|
||
|
// Disable the event listeners
|
||
|
this._popperInstance.setOptions(function (options) { return (__assign(__assign({}, options), { modifiers: __spreadArray(__spreadArray([], options.modifiers, true), [
|
||
|
{ name: 'eventListeners', enabled: false },
|
||
|
], false) })); });
|
||
|
// handle click outside
|
||
|
this._removeClickOutsideListener();
|
||
|
// handle esc keydown
|
||
|
this._removeKeydownListener();
|
||
|
// set visibility
|
||
|
this._visible = false;
|
||
|
// callback function
|
||
|
this._options.onHide(this);
|
||
|
};
|
||
|
return Tooltip;
|
||
|
}());
|
||
|
function initTooltips() {
|
||
|
document.querySelectorAll('[data-tooltip-target]').forEach(function ($triggerEl) {
|
||
|
var tooltipId = $triggerEl.getAttribute('data-tooltip-target');
|
||
|
var $tooltipEl = document.getElementById(tooltipId);
|
||
|
if ($tooltipEl) {
|
||
|
var triggerType = $triggerEl.getAttribute('data-tooltip-trigger');
|
||
|
var placement = $triggerEl.getAttribute('data-tooltip-placement');
|
||
|
new Tooltip($tooltipEl, $triggerEl, {
|
||
|
placement: placement ? placement : Default.placement,
|
||
|
triggerType: triggerType
|
||
|
? triggerType
|
||
|
: Default.triggerType,
|
||
|
});
|
||
|
}
|
||
|
else {
|
||
|
console.error("The tooltip element with id \"".concat(tooltipId, "\" does not exist. Please check the data-tooltip-target attribute."));
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
exports.initTooltips = initTooltips;
|
||
|
if (typeof window !== 'undefined') {
|
||
|
window.Tooltip = Tooltip;
|
||
|
window.initTooltips = initTooltips;
|
||
|
}
|
||
|
exports.default = Tooltip;
|
||
|
//# sourceMappingURL=index.js.map
|