3644 lines
140 KiB
JavaScript
3644 lines
140 KiB
JavaScript
(() => {
|
||
var __create = Object.create;
|
||
var __defProp = Object.defineProperty;
|
||
var __defProps = Object.defineProperties;
|
||
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
||
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
||
var __getOwnPropNames = Object.getOwnPropertyNames;
|
||
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
||
var __getProtoOf = Object.getPrototypeOf;
|
||
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
||
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
||
var __typeError = (msg) => {
|
||
throw TypeError(msg);
|
||
};
|
||
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
||
var __spreadValues = (a, b) => {
|
||
for (var prop in b || (b = {}))
|
||
if (__hasOwnProp.call(b, prop))
|
||
__defNormalProp(a, prop, b[prop]);
|
||
if (__getOwnPropSymbols)
|
||
for (var prop of __getOwnPropSymbols(b)) {
|
||
if (__propIsEnum.call(b, prop))
|
||
__defNormalProp(a, prop, b[prop]);
|
||
}
|
||
return a;
|
||
};
|
||
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
||
var __commonJS = (cb, mod) => function __require() {
|
||
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
||
};
|
||
var __copyProps = (to, from, except, desc) => {
|
||
if (from && typeof from === "object" || typeof from === "function") {
|
||
for (let key of __getOwnPropNames(from))
|
||
if (!__hasOwnProp.call(to, key) && key !== except)
|
||
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
||
}
|
||
return to;
|
||
};
|
||
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
||
// If the importer is in node compatibility mode or this is not an ESM
|
||
// file that has been converted to a CommonJS file using a Babel-
|
||
// compatible transform (i.e. "__esModule" has not been set), then set
|
||
// "default" to the CommonJS "module.exports" for node compatibility.
|
||
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
||
mod
|
||
));
|
||
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
||
var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError("Cannot " + msg);
|
||
var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
|
||
var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
||
var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "write to private field"), setter ? setter.call(obj, value) : member.set(obj, value), value);
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/gohugoio/hugo-mod-jslibs-dist/popperjs/v2@v2.21100.20000/package/dist/cjs/popper.js
|
||
var require_popper = __commonJS({
|
||
"ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/gohugoio/hugo-mod-jslibs-dist/popperjs/v2@v2.21100.20000/package/dist/cjs/popper.js"(exports) {
|
||
"use strict";
|
||
Object.defineProperty(exports, "__esModule", { value: true });
|
||
function getWindow(node) {
|
||
if (node == null) {
|
||
return window;
|
||
}
|
||
if (node.toString() !== "[object Window]") {
|
||
var ownerDocument = node.ownerDocument;
|
||
return ownerDocument ? ownerDocument.defaultView || window : window;
|
||
}
|
||
return node;
|
||
}
|
||
function isElement2(node) {
|
||
var OwnElement = getWindow(node).Element;
|
||
return node instanceof OwnElement || node instanceof Element;
|
||
}
|
||
function isHTMLElement(node) {
|
||
var OwnElement = getWindow(node).HTMLElement;
|
||
return node instanceof OwnElement || node instanceof HTMLElement;
|
||
}
|
||
function isShadowRoot(node) {
|
||
if (typeof ShadowRoot === "undefined") {
|
||
return false;
|
||
}
|
||
var OwnElement = getWindow(node).ShadowRoot;
|
||
return node instanceof OwnElement || node instanceof ShadowRoot;
|
||
}
|
||
var max = Math.max;
|
||
var min = Math.min;
|
||
var round = Math.round;
|
||
function getBoundingClientRect(element, includeScale) {
|
||
if (includeScale === void 0) {
|
||
includeScale = false;
|
||
}
|
||
var rect = element.getBoundingClientRect();
|
||
var scaleX = 1;
|
||
var scaleY = 1;
|
||
if (isHTMLElement(element) && includeScale) {
|
||
var offsetHeight = element.offsetHeight;
|
||
var offsetWidth = element.offsetWidth;
|
||
if (offsetWidth > 0) {
|
||
scaleX = round(rect.width) / offsetWidth || 1;
|
||
}
|
||
if (offsetHeight > 0) {
|
||
scaleY = round(rect.height) / offsetHeight || 1;
|
||
}
|
||
}
|
||
return {
|
||
width: rect.width / scaleX,
|
||
height: rect.height / scaleY,
|
||
top: rect.top / scaleY,
|
||
right: rect.right / scaleX,
|
||
bottom: rect.bottom / scaleY,
|
||
left: rect.left / scaleX,
|
||
x: rect.left / scaleX,
|
||
y: rect.top / scaleY
|
||
};
|
||
}
|
||
function getWindowScroll(node) {
|
||
var win = getWindow(node);
|
||
var scrollLeft = win.pageXOffset;
|
||
var scrollTop = win.pageYOffset;
|
||
return {
|
||
scrollLeft,
|
||
scrollTop
|
||
};
|
||
}
|
||
function getHTMLElementScroll(element) {
|
||
return {
|
||
scrollLeft: element.scrollLeft,
|
||
scrollTop: element.scrollTop
|
||
};
|
||
}
|
||
function getNodeScroll(node) {
|
||
if (node === getWindow(node) || !isHTMLElement(node)) {
|
||
return getWindowScroll(node);
|
||
} else {
|
||
return getHTMLElementScroll(node);
|
||
}
|
||
}
|
||
function getNodeName(element) {
|
||
return element ? (element.nodeName || "").toLowerCase() : null;
|
||
}
|
||
function getDocumentElement(element) {
|
||
return ((isElement2(element) ? element.ownerDocument : (
|
||
// $FlowFixMe[prop-missing]
|
||
element.document
|
||
)) || window.document).documentElement;
|
||
}
|
||
function getWindowScrollBarX(element) {
|
||
return getBoundingClientRect(getDocumentElement(element)).left + getWindowScroll(element).scrollLeft;
|
||
}
|
||
function getComputedStyle2(element) {
|
||
return getWindow(element).getComputedStyle(element);
|
||
}
|
||
function isScrollParent(element) {
|
||
var _getComputedStyle = getComputedStyle2(element), overflow = _getComputedStyle.overflow, overflowX = _getComputedStyle.overflowX, overflowY = _getComputedStyle.overflowY;
|
||
return /auto|scroll|overlay|hidden/.test(overflow + overflowY + overflowX);
|
||
}
|
||
function isElementScaled(element) {
|
||
var rect = element.getBoundingClientRect();
|
||
var scaleX = round(rect.width) / element.offsetWidth || 1;
|
||
var scaleY = round(rect.height) / element.offsetHeight || 1;
|
||
return scaleX !== 1 || scaleY !== 1;
|
||
}
|
||
function getCompositeRect(elementOrVirtualElement, offsetParent, isFixed) {
|
||
if (isFixed === void 0) {
|
||
isFixed = false;
|
||
}
|
||
var isOffsetParentAnElement = isHTMLElement(offsetParent);
|
||
var offsetParentIsScaled = isHTMLElement(offsetParent) && isElementScaled(offsetParent);
|
||
var documentElement = getDocumentElement(offsetParent);
|
||
var rect = getBoundingClientRect(elementOrVirtualElement, offsetParentIsScaled);
|
||
var scroll = {
|
||
scrollLeft: 0,
|
||
scrollTop: 0
|
||
};
|
||
var offsets = {
|
||
x: 0,
|
||
y: 0
|
||
};
|
||
if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {
|
||
if (getNodeName(offsetParent) !== "body" || // https://github.com/popperjs/popper-core/issues/1078
|
||
isScrollParent(documentElement)) {
|
||
scroll = getNodeScroll(offsetParent);
|
||
}
|
||
if (isHTMLElement(offsetParent)) {
|
||
offsets = getBoundingClientRect(offsetParent, true);
|
||
offsets.x += offsetParent.clientLeft;
|
||
offsets.y += offsetParent.clientTop;
|
||
} else if (documentElement) {
|
||
offsets.x = getWindowScrollBarX(documentElement);
|
||
}
|
||
}
|
||
return {
|
||
x: rect.left + scroll.scrollLeft - offsets.x,
|
||
y: rect.top + scroll.scrollTop - offsets.y,
|
||
width: rect.width,
|
||
height: rect.height
|
||
};
|
||
}
|
||
function getLayoutRect(element) {
|
||
var clientRect = getBoundingClientRect(element);
|
||
var width = element.offsetWidth;
|
||
var height = element.offsetHeight;
|
||
if (Math.abs(clientRect.width - width) <= 1) {
|
||
width = clientRect.width;
|
||
}
|
||
if (Math.abs(clientRect.height - height) <= 1) {
|
||
height = clientRect.height;
|
||
}
|
||
return {
|
||
x: element.offsetLeft,
|
||
y: element.offsetTop,
|
||
width,
|
||
height
|
||
};
|
||
}
|
||
function getParentNode(element) {
|
||
if (getNodeName(element) === "html") {
|
||
return element;
|
||
}
|
||
return (
|
||
// this is a quicker (but less type safe) way to save quite some bytes from the bundle
|
||
// $FlowFixMe[incompatible-return]
|
||
// $FlowFixMe[prop-missing]
|
||
element.assignedSlot || // step into the shadow DOM of the parent of a slotted node
|
||
element.parentNode || // DOM Element detected
|
||
(isShadowRoot(element) ? element.host : null) || // ShadowRoot detected
|
||
// $FlowFixMe[incompatible-call]: HTMLElement is a Node
|
||
getDocumentElement(element)
|
||
);
|
||
}
|
||
function getScrollParent(node) {
|
||
if (["html", "body", "#document"].indexOf(getNodeName(node)) >= 0) {
|
||
return node.ownerDocument.body;
|
||
}
|
||
if (isHTMLElement(node) && isScrollParent(node)) {
|
||
return node;
|
||
}
|
||
return getScrollParent(getParentNode(node));
|
||
}
|
||
function listScrollParents(element, list) {
|
||
var _element$ownerDocumen;
|
||
if (list === void 0) {
|
||
list = [];
|
||
}
|
||
var scrollParent = getScrollParent(element);
|
||
var isBody = scrollParent === ((_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body);
|
||
var win = getWindow(scrollParent);
|
||
var target = isBody ? [win].concat(win.visualViewport || [], isScrollParent(scrollParent) ? scrollParent : []) : scrollParent;
|
||
var updatedList = list.concat(target);
|
||
return isBody ? updatedList : (
|
||
// $FlowFixMe[incompatible-call]: isBody tells us target will be an HTMLElement here
|
||
updatedList.concat(listScrollParents(getParentNode(target)))
|
||
);
|
||
}
|
||
function isTableElement(element) {
|
||
return ["table", "td", "th"].indexOf(getNodeName(element)) >= 0;
|
||
}
|
||
function getTrueOffsetParent(element) {
|
||
if (!isHTMLElement(element) || // https://github.com/popperjs/popper-core/issues/837
|
||
getComputedStyle2(element).position === "fixed") {
|
||
return null;
|
||
}
|
||
return element.offsetParent;
|
||
}
|
||
function getContainingBlock(element) {
|
||
var isFirefox = navigator.userAgent.toLowerCase().indexOf("firefox") !== -1;
|
||
var isIE = navigator.userAgent.indexOf("Trident") !== -1;
|
||
if (isIE && isHTMLElement(element)) {
|
||
var elementCss = getComputedStyle2(element);
|
||
if (elementCss.position === "fixed") {
|
||
return null;
|
||
}
|
||
}
|
||
var currentNode = getParentNode(element);
|
||
while (isHTMLElement(currentNode) && ["html", "body"].indexOf(getNodeName(currentNode)) < 0) {
|
||
var css = getComputedStyle2(currentNode);
|
||
if (css.transform !== "none" || css.perspective !== "none" || css.contain === "paint" || ["transform", "perspective"].indexOf(css.willChange) !== -1 || isFirefox && css.willChange === "filter" || isFirefox && css.filter && css.filter !== "none") {
|
||
return currentNode;
|
||
} else {
|
||
currentNode = currentNode.parentNode;
|
||
}
|
||
}
|
||
return null;
|
||
}
|
||
function getOffsetParent(element) {
|
||
var window2 = getWindow(element);
|
||
var offsetParent = getTrueOffsetParent(element);
|
||
while (offsetParent && isTableElement(offsetParent) && getComputedStyle2(offsetParent).position === "static") {
|
||
offsetParent = getTrueOffsetParent(offsetParent);
|
||
}
|
||
if (offsetParent && (getNodeName(offsetParent) === "html" || getNodeName(offsetParent) === "body" && getComputedStyle2(offsetParent).position === "static")) {
|
||
return window2;
|
||
}
|
||
return offsetParent || getContainingBlock(element) || window2;
|
||
}
|
||
var top = "top";
|
||
var bottom = "bottom";
|
||
var right = "right";
|
||
var left = "left";
|
||
var auto = "auto";
|
||
var basePlacements = [top, bottom, right, left];
|
||
var start = "start";
|
||
var end = "end";
|
||
var clippingParents = "clippingParents";
|
||
var viewport = "viewport";
|
||
var popper = "popper";
|
||
var reference = "reference";
|
||
var variationPlacements = /* @__PURE__ */ basePlacements.reduce(function(acc, placement) {
|
||
return acc.concat([placement + "-" + start, placement + "-" + end]);
|
||
}, []);
|
||
var placements = /* @__PURE__ */ [].concat(basePlacements, [auto]).reduce(function(acc, placement) {
|
||
return acc.concat([placement, placement + "-" + start, placement + "-" + end]);
|
||
}, []);
|
||
var beforeRead = "beforeRead";
|
||
var read = "read";
|
||
var afterRead = "afterRead";
|
||
var beforeMain = "beforeMain";
|
||
var main = "main";
|
||
var afterMain = "afterMain";
|
||
var beforeWrite = "beforeWrite";
|
||
var write = "write";
|
||
var afterWrite = "afterWrite";
|
||
var modifierPhases = [beforeRead, read, afterRead, beforeMain, main, afterMain, beforeWrite, write, afterWrite];
|
||
function order(modifiers) {
|
||
var map = /* @__PURE__ */ new Map();
|
||
var visited = /* @__PURE__ */ new Set();
|
||
var result = [];
|
||
modifiers.forEach(function(modifier) {
|
||
map.set(modifier.name, modifier);
|
||
});
|
||
function sort(modifier) {
|
||
visited.add(modifier.name);
|
||
var requires = [].concat(modifier.requires || [], modifier.requiresIfExists || []);
|
||
requires.forEach(function(dep) {
|
||
if (!visited.has(dep)) {
|
||
var depModifier = map.get(dep);
|
||
if (depModifier) {
|
||
sort(depModifier);
|
||
}
|
||
}
|
||
});
|
||
result.push(modifier);
|
||
}
|
||
modifiers.forEach(function(modifier) {
|
||
if (!visited.has(modifier.name)) {
|
||
sort(modifier);
|
||
}
|
||
});
|
||
return result;
|
||
}
|
||
function orderModifiers(modifiers) {
|
||
var orderedModifiers = order(modifiers);
|
||
return modifierPhases.reduce(function(acc, phase) {
|
||
return acc.concat(orderedModifiers.filter(function(modifier) {
|
||
return modifier.phase === phase;
|
||
}));
|
||
}, []);
|
||
}
|
||
function debounce(fn) {
|
||
var pending;
|
||
return function() {
|
||
if (!pending) {
|
||
pending = new Promise(function(resolve) {
|
||
Promise.resolve().then(function() {
|
||
pending = void 0;
|
||
resolve(fn());
|
||
});
|
||
});
|
||
}
|
||
return pending;
|
||
};
|
||
}
|
||
function format(str) {
|
||
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
||
args[_key - 1] = arguments[_key];
|
||
}
|
||
return [].concat(args).reduce(function(p, c) {
|
||
return p.replace(/%s/, c);
|
||
}, str);
|
||
}
|
||
var INVALID_MODIFIER_ERROR = 'Popper: modifier "%s" provided an invalid %s property, expected %s but got %s';
|
||
var MISSING_DEPENDENCY_ERROR = 'Popper: modifier "%s" requires "%s", but "%s" modifier is not available';
|
||
var VALID_PROPERTIES = ["name", "enabled", "phase", "fn", "effect", "requires", "options"];
|
||
function validateModifiers(modifiers) {
|
||
modifiers.forEach(function(modifier) {
|
||
[].concat(Object.keys(modifier), VALID_PROPERTIES).filter(function(value, index, self) {
|
||
return self.indexOf(value) === index;
|
||
}).forEach(function(key) {
|
||
switch (key) {
|
||
case "name":
|
||
if (typeof modifier.name !== "string") {
|
||
console.error(format(INVALID_MODIFIER_ERROR, String(modifier.name), '"name"', '"string"', '"' + String(modifier.name) + '"'));
|
||
}
|
||
break;
|
||
case "enabled":
|
||
if (typeof modifier.enabled !== "boolean") {
|
||
console.error(format(INVALID_MODIFIER_ERROR, modifier.name, '"enabled"', '"boolean"', '"' + String(modifier.enabled) + '"'));
|
||
}
|
||
break;
|
||
case "phase":
|
||
if (modifierPhases.indexOf(modifier.phase) < 0) {
|
||
console.error(format(INVALID_MODIFIER_ERROR, modifier.name, '"phase"', "either " + modifierPhases.join(", "), '"' + String(modifier.phase) + '"'));
|
||
}
|
||
break;
|
||
case "fn":
|
||
if (typeof modifier.fn !== "function") {
|
||
console.error(format(INVALID_MODIFIER_ERROR, modifier.name, '"fn"', '"function"', '"' + String(modifier.fn) + '"'));
|
||
}
|
||
break;
|
||
case "effect":
|
||
if (modifier.effect != null && typeof modifier.effect !== "function") {
|
||
console.error(format(INVALID_MODIFIER_ERROR, modifier.name, '"effect"', '"function"', '"' + String(modifier.fn) + '"'));
|
||
}
|
||
break;
|
||
case "requires":
|
||
if (modifier.requires != null && !Array.isArray(modifier.requires)) {
|
||
console.error(format(INVALID_MODIFIER_ERROR, modifier.name, '"requires"', '"array"', '"' + String(modifier.requires) + '"'));
|
||
}
|
||
break;
|
||
case "requiresIfExists":
|
||
if (!Array.isArray(modifier.requiresIfExists)) {
|
||
console.error(format(INVALID_MODIFIER_ERROR, modifier.name, '"requiresIfExists"', '"array"', '"' + String(modifier.requiresIfExists) + '"'));
|
||
}
|
||
break;
|
||
case "options":
|
||
case "data":
|
||
break;
|
||
default:
|
||
console.error('PopperJS: an invalid property has been provided to the "' + modifier.name + '" modifier, valid properties are ' + VALID_PROPERTIES.map(function(s) {
|
||
return '"' + s + '"';
|
||
}).join(", ") + '; but "' + key + '" was provided.');
|
||
}
|
||
modifier.requires && modifier.requires.forEach(function(requirement) {
|
||
if (modifiers.find(function(mod) {
|
||
return mod.name === requirement;
|
||
}) == null) {
|
||
console.error(format(MISSING_DEPENDENCY_ERROR, String(modifier.name), requirement, requirement));
|
||
}
|
||
});
|
||
});
|
||
});
|
||
}
|
||
function uniqueBy(arr, fn) {
|
||
var identifiers = /* @__PURE__ */ new Set();
|
||
return arr.filter(function(item) {
|
||
var identifier = fn(item);
|
||
if (!identifiers.has(identifier)) {
|
||
identifiers.add(identifier);
|
||
return true;
|
||
}
|
||
});
|
||
}
|
||
function getBasePlacement(placement) {
|
||
return placement.split("-")[0];
|
||
}
|
||
function mergeByName(modifiers) {
|
||
var merged = modifiers.reduce(function(merged2, current) {
|
||
var existing = merged2[current.name];
|
||
merged2[current.name] = existing ? Object.assign({}, existing, current, {
|
||
options: Object.assign({}, existing.options, current.options),
|
||
data: Object.assign({}, existing.data, current.data)
|
||
}) : current;
|
||
return merged2;
|
||
}, {});
|
||
return Object.keys(merged).map(function(key) {
|
||
return merged[key];
|
||
});
|
||
}
|
||
function getViewportRect(element) {
|
||
var win = getWindow(element);
|
||
var html = getDocumentElement(element);
|
||
var visualViewport = win.visualViewport;
|
||
var width = html.clientWidth;
|
||
var height = html.clientHeight;
|
||
var x = 0;
|
||
var y = 0;
|
||
if (visualViewport) {
|
||
width = visualViewport.width;
|
||
height = visualViewport.height;
|
||
if (!/^((?!chrome|android).)*safari/i.test(navigator.userAgent)) {
|
||
x = visualViewport.offsetLeft;
|
||
y = visualViewport.offsetTop;
|
||
}
|
||
}
|
||
return {
|
||
width,
|
||
height,
|
||
x: x + getWindowScrollBarX(element),
|
||
y
|
||
};
|
||
}
|
||
function getDocumentRect(element) {
|
||
var _element$ownerDocumen;
|
||
var html = getDocumentElement(element);
|
||
var winScroll = getWindowScroll(element);
|
||
var body = (_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body;
|
||
var width = max(html.scrollWidth, html.clientWidth, body ? body.scrollWidth : 0, body ? body.clientWidth : 0);
|
||
var height = max(html.scrollHeight, html.clientHeight, body ? body.scrollHeight : 0, body ? body.clientHeight : 0);
|
||
var x = -winScroll.scrollLeft + getWindowScrollBarX(element);
|
||
var y = -winScroll.scrollTop;
|
||
if (getComputedStyle2(body || html).direction === "rtl") {
|
||
x += max(html.clientWidth, body ? body.clientWidth : 0) - width;
|
||
}
|
||
return {
|
||
width,
|
||
height,
|
||
x,
|
||
y
|
||
};
|
||
}
|
||
function contains(parent, child) {
|
||
var rootNode = child.getRootNode && child.getRootNode();
|
||
if (parent.contains(child)) {
|
||
return true;
|
||
} else if (rootNode && isShadowRoot(rootNode)) {
|
||
var next = child;
|
||
do {
|
||
if (next && parent.isSameNode(next)) {
|
||
return true;
|
||
}
|
||
next = next.parentNode || next.host;
|
||
} while (next);
|
||
}
|
||
return false;
|
||
}
|
||
function rectToClientRect(rect) {
|
||
return Object.assign({}, rect, {
|
||
left: rect.x,
|
||
top: rect.y,
|
||
right: rect.x + rect.width,
|
||
bottom: rect.y + rect.height
|
||
});
|
||
}
|
||
function getInnerBoundingClientRect(element) {
|
||
var rect = getBoundingClientRect(element);
|
||
rect.top = rect.top + element.clientTop;
|
||
rect.left = rect.left + element.clientLeft;
|
||
rect.bottom = rect.top + element.clientHeight;
|
||
rect.right = rect.left + element.clientWidth;
|
||
rect.width = element.clientWidth;
|
||
rect.height = element.clientHeight;
|
||
rect.x = rect.left;
|
||
rect.y = rect.top;
|
||
return rect;
|
||
}
|
||
function getClientRectFromMixedType(element, clippingParent) {
|
||
return clippingParent === viewport ? rectToClientRect(getViewportRect(element)) : isElement2(clippingParent) ? getInnerBoundingClientRect(clippingParent) : rectToClientRect(getDocumentRect(getDocumentElement(element)));
|
||
}
|
||
function getClippingParents(element) {
|
||
var clippingParents2 = listScrollParents(getParentNode(element));
|
||
var canEscapeClipping = ["absolute", "fixed"].indexOf(getComputedStyle2(element).position) >= 0;
|
||
var clipperElement = canEscapeClipping && isHTMLElement(element) ? getOffsetParent(element) : element;
|
||
if (!isElement2(clipperElement)) {
|
||
return [];
|
||
}
|
||
return clippingParents2.filter(function(clippingParent) {
|
||
return isElement2(clippingParent) && contains(clippingParent, clipperElement) && getNodeName(clippingParent) !== "body" && (canEscapeClipping ? getComputedStyle2(clippingParent).position !== "static" : true);
|
||
});
|
||
}
|
||
function getClippingRect(element, boundary, rootBoundary) {
|
||
var mainClippingParents = boundary === "clippingParents" ? getClippingParents(element) : [].concat(boundary);
|
||
var clippingParents2 = [].concat(mainClippingParents, [rootBoundary]);
|
||
var firstClippingParent = clippingParents2[0];
|
||
var clippingRect = clippingParents2.reduce(function(accRect, clippingParent) {
|
||
var rect = getClientRectFromMixedType(element, clippingParent);
|
||
accRect.top = max(rect.top, accRect.top);
|
||
accRect.right = min(rect.right, accRect.right);
|
||
accRect.bottom = min(rect.bottom, accRect.bottom);
|
||
accRect.left = max(rect.left, accRect.left);
|
||
return accRect;
|
||
}, getClientRectFromMixedType(element, firstClippingParent));
|
||
clippingRect.width = clippingRect.right - clippingRect.left;
|
||
clippingRect.height = clippingRect.bottom - clippingRect.top;
|
||
clippingRect.x = clippingRect.left;
|
||
clippingRect.y = clippingRect.top;
|
||
return clippingRect;
|
||
}
|
||
function getVariation(placement) {
|
||
return placement.split("-")[1];
|
||
}
|
||
function getMainAxisFromPlacement(placement) {
|
||
return ["top", "bottom"].indexOf(placement) >= 0 ? "x" : "y";
|
||
}
|
||
function computeOffsets(_ref) {
|
||
var reference2 = _ref.reference, element = _ref.element, placement = _ref.placement;
|
||
var basePlacement = placement ? getBasePlacement(placement) : null;
|
||
var variation = placement ? getVariation(placement) : null;
|
||
var commonX = reference2.x + reference2.width / 2 - element.width / 2;
|
||
var commonY = reference2.y + reference2.height / 2 - element.height / 2;
|
||
var offsets;
|
||
switch (basePlacement) {
|
||
case top:
|
||
offsets = {
|
||
x: commonX,
|
||
y: reference2.y - element.height
|
||
};
|
||
break;
|
||
case bottom:
|
||
offsets = {
|
||
x: commonX,
|
||
y: reference2.y + reference2.height
|
||
};
|
||
break;
|
||
case right:
|
||
offsets = {
|
||
x: reference2.x + reference2.width,
|
||
y: commonY
|
||
};
|
||
break;
|
||
case left:
|
||
offsets = {
|
||
x: reference2.x - element.width,
|
||
y: commonY
|
||
};
|
||
break;
|
||
default:
|
||
offsets = {
|
||
x: reference2.x,
|
||
y: reference2.y
|
||
};
|
||
}
|
||
var mainAxis = basePlacement ? getMainAxisFromPlacement(basePlacement) : null;
|
||
if (mainAxis != null) {
|
||
var len = mainAxis === "y" ? "height" : "width";
|
||
switch (variation) {
|
||
case start:
|
||
offsets[mainAxis] = offsets[mainAxis] - (reference2[len] / 2 - element[len] / 2);
|
||
break;
|
||
case end:
|
||
offsets[mainAxis] = offsets[mainAxis] + (reference2[len] / 2 - element[len] / 2);
|
||
break;
|
||
}
|
||
}
|
||
return offsets;
|
||
}
|
||
function getFreshSideObject() {
|
||
return {
|
||
top: 0,
|
||
right: 0,
|
||
bottom: 0,
|
||
left: 0
|
||
};
|
||
}
|
||
function mergePaddingObject(paddingObject) {
|
||
return Object.assign({}, getFreshSideObject(), paddingObject);
|
||
}
|
||
function expandToHashMap(value, keys) {
|
||
return keys.reduce(function(hashMap, key) {
|
||
hashMap[key] = value;
|
||
return hashMap;
|
||
}, {});
|
||
}
|
||
function detectOverflow(state, options) {
|
||
if (options === void 0) {
|
||
options = {};
|
||
}
|
||
var _options = options, _options$placement = _options.placement, placement = _options$placement === void 0 ? state.placement : _options$placement, _options$boundary = _options.boundary, boundary = _options$boundary === void 0 ? clippingParents : _options$boundary, _options$rootBoundary = _options.rootBoundary, rootBoundary = _options$rootBoundary === void 0 ? viewport : _options$rootBoundary, _options$elementConte = _options.elementContext, elementContext = _options$elementConte === void 0 ? popper : _options$elementConte, _options$altBoundary = _options.altBoundary, altBoundary = _options$altBoundary === void 0 ? false : _options$altBoundary, _options$padding = _options.padding, padding = _options$padding === void 0 ? 0 : _options$padding;
|
||
var paddingObject = mergePaddingObject(typeof padding !== "number" ? padding : expandToHashMap(padding, basePlacements));
|
||
var altContext = elementContext === popper ? reference : popper;
|
||
var popperRect = state.rects.popper;
|
||
var element = state.elements[altBoundary ? altContext : elementContext];
|
||
var clippingClientRect = getClippingRect(isElement2(element) ? element : element.contextElement || getDocumentElement(state.elements.popper), boundary, rootBoundary);
|
||
var referenceClientRect = getBoundingClientRect(state.elements.reference);
|
||
var popperOffsets2 = computeOffsets({
|
||
reference: referenceClientRect,
|
||
element: popperRect,
|
||
strategy: "absolute",
|
||
placement
|
||
});
|
||
var popperClientRect = rectToClientRect(Object.assign({}, popperRect, popperOffsets2));
|
||
var elementClientRect = elementContext === popper ? popperClientRect : referenceClientRect;
|
||
var overflowOffsets = {
|
||
top: clippingClientRect.top - elementClientRect.top + paddingObject.top,
|
||
bottom: elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom,
|
||
left: clippingClientRect.left - elementClientRect.left + paddingObject.left,
|
||
right: elementClientRect.right - clippingClientRect.right + paddingObject.right
|
||
};
|
||
var offsetData = state.modifiersData.offset;
|
||
if (elementContext === popper && offsetData) {
|
||
var offset2 = offsetData[placement];
|
||
Object.keys(overflowOffsets).forEach(function(key) {
|
||
var multiply = [right, bottom].indexOf(key) >= 0 ? 1 : -1;
|
||
var axis = [top, bottom].indexOf(key) >= 0 ? "y" : "x";
|
||
overflowOffsets[key] += offset2[axis] * multiply;
|
||
});
|
||
}
|
||
return overflowOffsets;
|
||
}
|
||
var INVALID_ELEMENT_ERROR = "Popper: Invalid reference or popper argument provided. They must be either a DOM element or virtual element.";
|
||
var INFINITE_LOOP_ERROR = "Popper: An infinite loop in the modifiers cycle has been detected! The cycle has been interrupted to prevent a browser crash.";
|
||
var DEFAULT_OPTIONS = {
|
||
placement: "bottom",
|
||
modifiers: [],
|
||
strategy: "absolute"
|
||
};
|
||
function areValidElements() {
|
||
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
||
args[_key] = arguments[_key];
|
||
}
|
||
return !args.some(function(element) {
|
||
return !(element && typeof element.getBoundingClientRect === "function");
|
||
});
|
||
}
|
||
function popperGenerator(generatorOptions) {
|
||
if (generatorOptions === void 0) {
|
||
generatorOptions = {};
|
||
}
|
||
var _generatorOptions = generatorOptions, _generatorOptions$def = _generatorOptions.defaultModifiers, defaultModifiers2 = _generatorOptions$def === void 0 ? [] : _generatorOptions$def, _generatorOptions$def2 = _generatorOptions.defaultOptions, defaultOptions = _generatorOptions$def2 === void 0 ? DEFAULT_OPTIONS : _generatorOptions$def2;
|
||
return function createPopper3(reference2, popper2, options) {
|
||
if (options === void 0) {
|
||
options = defaultOptions;
|
||
}
|
||
var state = {
|
||
placement: "bottom",
|
||
orderedModifiers: [],
|
||
options: Object.assign({}, DEFAULT_OPTIONS, defaultOptions),
|
||
modifiersData: {},
|
||
elements: {
|
||
reference: reference2,
|
||
popper: popper2
|
||
},
|
||
attributes: {},
|
||
styles: {}
|
||
};
|
||
var effectCleanupFns = [];
|
||
var isDestroyed = false;
|
||
var instance = {
|
||
state,
|
||
setOptions: function setOptions(setOptionsAction) {
|
||
var options2 = typeof setOptionsAction === "function" ? setOptionsAction(state.options) : setOptionsAction;
|
||
cleanupModifierEffects();
|
||
state.options = Object.assign({}, defaultOptions, state.options, options2);
|
||
state.scrollParents = {
|
||
reference: isElement2(reference2) ? listScrollParents(reference2) : reference2.contextElement ? listScrollParents(reference2.contextElement) : [],
|
||
popper: listScrollParents(popper2)
|
||
};
|
||
var orderedModifiers = orderModifiers(mergeByName([].concat(defaultModifiers2, state.options.modifiers)));
|
||
state.orderedModifiers = orderedModifiers.filter(function(m) {
|
||
return m.enabled;
|
||
});
|
||
if (true) {
|
||
var modifiers = uniqueBy([].concat(orderedModifiers, state.options.modifiers), function(_ref) {
|
||
var name = _ref.name;
|
||
return name;
|
||
});
|
||
validateModifiers(modifiers);
|
||
if (getBasePlacement(state.options.placement) === auto) {
|
||
var flipModifier = state.orderedModifiers.find(function(_ref2) {
|
||
var name = _ref2.name;
|
||
return name === "flip";
|
||
});
|
||
if (!flipModifier) {
|
||
console.error(['Popper: "auto" placements require the "flip" modifier be', "present and enabled to work."].join(" "));
|
||
}
|
||
}
|
||
var _getComputedStyle = getComputedStyle2(popper2), marginTop = _getComputedStyle.marginTop, marginRight = _getComputedStyle.marginRight, marginBottom = _getComputedStyle.marginBottom, marginLeft = _getComputedStyle.marginLeft;
|
||
if ([marginTop, marginRight, marginBottom, marginLeft].some(function(margin) {
|
||
return parseFloat(margin);
|
||
})) {
|
||
console.warn(['Popper: CSS "margin" styles cannot be used to apply padding', "between the popper and its reference element or boundary.", "To replicate margin, use the `offset` modifier, as well as", "the `padding` option in the `preventOverflow` and `flip`", "modifiers."].join(" "));
|
||
}
|
||
}
|
||
runModifierEffects();
|
||
return instance.update();
|
||
},
|
||
// Sync update – it will always be executed, even if not necessary. This
|
||
// is useful for low frequency updates where sync behavior simplifies the
|
||
// logic.
|
||
// For high frequency updates (e.g. `resize` and `scroll` events), always
|
||
// prefer the async Popper#update method
|
||
forceUpdate: function forceUpdate() {
|
||
if (isDestroyed) {
|
||
return;
|
||
}
|
||
var _state$elements = state.elements, reference3 = _state$elements.reference, popper3 = _state$elements.popper;
|
||
if (!areValidElements(reference3, popper3)) {
|
||
if (true) {
|
||
console.error(INVALID_ELEMENT_ERROR);
|
||
}
|
||
return;
|
||
}
|
||
state.rects = {
|
||
reference: getCompositeRect(reference3, getOffsetParent(popper3), state.options.strategy === "fixed"),
|
||
popper: getLayoutRect(popper3)
|
||
};
|
||
state.reset = false;
|
||
state.placement = state.options.placement;
|
||
state.orderedModifiers.forEach(function(modifier) {
|
||
return state.modifiersData[modifier.name] = Object.assign({}, modifier.data);
|
||
});
|
||
var __debug_loops__ = 0;
|
||
for (var index = 0; index < state.orderedModifiers.length; index++) {
|
||
if (true) {
|
||
__debug_loops__ += 1;
|
||
if (__debug_loops__ > 100) {
|
||
console.error(INFINITE_LOOP_ERROR);
|
||
break;
|
||
}
|
||
}
|
||
if (state.reset === true) {
|
||
state.reset = false;
|
||
index = -1;
|
||
continue;
|
||
}
|
||
var _state$orderedModifie = state.orderedModifiers[index], fn = _state$orderedModifie.fn, _state$orderedModifie2 = _state$orderedModifie.options, _options = _state$orderedModifie2 === void 0 ? {} : _state$orderedModifie2, name = _state$orderedModifie.name;
|
||
if (typeof fn === "function") {
|
||
state = fn({
|
||
state,
|
||
options: _options,
|
||
name,
|
||
instance
|
||
}) || state;
|
||
}
|
||
}
|
||
},
|
||
// Async and optimistically optimized update – it will not be executed if
|
||
// not necessary (debounced to run at most once-per-tick)
|
||
update: debounce(function() {
|
||
return new Promise(function(resolve) {
|
||
instance.forceUpdate();
|
||
resolve(state);
|
||
});
|
||
}),
|
||
destroy: function destroy() {
|
||
cleanupModifierEffects();
|
||
isDestroyed = true;
|
||
}
|
||
};
|
||
if (!areValidElements(reference2, popper2)) {
|
||
if (true) {
|
||
console.error(INVALID_ELEMENT_ERROR);
|
||
}
|
||
return instance;
|
||
}
|
||
instance.setOptions(options).then(function(state2) {
|
||
if (!isDestroyed && options.onFirstUpdate) {
|
||
options.onFirstUpdate(state2);
|
||
}
|
||
});
|
||
function runModifierEffects() {
|
||
state.orderedModifiers.forEach(function(_ref3) {
|
||
var name = _ref3.name, _ref3$options = _ref3.options, options2 = _ref3$options === void 0 ? {} : _ref3$options, effect2 = _ref3.effect;
|
||
if (typeof effect2 === "function") {
|
||
var cleanupFn = effect2({
|
||
state,
|
||
name,
|
||
instance,
|
||
options: options2
|
||
});
|
||
var noopFn = function noopFn2() {
|
||
};
|
||
effectCleanupFns.push(cleanupFn || noopFn);
|
||
}
|
||
});
|
||
}
|
||
function cleanupModifierEffects() {
|
||
effectCleanupFns.forEach(function(fn) {
|
||
return fn();
|
||
});
|
||
effectCleanupFns = [];
|
||
}
|
||
return instance;
|
||
};
|
||
}
|
||
var passive = {
|
||
passive: true
|
||
};
|
||
function effect$2(_ref) {
|
||
var state = _ref.state, instance = _ref.instance, options = _ref.options;
|
||
var _options$scroll = options.scroll, scroll = _options$scroll === void 0 ? true : _options$scroll, _options$resize = options.resize, resize = _options$resize === void 0 ? true : _options$resize;
|
||
var window2 = getWindow(state.elements.popper);
|
||
var scrollParents = [].concat(state.scrollParents.reference, state.scrollParents.popper);
|
||
if (scroll) {
|
||
scrollParents.forEach(function(scrollParent) {
|
||
scrollParent.addEventListener("scroll", instance.update, passive);
|
||
});
|
||
}
|
||
if (resize) {
|
||
window2.addEventListener("resize", instance.update, passive);
|
||
}
|
||
return function() {
|
||
if (scroll) {
|
||
scrollParents.forEach(function(scrollParent) {
|
||
scrollParent.removeEventListener("scroll", instance.update, passive);
|
||
});
|
||
}
|
||
if (resize) {
|
||
window2.removeEventListener("resize", instance.update, passive);
|
||
}
|
||
};
|
||
}
|
||
var eventListeners = {
|
||
name: "eventListeners",
|
||
enabled: true,
|
||
phase: "write",
|
||
fn: function fn() {
|
||
},
|
||
effect: effect$2,
|
||
data: {}
|
||
};
|
||
function popperOffsets(_ref) {
|
||
var state = _ref.state, name = _ref.name;
|
||
state.modifiersData[name] = computeOffsets({
|
||
reference: state.rects.reference,
|
||
element: state.rects.popper,
|
||
strategy: "absolute",
|
||
placement: state.placement
|
||
});
|
||
}
|
||
var popperOffsets$1 = {
|
||
name: "popperOffsets",
|
||
enabled: true,
|
||
phase: "read",
|
||
fn: popperOffsets,
|
||
data: {}
|
||
};
|
||
var unsetSides = {
|
||
top: "auto",
|
||
right: "auto",
|
||
bottom: "auto",
|
||
left: "auto"
|
||
};
|
||
function roundOffsetsByDPR(_ref) {
|
||
var x = _ref.x, y = _ref.y;
|
||
var win = window;
|
||
var dpr = win.devicePixelRatio || 1;
|
||
return {
|
||
x: round(x * dpr) / dpr || 0,
|
||
y: round(y * dpr) / dpr || 0
|
||
};
|
||
}
|
||
function mapToStyles(_ref2) {
|
||
var _Object$assign2;
|
||
var popper2 = _ref2.popper, popperRect = _ref2.popperRect, placement = _ref2.placement, variation = _ref2.variation, offsets = _ref2.offsets, position = _ref2.position, gpuAcceleration = _ref2.gpuAcceleration, adaptive = _ref2.adaptive, roundOffsets = _ref2.roundOffsets, isFixed = _ref2.isFixed;
|
||
var _ref3 = roundOffsets === true ? roundOffsetsByDPR(offsets) : typeof roundOffsets === "function" ? roundOffsets(offsets) : offsets, _ref3$x = _ref3.x, x = _ref3$x === void 0 ? 0 : _ref3$x, _ref3$y = _ref3.y, y = _ref3$y === void 0 ? 0 : _ref3$y;
|
||
var hasX = offsets.hasOwnProperty("x");
|
||
var hasY = offsets.hasOwnProperty("y");
|
||
var sideX = left;
|
||
var sideY = top;
|
||
var win = window;
|
||
if (adaptive) {
|
||
var offsetParent = getOffsetParent(popper2);
|
||
var heightProp = "clientHeight";
|
||
var widthProp = "clientWidth";
|
||
if (offsetParent === getWindow(popper2)) {
|
||
offsetParent = getDocumentElement(popper2);
|
||
if (getComputedStyle2(offsetParent).position !== "static" && position === "absolute") {
|
||
heightProp = "scrollHeight";
|
||
widthProp = "scrollWidth";
|
||
}
|
||
}
|
||
offsetParent = offsetParent;
|
||
if (placement === top || (placement === left || placement === right) && variation === end) {
|
||
sideY = bottom;
|
||
var offsetY = isFixed && win.visualViewport ? win.visualViewport.height : (
|
||
// $FlowFixMe[prop-missing]
|
||
offsetParent[heightProp]
|
||
);
|
||
y -= offsetY - popperRect.height;
|
||
y *= gpuAcceleration ? 1 : -1;
|
||
}
|
||
if (placement === left || (placement === top || placement === bottom) && variation === end) {
|
||
sideX = right;
|
||
var offsetX = isFixed && win.visualViewport ? win.visualViewport.width : (
|
||
// $FlowFixMe[prop-missing]
|
||
offsetParent[widthProp]
|
||
);
|
||
x -= offsetX - popperRect.width;
|
||
x *= gpuAcceleration ? 1 : -1;
|
||
}
|
||
}
|
||
var commonStyles = Object.assign({
|
||
position
|
||
}, adaptive && unsetSides);
|
||
if (gpuAcceleration) {
|
||
var _Object$assign;
|
||
return Object.assign({}, commonStyles, (_Object$assign = {}, _Object$assign[sideY] = hasY ? "0" : "", _Object$assign[sideX] = hasX ? "0" : "", _Object$assign.transform = (win.devicePixelRatio || 1) <= 1 ? "translate(" + x + "px, " + y + "px)" : "translate3d(" + x + "px, " + y + "px, 0)", _Object$assign));
|
||
}
|
||
return Object.assign({}, commonStyles, (_Object$assign2 = {}, _Object$assign2[sideY] = hasY ? y + "px" : "", _Object$assign2[sideX] = hasX ? x + "px" : "", _Object$assign2.transform = "", _Object$assign2));
|
||
}
|
||
function computeStyles(_ref4) {
|
||
var state = _ref4.state, options = _ref4.options;
|
||
var _options$gpuAccelerat = options.gpuAcceleration, gpuAcceleration = _options$gpuAccelerat === void 0 ? true : _options$gpuAccelerat, _options$adaptive = options.adaptive, adaptive = _options$adaptive === void 0 ? true : _options$adaptive, _options$roundOffsets = options.roundOffsets, roundOffsets = _options$roundOffsets === void 0 ? true : _options$roundOffsets;
|
||
if (true) {
|
||
var transitionProperty = getComputedStyle2(state.elements.popper).transitionProperty || "";
|
||
if (adaptive && ["transform", "top", "right", "bottom", "left"].some(function(property) {
|
||
return transitionProperty.indexOf(property) >= 0;
|
||
})) {
|
||
console.warn(["Popper: Detected CSS transitions on at least one of the following", 'CSS properties: "transform", "top", "right", "bottom", "left".', "\n\n", 'Disable the "computeStyles" modifier\'s `adaptive` option to allow', "for smooth transitions, or remove these properties from the CSS", "transition declaration on the popper element if only transitioning", "opacity or background-color for example.", "\n\n", "We recommend using the popper element as a wrapper around an inner", "element that can have any CSS property transitioned for animations."].join(" "));
|
||
}
|
||
}
|
||
var commonStyles = {
|
||
placement: getBasePlacement(state.placement),
|
||
variation: getVariation(state.placement),
|
||
popper: state.elements.popper,
|
||
popperRect: state.rects.popper,
|
||
gpuAcceleration,
|
||
isFixed: state.options.strategy === "fixed"
|
||
};
|
||
if (state.modifiersData.popperOffsets != null) {
|
||
state.styles.popper = Object.assign({}, state.styles.popper, mapToStyles(Object.assign({}, commonStyles, {
|
||
offsets: state.modifiersData.popperOffsets,
|
||
position: state.options.strategy,
|
||
adaptive,
|
||
roundOffsets
|
||
})));
|
||
}
|
||
if (state.modifiersData.arrow != null) {
|
||
state.styles.arrow = Object.assign({}, state.styles.arrow, mapToStyles(Object.assign({}, commonStyles, {
|
||
offsets: state.modifiersData.arrow,
|
||
position: "absolute",
|
||
adaptive: false,
|
||
roundOffsets
|
||
})));
|
||
}
|
||
state.attributes.popper = Object.assign({}, state.attributes.popper, {
|
||
"data-popper-placement": state.placement
|
||
});
|
||
}
|
||
var computeStyles$1 = {
|
||
name: "computeStyles",
|
||
enabled: true,
|
||
phase: "beforeWrite",
|
||
fn: computeStyles,
|
||
data: {}
|
||
};
|
||
function applyStyles(_ref) {
|
||
var state = _ref.state;
|
||
Object.keys(state.elements).forEach(function(name) {
|
||
var style = state.styles[name] || {};
|
||
var attributes = state.attributes[name] || {};
|
||
var element = state.elements[name];
|
||
if (!isHTMLElement(element) || !getNodeName(element)) {
|
||
return;
|
||
}
|
||
Object.assign(element.style, style);
|
||
Object.keys(attributes).forEach(function(name2) {
|
||
var value = attributes[name2];
|
||
if (value === false) {
|
||
element.removeAttribute(name2);
|
||
} else {
|
||
element.setAttribute(name2, value === true ? "" : value);
|
||
}
|
||
});
|
||
});
|
||
}
|
||
function effect$1(_ref2) {
|
||
var state = _ref2.state;
|
||
var initialStyles = {
|
||
popper: {
|
||
position: state.options.strategy,
|
||
left: "0",
|
||
top: "0",
|
||
margin: "0"
|
||
},
|
||
arrow: {
|
||
position: "absolute"
|
||
},
|
||
reference: {}
|
||
};
|
||
Object.assign(state.elements.popper.style, initialStyles.popper);
|
||
state.styles = initialStyles;
|
||
if (state.elements.arrow) {
|
||
Object.assign(state.elements.arrow.style, initialStyles.arrow);
|
||
}
|
||
return function() {
|
||
Object.keys(state.elements).forEach(function(name) {
|
||
var element = state.elements[name];
|
||
var attributes = state.attributes[name] || {};
|
||
var styleProperties = Object.keys(state.styles.hasOwnProperty(name) ? state.styles[name] : initialStyles[name]);
|
||
var style = styleProperties.reduce(function(style2, property) {
|
||
style2[property] = "";
|
||
return style2;
|
||
}, {});
|
||
if (!isHTMLElement(element) || !getNodeName(element)) {
|
||
return;
|
||
}
|
||
Object.assign(element.style, style);
|
||
Object.keys(attributes).forEach(function(attribute) {
|
||
element.removeAttribute(attribute);
|
||
});
|
||
});
|
||
};
|
||
}
|
||
var applyStyles$1 = {
|
||
name: "applyStyles",
|
||
enabled: true,
|
||
phase: "write",
|
||
fn: applyStyles,
|
||
effect: effect$1,
|
||
requires: ["computeStyles"]
|
||
};
|
||
function distanceAndSkiddingToXY(placement, rects, offset2) {
|
||
var basePlacement = getBasePlacement(placement);
|
||
var invertDistance = [left, top].indexOf(basePlacement) >= 0 ? -1 : 1;
|
||
var _ref = typeof offset2 === "function" ? offset2(Object.assign({}, rects, {
|
||
placement
|
||
})) : offset2, skidding = _ref[0], distance = _ref[1];
|
||
skidding = skidding || 0;
|
||
distance = (distance || 0) * invertDistance;
|
||
return [left, right].indexOf(basePlacement) >= 0 ? {
|
||
x: distance,
|
||
y: skidding
|
||
} : {
|
||
x: skidding,
|
||
y: distance
|
||
};
|
||
}
|
||
function offset(_ref2) {
|
||
var state = _ref2.state, options = _ref2.options, name = _ref2.name;
|
||
var _options$offset = options.offset, offset2 = _options$offset === void 0 ? [0, 0] : _options$offset;
|
||
var data = placements.reduce(function(acc, placement) {
|
||
acc[placement] = distanceAndSkiddingToXY(placement, state.rects, offset2);
|
||
return acc;
|
||
}, {});
|
||
var _data$state$placement = data[state.placement], x = _data$state$placement.x, y = _data$state$placement.y;
|
||
if (state.modifiersData.popperOffsets != null) {
|
||
state.modifiersData.popperOffsets.x += x;
|
||
state.modifiersData.popperOffsets.y += y;
|
||
}
|
||
state.modifiersData[name] = data;
|
||
}
|
||
var offset$1 = {
|
||
name: "offset",
|
||
enabled: true,
|
||
phase: "main",
|
||
requires: ["popperOffsets"],
|
||
fn: offset
|
||
};
|
||
var hash$1 = {
|
||
left: "right",
|
||
right: "left",
|
||
bottom: "top",
|
||
top: "bottom"
|
||
};
|
||
function getOppositePlacement(placement) {
|
||
return placement.replace(/left|right|bottom|top/g, function(matched) {
|
||
return hash$1[matched];
|
||
});
|
||
}
|
||
var hash = {
|
||
start: "end",
|
||
end: "start"
|
||
};
|
||
function getOppositeVariationPlacement(placement) {
|
||
return placement.replace(/start|end/g, function(matched) {
|
||
return hash[matched];
|
||
});
|
||
}
|
||
function computeAutoPlacement(state, options) {
|
||
if (options === void 0) {
|
||
options = {};
|
||
}
|
||
var _options = options, placement = _options.placement, boundary = _options.boundary, rootBoundary = _options.rootBoundary, padding = _options.padding, flipVariations = _options.flipVariations, _options$allowedAutoP = _options.allowedAutoPlacements, allowedAutoPlacements = _options$allowedAutoP === void 0 ? placements : _options$allowedAutoP;
|
||
var variation = getVariation(placement);
|
||
var placements$1 = variation ? flipVariations ? variationPlacements : variationPlacements.filter(function(placement2) {
|
||
return getVariation(placement2) === variation;
|
||
}) : basePlacements;
|
||
var allowedPlacements = placements$1.filter(function(placement2) {
|
||
return allowedAutoPlacements.indexOf(placement2) >= 0;
|
||
});
|
||
if (allowedPlacements.length === 0) {
|
||
allowedPlacements = placements$1;
|
||
if (true) {
|
||
console.error(["Popper: The `allowedAutoPlacements` option did not allow any", "placements. Ensure the `placement` option matches the variation", "of the allowed placements.", 'For example, "auto" cannot be used to allow "bottom-start".', 'Use "auto-start" instead.'].join(" "));
|
||
}
|
||
}
|
||
var overflows = allowedPlacements.reduce(function(acc, placement2) {
|
||
acc[placement2] = detectOverflow(state, {
|
||
placement: placement2,
|
||
boundary,
|
||
rootBoundary,
|
||
padding
|
||
})[getBasePlacement(placement2)];
|
||
return acc;
|
||
}, {});
|
||
return Object.keys(overflows).sort(function(a, b) {
|
||
return overflows[a] - overflows[b];
|
||
});
|
||
}
|
||
function getExpandedFallbackPlacements(placement) {
|
||
if (getBasePlacement(placement) === auto) {
|
||
return [];
|
||
}
|
||
var oppositePlacement = getOppositePlacement(placement);
|
||
return [getOppositeVariationPlacement(placement), oppositePlacement, getOppositeVariationPlacement(oppositePlacement)];
|
||
}
|
||
function flip(_ref) {
|
||
var state = _ref.state, options = _ref.options, name = _ref.name;
|
||
if (state.modifiersData[name]._skip) {
|
||
return;
|
||
}
|
||
var _options$mainAxis = options.mainAxis, checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis, _options$altAxis = options.altAxis, checkAltAxis = _options$altAxis === void 0 ? true : _options$altAxis, specifiedFallbackPlacements = options.fallbackPlacements, padding = options.padding, boundary = options.boundary, rootBoundary = options.rootBoundary, altBoundary = options.altBoundary, _options$flipVariatio = options.flipVariations, flipVariations = _options$flipVariatio === void 0 ? true : _options$flipVariatio, allowedAutoPlacements = options.allowedAutoPlacements;
|
||
var preferredPlacement = state.options.placement;
|
||
var basePlacement = getBasePlacement(preferredPlacement);
|
||
var isBasePlacement = basePlacement === preferredPlacement;
|
||
var fallbackPlacements = specifiedFallbackPlacements || (isBasePlacement || !flipVariations ? [getOppositePlacement(preferredPlacement)] : getExpandedFallbackPlacements(preferredPlacement));
|
||
var placements2 = [preferredPlacement].concat(fallbackPlacements).reduce(function(acc, placement2) {
|
||
return acc.concat(getBasePlacement(placement2) === auto ? computeAutoPlacement(state, {
|
||
placement: placement2,
|
||
boundary,
|
||
rootBoundary,
|
||
padding,
|
||
flipVariations,
|
||
allowedAutoPlacements
|
||
}) : placement2);
|
||
}, []);
|
||
var referenceRect = state.rects.reference;
|
||
var popperRect = state.rects.popper;
|
||
var checksMap = /* @__PURE__ */ new Map();
|
||
var makeFallbackChecks = true;
|
||
var firstFittingPlacement = placements2[0];
|
||
for (var i = 0; i < placements2.length; i++) {
|
||
var placement = placements2[i];
|
||
var _basePlacement = getBasePlacement(placement);
|
||
var isStartVariation = getVariation(placement) === start;
|
||
var isVertical = [top, bottom].indexOf(_basePlacement) >= 0;
|
||
var len = isVertical ? "width" : "height";
|
||
var overflow = detectOverflow(state, {
|
||
placement,
|
||
boundary,
|
||
rootBoundary,
|
||
altBoundary,
|
||
padding
|
||
});
|
||
var mainVariationSide = isVertical ? isStartVariation ? right : left : isStartVariation ? bottom : top;
|
||
if (referenceRect[len] > popperRect[len]) {
|
||
mainVariationSide = getOppositePlacement(mainVariationSide);
|
||
}
|
||
var altVariationSide = getOppositePlacement(mainVariationSide);
|
||
var checks = [];
|
||
if (checkMainAxis) {
|
||
checks.push(overflow[_basePlacement] <= 0);
|
||
}
|
||
if (checkAltAxis) {
|
||
checks.push(overflow[mainVariationSide] <= 0, overflow[altVariationSide] <= 0);
|
||
}
|
||
if (checks.every(function(check) {
|
||
return check;
|
||
})) {
|
||
firstFittingPlacement = placement;
|
||
makeFallbackChecks = false;
|
||
break;
|
||
}
|
||
checksMap.set(placement, checks);
|
||
}
|
||
if (makeFallbackChecks) {
|
||
var numberOfChecks = flipVariations ? 3 : 1;
|
||
var _loop = function _loop2(_i2) {
|
||
var fittingPlacement = placements2.find(function(placement2) {
|
||
var checks2 = checksMap.get(placement2);
|
||
if (checks2) {
|
||
return checks2.slice(0, _i2).every(function(check) {
|
||
return check;
|
||
});
|
||
}
|
||
});
|
||
if (fittingPlacement) {
|
||
firstFittingPlacement = fittingPlacement;
|
||
return "break";
|
||
}
|
||
};
|
||
for (var _i = numberOfChecks; _i > 0; _i--) {
|
||
var _ret = _loop(_i);
|
||
if (_ret === "break") break;
|
||
}
|
||
}
|
||
if (state.placement !== firstFittingPlacement) {
|
||
state.modifiersData[name]._skip = true;
|
||
state.placement = firstFittingPlacement;
|
||
state.reset = true;
|
||
}
|
||
}
|
||
var flip$1 = {
|
||
name: "flip",
|
||
enabled: true,
|
||
phase: "main",
|
||
fn: flip,
|
||
requiresIfExists: ["offset"],
|
||
data: {
|
||
_skip: false
|
||
}
|
||
};
|
||
function getAltAxis(axis) {
|
||
return axis === "x" ? "y" : "x";
|
||
}
|
||
function within(min$1, value, max$1) {
|
||
return max(min$1, min(value, max$1));
|
||
}
|
||
function withinMaxClamp(min2, value, max2) {
|
||
var v = within(min2, value, max2);
|
||
return v > max2 ? max2 : v;
|
||
}
|
||
function preventOverflow(_ref) {
|
||
var state = _ref.state, options = _ref.options, name = _ref.name;
|
||
var _options$mainAxis = options.mainAxis, checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis, _options$altAxis = options.altAxis, checkAltAxis = _options$altAxis === void 0 ? false : _options$altAxis, boundary = options.boundary, rootBoundary = options.rootBoundary, altBoundary = options.altBoundary, padding = options.padding, _options$tether = options.tether, tether = _options$tether === void 0 ? true : _options$tether, _options$tetherOffset = options.tetherOffset, tetherOffset = _options$tetherOffset === void 0 ? 0 : _options$tetherOffset;
|
||
var overflow = detectOverflow(state, {
|
||
boundary,
|
||
rootBoundary,
|
||
padding,
|
||
altBoundary
|
||
});
|
||
var basePlacement = getBasePlacement(state.placement);
|
||
var variation = getVariation(state.placement);
|
||
var isBasePlacement = !variation;
|
||
var mainAxis = getMainAxisFromPlacement(basePlacement);
|
||
var altAxis = getAltAxis(mainAxis);
|
||
var popperOffsets2 = state.modifiersData.popperOffsets;
|
||
var referenceRect = state.rects.reference;
|
||
var popperRect = state.rects.popper;
|
||
var tetherOffsetValue = typeof tetherOffset === "function" ? tetherOffset(Object.assign({}, state.rects, {
|
||
placement: state.placement
|
||
})) : tetherOffset;
|
||
var normalizedTetherOffsetValue = typeof tetherOffsetValue === "number" ? {
|
||
mainAxis: tetherOffsetValue,
|
||
altAxis: tetherOffsetValue
|
||
} : Object.assign({
|
||
mainAxis: 0,
|
||
altAxis: 0
|
||
}, tetherOffsetValue);
|
||
var offsetModifierState = state.modifiersData.offset ? state.modifiersData.offset[state.placement] : null;
|
||
var data = {
|
||
x: 0,
|
||
y: 0
|
||
};
|
||
if (!popperOffsets2) {
|
||
return;
|
||
}
|
||
if (checkMainAxis) {
|
||
var _offsetModifierState$;
|
||
var mainSide = mainAxis === "y" ? top : left;
|
||
var altSide = mainAxis === "y" ? bottom : right;
|
||
var len = mainAxis === "y" ? "height" : "width";
|
||
var offset2 = popperOffsets2[mainAxis];
|
||
var min$1 = offset2 + overflow[mainSide];
|
||
var max$1 = offset2 - overflow[altSide];
|
||
var additive = tether ? -popperRect[len] / 2 : 0;
|
||
var minLen = variation === start ? referenceRect[len] : popperRect[len];
|
||
var maxLen = variation === start ? -popperRect[len] : -referenceRect[len];
|
||
var arrowElement = state.elements.arrow;
|
||
var arrowRect = tether && arrowElement ? getLayoutRect(arrowElement) : {
|
||
width: 0,
|
||
height: 0
|
||
};
|
||
var arrowPaddingObject = state.modifiersData["arrow#persistent"] ? state.modifiersData["arrow#persistent"].padding : getFreshSideObject();
|
||
var arrowPaddingMin = arrowPaddingObject[mainSide];
|
||
var arrowPaddingMax = arrowPaddingObject[altSide];
|
||
var arrowLen = within(0, referenceRect[len], arrowRect[len]);
|
||
var minOffset = isBasePlacement ? referenceRect[len] / 2 - additive - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis : minLen - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis;
|
||
var maxOffset = isBasePlacement ? -referenceRect[len] / 2 + additive + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis : maxLen + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis;
|
||
var arrowOffsetParent = state.elements.arrow && getOffsetParent(state.elements.arrow);
|
||
var clientOffset = arrowOffsetParent ? mainAxis === "y" ? arrowOffsetParent.clientTop || 0 : arrowOffsetParent.clientLeft || 0 : 0;
|
||
var offsetModifierValue = (_offsetModifierState$ = offsetModifierState == null ? void 0 : offsetModifierState[mainAxis]) != null ? _offsetModifierState$ : 0;
|
||
var tetherMin = offset2 + minOffset - offsetModifierValue - clientOffset;
|
||
var tetherMax = offset2 + maxOffset - offsetModifierValue;
|
||
var preventedOffset = within(tether ? min(min$1, tetherMin) : min$1, offset2, tether ? max(max$1, tetherMax) : max$1);
|
||
popperOffsets2[mainAxis] = preventedOffset;
|
||
data[mainAxis] = preventedOffset - offset2;
|
||
}
|
||
if (checkAltAxis) {
|
||
var _offsetModifierState$2;
|
||
var _mainSide = mainAxis === "x" ? top : left;
|
||
var _altSide = mainAxis === "x" ? bottom : right;
|
||
var _offset = popperOffsets2[altAxis];
|
||
var _len = altAxis === "y" ? "height" : "width";
|
||
var _min = _offset + overflow[_mainSide];
|
||
var _max = _offset - overflow[_altSide];
|
||
var isOriginSide = [top, left].indexOf(basePlacement) !== -1;
|
||
var _offsetModifierValue = (_offsetModifierState$2 = offsetModifierState == null ? void 0 : offsetModifierState[altAxis]) != null ? _offsetModifierState$2 : 0;
|
||
var _tetherMin = isOriginSide ? _min : _offset - referenceRect[_len] - popperRect[_len] - _offsetModifierValue + normalizedTetherOffsetValue.altAxis;
|
||
var _tetherMax = isOriginSide ? _offset + referenceRect[_len] + popperRect[_len] - _offsetModifierValue - normalizedTetherOffsetValue.altAxis : _max;
|
||
var _preventedOffset = tether && isOriginSide ? withinMaxClamp(_tetherMin, _offset, _tetherMax) : within(tether ? _tetherMin : _min, _offset, tether ? _tetherMax : _max);
|
||
popperOffsets2[altAxis] = _preventedOffset;
|
||
data[altAxis] = _preventedOffset - _offset;
|
||
}
|
||
state.modifiersData[name] = data;
|
||
}
|
||
var preventOverflow$1 = {
|
||
name: "preventOverflow",
|
||
enabled: true,
|
||
phase: "main",
|
||
fn: preventOverflow,
|
||
requiresIfExists: ["offset"]
|
||
};
|
||
var toPaddingObject = function toPaddingObject2(padding, state) {
|
||
padding = typeof padding === "function" ? padding(Object.assign({}, state.rects, {
|
||
placement: state.placement
|
||
})) : padding;
|
||
return mergePaddingObject(typeof padding !== "number" ? padding : expandToHashMap(padding, basePlacements));
|
||
};
|
||
function arrow(_ref) {
|
||
var _state$modifiersData$;
|
||
var state = _ref.state, name = _ref.name, options = _ref.options;
|
||
var arrowElement = state.elements.arrow;
|
||
var popperOffsets2 = state.modifiersData.popperOffsets;
|
||
var basePlacement = getBasePlacement(state.placement);
|
||
var axis = getMainAxisFromPlacement(basePlacement);
|
||
var isVertical = [left, right].indexOf(basePlacement) >= 0;
|
||
var len = isVertical ? "height" : "width";
|
||
if (!arrowElement || !popperOffsets2) {
|
||
return;
|
||
}
|
||
var paddingObject = toPaddingObject(options.padding, state);
|
||
var arrowRect = getLayoutRect(arrowElement);
|
||
var minProp = axis === "y" ? top : left;
|
||
var maxProp = axis === "y" ? bottom : right;
|
||
var endDiff = state.rects.reference[len] + state.rects.reference[axis] - popperOffsets2[axis] - state.rects.popper[len];
|
||
var startDiff = popperOffsets2[axis] - state.rects.reference[axis];
|
||
var arrowOffsetParent = getOffsetParent(arrowElement);
|
||
var clientSize = arrowOffsetParent ? axis === "y" ? arrowOffsetParent.clientHeight || 0 : arrowOffsetParent.clientWidth || 0 : 0;
|
||
var centerToReference = endDiff / 2 - startDiff / 2;
|
||
var min2 = paddingObject[minProp];
|
||
var max2 = clientSize - arrowRect[len] - paddingObject[maxProp];
|
||
var center = clientSize / 2 - arrowRect[len] / 2 + centerToReference;
|
||
var offset2 = within(min2, center, max2);
|
||
var axisProp = axis;
|
||
state.modifiersData[name] = (_state$modifiersData$ = {}, _state$modifiersData$[axisProp] = offset2, _state$modifiersData$.centerOffset = offset2 - center, _state$modifiersData$);
|
||
}
|
||
function effect(_ref2) {
|
||
var state = _ref2.state, options = _ref2.options;
|
||
var _options$element = options.element, arrowElement = _options$element === void 0 ? "[data-popper-arrow]" : _options$element;
|
||
if (arrowElement == null) {
|
||
return;
|
||
}
|
||
if (typeof arrowElement === "string") {
|
||
arrowElement = state.elements.popper.querySelector(arrowElement);
|
||
if (!arrowElement) {
|
||
return;
|
||
}
|
||
}
|
||
if (true) {
|
||
if (!isHTMLElement(arrowElement)) {
|
||
console.error(['Popper: "arrow" element must be an HTMLElement (not an SVGElement).', "To use an SVG arrow, wrap it in an HTMLElement that will be used as", "the arrow."].join(" "));
|
||
}
|
||
}
|
||
if (!contains(state.elements.popper, arrowElement)) {
|
||
if (true) {
|
||
console.error(['Popper: "arrow" modifier\'s `element` must be a child of the popper', "element."].join(" "));
|
||
}
|
||
return;
|
||
}
|
||
state.elements.arrow = arrowElement;
|
||
}
|
||
var arrow$1 = {
|
||
name: "arrow",
|
||
enabled: true,
|
||
phase: "main",
|
||
fn: arrow,
|
||
effect,
|
||
requires: ["popperOffsets"],
|
||
requiresIfExists: ["preventOverflow"]
|
||
};
|
||
function getSideOffsets(overflow, rect, preventedOffsets) {
|
||
if (preventedOffsets === void 0) {
|
||
preventedOffsets = {
|
||
x: 0,
|
||
y: 0
|
||
};
|
||
}
|
||
return {
|
||
top: overflow.top - rect.height - preventedOffsets.y,
|
||
right: overflow.right - rect.width + preventedOffsets.x,
|
||
bottom: overflow.bottom - rect.height + preventedOffsets.y,
|
||
left: overflow.left - rect.width - preventedOffsets.x
|
||
};
|
||
}
|
||
function isAnySideFullyClipped(overflow) {
|
||
return [top, right, bottom, left].some(function(side) {
|
||
return overflow[side] >= 0;
|
||
});
|
||
}
|
||
function hide(_ref) {
|
||
var state = _ref.state, name = _ref.name;
|
||
var referenceRect = state.rects.reference;
|
||
var popperRect = state.rects.popper;
|
||
var preventedOffsets = state.modifiersData.preventOverflow;
|
||
var referenceOverflow = detectOverflow(state, {
|
||
elementContext: "reference"
|
||
});
|
||
var popperAltOverflow = detectOverflow(state, {
|
||
altBoundary: true
|
||
});
|
||
var referenceClippingOffsets = getSideOffsets(referenceOverflow, referenceRect);
|
||
var popperEscapeOffsets = getSideOffsets(popperAltOverflow, popperRect, preventedOffsets);
|
||
var isReferenceHidden = isAnySideFullyClipped(referenceClippingOffsets);
|
||
var hasPopperEscaped = isAnySideFullyClipped(popperEscapeOffsets);
|
||
state.modifiersData[name] = {
|
||
referenceClippingOffsets,
|
||
popperEscapeOffsets,
|
||
isReferenceHidden,
|
||
hasPopperEscaped
|
||
};
|
||
state.attributes.popper = Object.assign({}, state.attributes.popper, {
|
||
"data-popper-reference-hidden": isReferenceHidden,
|
||
"data-popper-escaped": hasPopperEscaped
|
||
});
|
||
}
|
||
var hide$1 = {
|
||
name: "hide",
|
||
enabled: true,
|
||
phase: "main",
|
||
requiresIfExists: ["preventOverflow"],
|
||
fn: hide
|
||
};
|
||
var defaultModifiers$1 = [eventListeners, popperOffsets$1, computeStyles$1, applyStyles$1];
|
||
var createPopper$1 = /* @__PURE__ */ popperGenerator({
|
||
defaultModifiers: defaultModifiers$1
|
||
});
|
||
var defaultModifiers = [eventListeners, popperOffsets$1, computeStyles$1, applyStyles$1, offset$1, flip$1, preventOverflow$1, arrow$1, hide$1];
|
||
var createPopper2 = /* @__PURE__ */ popperGenerator({
|
||
defaultModifiers
|
||
});
|
||
exports.applyStyles = applyStyles$1;
|
||
exports.arrow = arrow$1;
|
||
exports.computeStyles = computeStyles$1;
|
||
exports.createPopper = createPopper2;
|
||
exports.createPopperLite = createPopper$1;
|
||
exports.defaultModifiers = defaultModifiers;
|
||
exports.detectOverflow = detectOverflow;
|
||
exports.eventListeners = eventListeners;
|
||
exports.flip = flip$1;
|
||
exports.hide = hide$1;
|
||
exports.offset = offset$1;
|
||
exports.popperGenerator = popperGenerator;
|
||
exports.popperOffsets = popperOffsets$1;
|
||
exports.preventOverflow = preventOverflow$1;
|
||
}
|
||
});
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.8+incompatible/js/src/dom/data.js
|
||
var elementMap = /* @__PURE__ */ new Map();
|
||
var data_default = {
|
||
set(element, key, instance) {
|
||
if (!elementMap.has(element)) {
|
||
elementMap.set(element, /* @__PURE__ */ new Map());
|
||
}
|
||
const instanceMap = elementMap.get(element);
|
||
if (!instanceMap.has(key) && instanceMap.size !== 0) {
|
||
console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(instanceMap.keys())[0]}.`);
|
||
return;
|
||
}
|
||
instanceMap.set(key, instance);
|
||
},
|
||
get(element, key) {
|
||
if (elementMap.has(element)) {
|
||
return elementMap.get(element).get(key) || null;
|
||
}
|
||
return null;
|
||
},
|
||
remove(element, key) {
|
||
if (!elementMap.has(element)) {
|
||
return;
|
||
}
|
||
const instanceMap = elementMap.get(element);
|
||
instanceMap.delete(key);
|
||
if (instanceMap.size === 0) {
|
||
elementMap.delete(element);
|
||
}
|
||
}
|
||
};
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.8+incompatible/js/src/util/index.js
|
||
var MAX_UID = 1e6;
|
||
var MILLISECONDS_MULTIPLIER = 1e3;
|
||
var TRANSITION_END = "transitionend";
|
||
var parseSelector = (selector2) => {
|
||
if (selector2 && window.CSS && window.CSS.escape) {
|
||
selector2 = selector2.replace(/#([^\s"#']+)/g, (match, id) => `#${CSS.escape(id)}`);
|
||
}
|
||
return selector2;
|
||
};
|
||
var toType = (object) => {
|
||
if (object === null || object === void 0) {
|
||
return `${object}`;
|
||
}
|
||
return Object.prototype.toString.call(object).match(/\s([a-z]+)/i)[1].toLowerCase();
|
||
};
|
||
var getUID = (prefix) => {
|
||
do {
|
||
prefix += Math.floor(Math.random() * MAX_UID);
|
||
} while (document.getElementById(prefix));
|
||
return prefix;
|
||
};
|
||
var getTransitionDurationFromElement = (element) => {
|
||
if (!element) {
|
||
return 0;
|
||
}
|
||
let { transitionDuration, transitionDelay } = window.getComputedStyle(element);
|
||
const floatTransitionDuration = Number.parseFloat(transitionDuration);
|
||
const floatTransitionDelay = Number.parseFloat(transitionDelay);
|
||
if (!floatTransitionDuration && !floatTransitionDelay) {
|
||
return 0;
|
||
}
|
||
transitionDuration = transitionDuration.split(",")[0];
|
||
transitionDelay = transitionDelay.split(",")[0];
|
||
return (Number.parseFloat(transitionDuration) + Number.parseFloat(transitionDelay)) * MILLISECONDS_MULTIPLIER;
|
||
};
|
||
var triggerTransitionEnd = (element) => {
|
||
element.dispatchEvent(new Event(TRANSITION_END));
|
||
};
|
||
var isElement = (object) => {
|
||
if (!object || typeof object !== "object") {
|
||
return false;
|
||
}
|
||
if (typeof object.jquery !== "undefined") {
|
||
object = object[0];
|
||
}
|
||
return typeof object.nodeType !== "undefined";
|
||
};
|
||
var getElement = (object) => {
|
||
if (isElement(object)) {
|
||
return object.jquery ? object[0] : object;
|
||
}
|
||
if (typeof object === "string" && object.length > 0) {
|
||
return document.querySelector(parseSelector(object));
|
||
}
|
||
return null;
|
||
};
|
||
var isVisible = (element) => {
|
||
if (!isElement(element) || element.getClientRects().length === 0) {
|
||
return false;
|
||
}
|
||
const elementIsVisible = getComputedStyle(element).getPropertyValue("visibility") === "visible";
|
||
const closedDetails = element.closest("details:not([open])");
|
||
if (!closedDetails) {
|
||
return elementIsVisible;
|
||
}
|
||
if (closedDetails !== element) {
|
||
const summary = element.closest("summary");
|
||
if (summary && summary.parentNode !== closedDetails) {
|
||
return false;
|
||
}
|
||
if (summary === null) {
|
||
return false;
|
||
}
|
||
}
|
||
return elementIsVisible;
|
||
};
|
||
var isDisabled = (element) => {
|
||
if (!element || element.nodeType !== Node.ELEMENT_NODE) {
|
||
return true;
|
||
}
|
||
if (element.classList.contains("disabled")) {
|
||
return true;
|
||
}
|
||
if (typeof element.disabled !== "undefined") {
|
||
return element.disabled;
|
||
}
|
||
return element.hasAttribute("disabled") && element.getAttribute("disabled") !== "false";
|
||
};
|
||
var findShadowRoot = (element) => {
|
||
if (!document.documentElement.attachShadow) {
|
||
return null;
|
||
}
|
||
if (typeof element.getRootNode === "function") {
|
||
const root = element.getRootNode();
|
||
return root instanceof ShadowRoot ? root : null;
|
||
}
|
||
if (element instanceof ShadowRoot) {
|
||
return element;
|
||
}
|
||
if (!element.parentNode) {
|
||
return null;
|
||
}
|
||
return findShadowRoot(element.parentNode);
|
||
};
|
||
var noop = () => {
|
||
};
|
||
var reflow = (element) => {
|
||
element.offsetHeight;
|
||
};
|
||
var getjQuery = () => {
|
||
if (window.jQuery && !document.body.hasAttribute("data-bs-no-jquery")) {
|
||
return window.jQuery;
|
||
}
|
||
return null;
|
||
};
|
||
var DOMContentLoadedCallbacks = [];
|
||
var onDOMContentLoaded = (callback) => {
|
||
if (document.readyState === "loading") {
|
||
if (!DOMContentLoadedCallbacks.length) {
|
||
document.addEventListener("DOMContentLoaded", () => {
|
||
for (const callback2 of DOMContentLoadedCallbacks) {
|
||
callback2();
|
||
}
|
||
});
|
||
}
|
||
DOMContentLoadedCallbacks.push(callback);
|
||
} else {
|
||
callback();
|
||
}
|
||
};
|
||
var isRTL = () => document.documentElement.dir === "rtl";
|
||
var defineJQueryPlugin = (plugin) => {
|
||
onDOMContentLoaded(() => {
|
||
const $ = getjQuery();
|
||
if ($) {
|
||
const name = plugin.NAME;
|
||
const JQUERY_NO_CONFLICT = $.fn[name];
|
||
$.fn[name] = plugin.jQueryInterface;
|
||
$.fn[name].Constructor = plugin;
|
||
$.fn[name].noConflict = () => {
|
||
$.fn[name] = JQUERY_NO_CONFLICT;
|
||
return plugin.jQueryInterface;
|
||
};
|
||
}
|
||
});
|
||
};
|
||
var execute = (possibleCallback, args = [], defaultValue = possibleCallback) => {
|
||
return typeof possibleCallback === "function" ? possibleCallback.call(...args) : defaultValue;
|
||
};
|
||
var executeAfterTransition = (callback, transitionElement, waitForTransition = true) => {
|
||
if (!waitForTransition) {
|
||
execute(callback);
|
||
return;
|
||
}
|
||
const durationPadding = 5;
|
||
const emulatedDuration = getTransitionDurationFromElement(transitionElement) + durationPadding;
|
||
let called = false;
|
||
const handler = ({ target }) => {
|
||
if (target !== transitionElement) {
|
||
return;
|
||
}
|
||
called = true;
|
||
transitionElement.removeEventListener(TRANSITION_END, handler);
|
||
execute(callback);
|
||
};
|
||
transitionElement.addEventListener(TRANSITION_END, handler);
|
||
setTimeout(() => {
|
||
if (!called) {
|
||
triggerTransitionEnd(transitionElement);
|
||
}
|
||
}, emulatedDuration);
|
||
};
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.8+incompatible/js/src/dom/event-handler.js
|
||
var namespaceRegex = /[^.]*(?=\..*)\.|.*/;
|
||
var stripNameRegex = /\..*/;
|
||
var stripUidRegex = /::\d+$/;
|
||
var eventRegistry = {};
|
||
var uidEvent = 1;
|
||
var customEvents = {
|
||
mouseenter: "mouseover",
|
||
mouseleave: "mouseout"
|
||
};
|
||
var nativeEvents = /* @__PURE__ */ new Set([
|
||
"click",
|
||
"dblclick",
|
||
"mouseup",
|
||
"mousedown",
|
||
"contextmenu",
|
||
"mousewheel",
|
||
"DOMMouseScroll",
|
||
"mouseover",
|
||
"mouseout",
|
||
"mousemove",
|
||
"selectstart",
|
||
"selectend",
|
||
"keydown",
|
||
"keypress",
|
||
"keyup",
|
||
"orientationchange",
|
||
"touchstart",
|
||
"touchmove",
|
||
"touchend",
|
||
"touchcancel",
|
||
"pointerdown",
|
||
"pointermove",
|
||
"pointerup",
|
||
"pointerleave",
|
||
"pointercancel",
|
||
"gesturestart",
|
||
"gesturechange",
|
||
"gestureend",
|
||
"focus",
|
||
"blur",
|
||
"change",
|
||
"reset",
|
||
"select",
|
||
"submit",
|
||
"focusin",
|
||
"focusout",
|
||
"load",
|
||
"unload",
|
||
"beforeunload",
|
||
"resize",
|
||
"move",
|
||
"DOMContentLoaded",
|
||
"readystatechange",
|
||
"error",
|
||
"abort",
|
||
"scroll"
|
||
]);
|
||
function makeEventUid(element, uid) {
|
||
return uid && `${uid}::${uidEvent++}` || element.uidEvent || uidEvent++;
|
||
}
|
||
function getElementEvents(element) {
|
||
const uid = makeEventUid(element);
|
||
element.uidEvent = uid;
|
||
eventRegistry[uid] = eventRegistry[uid] || {};
|
||
return eventRegistry[uid];
|
||
}
|
||
function bootstrapHandler(element, fn) {
|
||
return function handler(event) {
|
||
hydrateObj(event, { delegateTarget: element });
|
||
if (handler.oneOff) {
|
||
EventHandler.off(element, event.type, fn);
|
||
}
|
||
return fn.apply(element, [event]);
|
||
};
|
||
}
|
||
function bootstrapDelegationHandler(element, selector2, fn) {
|
||
return function handler(event) {
|
||
const domElements = element.querySelectorAll(selector2);
|
||
for (let { target } = event; target && target !== this; target = target.parentNode) {
|
||
for (const domElement of domElements) {
|
||
if (domElement !== target) {
|
||
continue;
|
||
}
|
||
hydrateObj(event, { delegateTarget: target });
|
||
if (handler.oneOff) {
|
||
EventHandler.off(element, event.type, selector2, fn);
|
||
}
|
||
return fn.apply(target, [event]);
|
||
}
|
||
}
|
||
};
|
||
}
|
||
function findHandler(events, callable, delegationSelector = null) {
|
||
return Object.values(events).find((event) => event.callable === callable && event.delegationSelector === delegationSelector);
|
||
}
|
||
function normalizeParameters(originalTypeEvent, handler, delegationFunction) {
|
||
const isDelegated = typeof handler === "string";
|
||
const callable = isDelegated ? delegationFunction : handler || delegationFunction;
|
||
let typeEvent = getTypeEvent(originalTypeEvent);
|
||
if (!nativeEvents.has(typeEvent)) {
|
||
typeEvent = originalTypeEvent;
|
||
}
|
||
return [isDelegated, callable, typeEvent];
|
||
}
|
||
function addHandler(element, originalTypeEvent, handler, delegationFunction, oneOff) {
|
||
if (typeof originalTypeEvent !== "string" || !element) {
|
||
return;
|
||
}
|
||
let [isDelegated, callable, typeEvent] = normalizeParameters(originalTypeEvent, handler, delegationFunction);
|
||
if (originalTypeEvent in customEvents) {
|
||
const wrapFunction = (fn2) => {
|
||
return function(event) {
|
||
if (!event.relatedTarget || event.relatedTarget !== event.delegateTarget && !event.delegateTarget.contains(event.relatedTarget)) {
|
||
return fn2.call(this, event);
|
||
}
|
||
};
|
||
};
|
||
callable = wrapFunction(callable);
|
||
}
|
||
const events = getElementEvents(element);
|
||
const handlers = events[typeEvent] || (events[typeEvent] = {});
|
||
const previousFunction = findHandler(handlers, callable, isDelegated ? handler : null);
|
||
if (previousFunction) {
|
||
previousFunction.oneOff = previousFunction.oneOff && oneOff;
|
||
return;
|
||
}
|
||
const uid = makeEventUid(callable, originalTypeEvent.replace(namespaceRegex, ""));
|
||
const fn = isDelegated ? bootstrapDelegationHandler(element, handler, callable) : bootstrapHandler(element, callable);
|
||
fn.delegationSelector = isDelegated ? handler : null;
|
||
fn.callable = callable;
|
||
fn.oneOff = oneOff;
|
||
fn.uidEvent = uid;
|
||
handlers[uid] = fn;
|
||
element.addEventListener(typeEvent, fn, isDelegated);
|
||
}
|
||
function removeHandler(element, events, typeEvent, handler, delegationSelector) {
|
||
const fn = findHandler(events[typeEvent], handler, delegationSelector);
|
||
if (!fn) {
|
||
return;
|
||
}
|
||
element.removeEventListener(typeEvent, fn, Boolean(delegationSelector));
|
||
delete events[typeEvent][fn.uidEvent];
|
||
}
|
||
function removeNamespacedHandlers(element, events, typeEvent, namespace) {
|
||
const storeElementEvent = events[typeEvent] || {};
|
||
for (const [handlerKey, event] of Object.entries(storeElementEvent)) {
|
||
if (handlerKey.includes(namespace)) {
|
||
removeHandler(element, events, typeEvent, event.callable, event.delegationSelector);
|
||
}
|
||
}
|
||
}
|
||
function getTypeEvent(event) {
|
||
event = event.replace(stripNameRegex, "");
|
||
return customEvents[event] || event;
|
||
}
|
||
var EventHandler = {
|
||
on(element, event, handler, delegationFunction) {
|
||
addHandler(element, event, handler, delegationFunction, false);
|
||
},
|
||
one(element, event, handler, delegationFunction) {
|
||
addHandler(element, event, handler, delegationFunction, true);
|
||
},
|
||
off(element, originalTypeEvent, handler, delegationFunction) {
|
||
if (typeof originalTypeEvent !== "string" || !element) {
|
||
return;
|
||
}
|
||
const [isDelegated, callable, typeEvent] = normalizeParameters(originalTypeEvent, handler, delegationFunction);
|
||
const inNamespace = typeEvent !== originalTypeEvent;
|
||
const events = getElementEvents(element);
|
||
const storeElementEvent = events[typeEvent] || {};
|
||
const isNamespace = originalTypeEvent.startsWith(".");
|
||
if (typeof callable !== "undefined") {
|
||
if (!Object.keys(storeElementEvent).length) {
|
||
return;
|
||
}
|
||
removeHandler(element, events, typeEvent, callable, isDelegated ? handler : null);
|
||
return;
|
||
}
|
||
if (isNamespace) {
|
||
for (const elementEvent of Object.keys(events)) {
|
||
removeNamespacedHandlers(element, events, elementEvent, originalTypeEvent.slice(1));
|
||
}
|
||
}
|
||
for (const [keyHandlers, event] of Object.entries(storeElementEvent)) {
|
||
const handlerKey = keyHandlers.replace(stripUidRegex, "");
|
||
if (!inNamespace || originalTypeEvent.includes(handlerKey)) {
|
||
removeHandler(element, events, typeEvent, event.callable, event.delegationSelector);
|
||
}
|
||
}
|
||
},
|
||
trigger(element, event, args) {
|
||
if (typeof event !== "string" || !element) {
|
||
return null;
|
||
}
|
||
const $ = getjQuery();
|
||
const typeEvent = getTypeEvent(event);
|
||
const inNamespace = event !== typeEvent;
|
||
let jQueryEvent = null;
|
||
let bubbles = true;
|
||
let nativeDispatch = true;
|
||
let defaultPrevented = false;
|
||
if (inNamespace && $) {
|
||
jQueryEvent = $.Event(event, args);
|
||
$(element).trigger(jQueryEvent);
|
||
bubbles = !jQueryEvent.isPropagationStopped();
|
||
nativeDispatch = !jQueryEvent.isImmediatePropagationStopped();
|
||
defaultPrevented = jQueryEvent.isDefaultPrevented();
|
||
}
|
||
const evt = hydrateObj(new Event(event, { bubbles, cancelable: true }), args);
|
||
if (defaultPrevented) {
|
||
evt.preventDefault();
|
||
}
|
||
if (nativeDispatch) {
|
||
element.dispatchEvent(evt);
|
||
}
|
||
if (evt.defaultPrevented && jQueryEvent) {
|
||
jQueryEvent.preventDefault();
|
||
}
|
||
return evt;
|
||
}
|
||
};
|
||
function hydrateObj(obj, meta = {}) {
|
||
for (const [key, value] of Object.entries(meta)) {
|
||
try {
|
||
obj[key] = value;
|
||
} catch (e) {
|
||
Object.defineProperty(obj, key, {
|
||
configurable: true,
|
||
get() {
|
||
return value;
|
||
}
|
||
});
|
||
}
|
||
}
|
||
return obj;
|
||
}
|
||
var event_handler_default = EventHandler;
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.8+incompatible/js/src/dom/manipulator.js
|
||
function normalizeData(value) {
|
||
if (value === "true") {
|
||
return true;
|
||
}
|
||
if (value === "false") {
|
||
return false;
|
||
}
|
||
if (value === Number(value).toString()) {
|
||
return Number(value);
|
||
}
|
||
if (value === "" || value === "null") {
|
||
return null;
|
||
}
|
||
if (typeof value !== "string") {
|
||
return value;
|
||
}
|
||
try {
|
||
return JSON.parse(decodeURIComponent(value));
|
||
} catch (e) {
|
||
return value;
|
||
}
|
||
}
|
||
function normalizeDataKey(key) {
|
||
return key.replace(/[A-Z]/g, (chr) => `-${chr.toLowerCase()}`);
|
||
}
|
||
var Manipulator = {
|
||
setDataAttribute(element, key, value) {
|
||
element.setAttribute(`data-bs-${normalizeDataKey(key)}`, value);
|
||
},
|
||
removeDataAttribute(element, key) {
|
||
element.removeAttribute(`data-bs-${normalizeDataKey(key)}`);
|
||
},
|
||
getDataAttributes(element) {
|
||
if (!element) {
|
||
return {};
|
||
}
|
||
const attributes = {};
|
||
const bsKeys = Object.keys(element.dataset).filter((key) => key.startsWith("bs") && !key.startsWith("bsConfig"));
|
||
for (const key of bsKeys) {
|
||
let pureKey = key.replace(/^bs/, "");
|
||
pureKey = pureKey.charAt(0).toLowerCase() + pureKey.slice(1);
|
||
attributes[pureKey] = normalizeData(element.dataset[key]);
|
||
}
|
||
return attributes;
|
||
},
|
||
getDataAttribute(element, key) {
|
||
return normalizeData(element.getAttribute(`data-bs-${normalizeDataKey(key)}`));
|
||
}
|
||
};
|
||
var manipulator_default = Manipulator;
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.8+incompatible/js/src/util/config.js
|
||
var Config = class {
|
||
// Getters
|
||
static get Default() {
|
||
return {};
|
||
}
|
||
static get DefaultType() {
|
||
return {};
|
||
}
|
||
static get NAME() {
|
||
throw new Error('You have to implement the static method "NAME", for each component!');
|
||
}
|
||
_getConfig(config) {
|
||
config = this._mergeConfigObj(config);
|
||
config = this._configAfterMerge(config);
|
||
this._typeCheckConfig(config);
|
||
return config;
|
||
}
|
||
_configAfterMerge(config) {
|
||
return config;
|
||
}
|
||
_mergeConfigObj(config, element) {
|
||
const jsonConfig = isElement(element) ? manipulator_default.getDataAttribute(element, "config") : {};
|
||
return __spreadValues(__spreadValues(__spreadValues(__spreadValues({}, this.constructor.Default), typeof jsonConfig === "object" ? jsonConfig : {}), isElement(element) ? manipulator_default.getDataAttributes(element) : {}), typeof config === "object" ? config : {});
|
||
}
|
||
_typeCheckConfig(config, configTypes = this.constructor.DefaultType) {
|
||
for (const [property, expectedTypes] of Object.entries(configTypes)) {
|
||
const value = config[property];
|
||
const valueType = isElement(value) ? "element" : toType(value);
|
||
if (!new RegExp(expectedTypes).test(valueType)) {
|
||
throw new TypeError(
|
||
`${this.constructor.NAME.toUpperCase()}: Option "${property}" provided type "${valueType}" but expected type "${expectedTypes}".`
|
||
);
|
||
}
|
||
}
|
||
}
|
||
};
|
||
var config_default = Config;
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.8+incompatible/js/src/base-component.js
|
||
var VERSION = "5.3.8";
|
||
var BaseComponent = class extends config_default {
|
||
constructor(element, config) {
|
||
super();
|
||
element = getElement(element);
|
||
if (!element) {
|
||
return;
|
||
}
|
||
this._element = element;
|
||
this._config = this._getConfig(config);
|
||
data_default.set(this._element, this.constructor.DATA_KEY, this);
|
||
}
|
||
// Public
|
||
dispose() {
|
||
data_default.remove(this._element, this.constructor.DATA_KEY);
|
||
event_handler_default.off(this._element, this.constructor.EVENT_KEY);
|
||
for (const propertyName of Object.getOwnPropertyNames(this)) {
|
||
this[propertyName] = null;
|
||
}
|
||
}
|
||
// Private
|
||
_queueCallback(callback, element, isAnimated = true) {
|
||
executeAfterTransition(callback, element, isAnimated);
|
||
}
|
||
_getConfig(config) {
|
||
config = this._mergeConfigObj(config, this._element);
|
||
config = this._configAfterMerge(config);
|
||
this._typeCheckConfig(config);
|
||
return config;
|
||
}
|
||
// Static
|
||
static getInstance(element) {
|
||
return data_default.get(getElement(element), this.DATA_KEY);
|
||
}
|
||
static getOrCreateInstance(element, config = {}) {
|
||
return this.getInstance(element) || new this(element, typeof config === "object" ? config : null);
|
||
}
|
||
static get VERSION() {
|
||
return VERSION;
|
||
}
|
||
static get DATA_KEY() {
|
||
return `bs.${this.NAME}`;
|
||
}
|
||
static get EVENT_KEY() {
|
||
return `.${this.DATA_KEY}`;
|
||
}
|
||
static eventName(name) {
|
||
return `${name}${this.EVENT_KEY}`;
|
||
}
|
||
};
|
||
var base_component_default = BaseComponent;
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.8+incompatible/js/src/dom/selector-engine.js
|
||
var getSelector = (element) => {
|
||
let selector2 = element.getAttribute("data-bs-target");
|
||
if (!selector2 || selector2 === "#") {
|
||
let hrefAttribute = element.getAttribute("href");
|
||
if (!hrefAttribute || !hrefAttribute.includes("#") && !hrefAttribute.startsWith(".")) {
|
||
return null;
|
||
}
|
||
if (hrefAttribute.includes("#") && !hrefAttribute.startsWith("#")) {
|
||
hrefAttribute = `#${hrefAttribute.split("#")[1]}`;
|
||
}
|
||
selector2 = hrefAttribute && hrefAttribute !== "#" ? hrefAttribute.trim() : null;
|
||
}
|
||
return selector2 ? selector2.split(",").map((sel) => parseSelector(sel)).join(",") : null;
|
||
};
|
||
var SelectorEngine = {
|
||
find(selector2, element = document.documentElement) {
|
||
return [].concat(...Element.prototype.querySelectorAll.call(element, selector2));
|
||
},
|
||
findOne(selector2, element = document.documentElement) {
|
||
return Element.prototype.querySelector.call(element, selector2);
|
||
},
|
||
children(element, selector2) {
|
||
return [].concat(...element.children).filter((child) => child.matches(selector2));
|
||
},
|
||
parents(element, selector2) {
|
||
const parents = [];
|
||
let ancestor = element.parentNode.closest(selector2);
|
||
while (ancestor) {
|
||
parents.push(ancestor);
|
||
ancestor = ancestor.parentNode.closest(selector2);
|
||
}
|
||
return parents;
|
||
},
|
||
prev(element, selector2) {
|
||
let previous = element.previousElementSibling;
|
||
while (previous) {
|
||
if (previous.matches(selector2)) {
|
||
return [previous];
|
||
}
|
||
previous = previous.previousElementSibling;
|
||
}
|
||
return [];
|
||
},
|
||
// TODO: this is now unused; remove later along with prev()
|
||
next(element, selector2) {
|
||
let next = element.nextElementSibling;
|
||
while (next) {
|
||
if (next.matches(selector2)) {
|
||
return [next];
|
||
}
|
||
next = next.nextElementSibling;
|
||
}
|
||
return [];
|
||
},
|
||
focusableChildren(element) {
|
||
const focusables = [
|
||
"a",
|
||
"button",
|
||
"input",
|
||
"textarea",
|
||
"select",
|
||
"details",
|
||
"[tabindex]",
|
||
'[contenteditable="true"]'
|
||
].map((selector2) => `${selector2}:not([tabindex^="-"])`).join(",");
|
||
return this.find(focusables, element).filter((el) => !isDisabled(el) && isVisible(el));
|
||
},
|
||
getSelectorFromElement(element) {
|
||
const selector2 = getSelector(element);
|
||
if (selector2) {
|
||
return SelectorEngine.findOne(selector2) ? selector2 : null;
|
||
}
|
||
return null;
|
||
},
|
||
getElementFromSelector(element) {
|
||
const selector2 = getSelector(element);
|
||
return selector2 ? SelectorEngine.findOne(selector2) : null;
|
||
},
|
||
getMultipleElementsFromSelector(element) {
|
||
const selector2 = getSelector(element);
|
||
return selector2 ? SelectorEngine.find(selector2) : [];
|
||
}
|
||
};
|
||
var selector_engine_default = SelectorEngine;
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.8+incompatible/js/src/collapse.js
|
||
var NAME = "collapse";
|
||
var DATA_KEY = "bs.collapse";
|
||
var EVENT_KEY = `.${DATA_KEY}`;
|
||
var DATA_API_KEY = ".data-api";
|
||
var EVENT_SHOW = `show${EVENT_KEY}`;
|
||
var EVENT_SHOWN = `shown${EVENT_KEY}`;
|
||
var EVENT_HIDE = `hide${EVENT_KEY}`;
|
||
var EVENT_HIDDEN = `hidden${EVENT_KEY}`;
|
||
var EVENT_CLICK_DATA_API = `click${EVENT_KEY}${DATA_API_KEY}`;
|
||
var CLASS_NAME_SHOW = "show";
|
||
var CLASS_NAME_COLLAPSE = "collapse";
|
||
var CLASS_NAME_COLLAPSING = "collapsing";
|
||
var CLASS_NAME_COLLAPSED = "collapsed";
|
||
var CLASS_NAME_DEEPER_CHILDREN = `:scope .${CLASS_NAME_COLLAPSE} .${CLASS_NAME_COLLAPSE}`;
|
||
var CLASS_NAME_HORIZONTAL = "collapse-horizontal";
|
||
var WIDTH = "width";
|
||
var HEIGHT = "height";
|
||
var SELECTOR_ACTIVES = ".collapse.show, .collapse.collapsing";
|
||
var SELECTOR_DATA_TOGGLE = '[data-bs-toggle="collapse"]';
|
||
var Default = {
|
||
parent: null,
|
||
toggle: true
|
||
};
|
||
var DefaultType = {
|
||
parent: "(null|element)",
|
||
toggle: "boolean"
|
||
};
|
||
var Collapse = class _Collapse extends base_component_default {
|
||
constructor(element, config) {
|
||
super(element, config);
|
||
this._isTransitioning = false;
|
||
this._triggerArray = [];
|
||
const toggleList = selector_engine_default.find(SELECTOR_DATA_TOGGLE);
|
||
for (const elem of toggleList) {
|
||
const selector2 = selector_engine_default.getSelectorFromElement(elem);
|
||
const filterElement = selector_engine_default.find(selector2).filter((foundElement) => foundElement === this._element);
|
||
if (selector2 !== null && filterElement.length) {
|
||
this._triggerArray.push(elem);
|
||
}
|
||
}
|
||
this._initializeChildren();
|
||
if (!this._config.parent) {
|
||
this._addAriaAndCollapsedClass(this._triggerArray, this._isShown());
|
||
}
|
||
if (this._config.toggle) {
|
||
this.toggle();
|
||
}
|
||
}
|
||
// Getters
|
||
static get Default() {
|
||
return Default;
|
||
}
|
||
static get DefaultType() {
|
||
return DefaultType;
|
||
}
|
||
static get NAME() {
|
||
return NAME;
|
||
}
|
||
// Public
|
||
toggle() {
|
||
if (this._isShown()) {
|
||
this.hide();
|
||
} else {
|
||
this.show();
|
||
}
|
||
}
|
||
show() {
|
||
if (this._isTransitioning || this._isShown()) {
|
||
return;
|
||
}
|
||
let activeChildren = [];
|
||
if (this._config.parent) {
|
||
activeChildren = this._getFirstLevelChildren(SELECTOR_ACTIVES).filter((element) => element !== this._element).map((element) => _Collapse.getOrCreateInstance(element, { toggle: false }));
|
||
}
|
||
if (activeChildren.length && activeChildren[0]._isTransitioning) {
|
||
return;
|
||
}
|
||
const startEvent = event_handler_default.trigger(this._element, EVENT_SHOW);
|
||
if (startEvent.defaultPrevented) {
|
||
return;
|
||
}
|
||
for (const activeInstance of activeChildren) {
|
||
activeInstance.hide();
|
||
}
|
||
const dimension = this._getDimension();
|
||
this._element.classList.remove(CLASS_NAME_COLLAPSE);
|
||
this._element.classList.add(CLASS_NAME_COLLAPSING);
|
||
this._element.style[dimension] = 0;
|
||
this._addAriaAndCollapsedClass(this._triggerArray, true);
|
||
this._isTransitioning = true;
|
||
const complete = () => {
|
||
this._isTransitioning = false;
|
||
this._element.classList.remove(CLASS_NAME_COLLAPSING);
|
||
this._element.classList.add(CLASS_NAME_COLLAPSE, CLASS_NAME_SHOW);
|
||
this._element.style[dimension] = "";
|
||
event_handler_default.trigger(this._element, EVENT_SHOWN);
|
||
};
|
||
const capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1);
|
||
const scrollSize = `scroll${capitalizedDimension}`;
|
||
this._queueCallback(complete, this._element, true);
|
||
this._element.style[dimension] = `${this._element[scrollSize]}px`;
|
||
}
|
||
hide() {
|
||
if (this._isTransitioning || !this._isShown()) {
|
||
return;
|
||
}
|
||
const startEvent = event_handler_default.trigger(this._element, EVENT_HIDE);
|
||
if (startEvent.defaultPrevented) {
|
||
return;
|
||
}
|
||
const dimension = this._getDimension();
|
||
this._element.style[dimension] = `${this._element.getBoundingClientRect()[dimension]}px`;
|
||
reflow(this._element);
|
||
this._element.classList.add(CLASS_NAME_COLLAPSING);
|
||
this._element.classList.remove(CLASS_NAME_COLLAPSE, CLASS_NAME_SHOW);
|
||
for (const trigger of this._triggerArray) {
|
||
const element = selector_engine_default.getElementFromSelector(trigger);
|
||
if (element && !this._isShown(element)) {
|
||
this._addAriaAndCollapsedClass([trigger], false);
|
||
}
|
||
}
|
||
this._isTransitioning = true;
|
||
const complete = () => {
|
||
this._isTransitioning = false;
|
||
this._element.classList.remove(CLASS_NAME_COLLAPSING);
|
||
this._element.classList.add(CLASS_NAME_COLLAPSE);
|
||
event_handler_default.trigger(this._element, EVENT_HIDDEN);
|
||
};
|
||
this._element.style[dimension] = "";
|
||
this._queueCallback(complete, this._element, true);
|
||
}
|
||
// Private
|
||
_isShown(element = this._element) {
|
||
return element.classList.contains(CLASS_NAME_SHOW);
|
||
}
|
||
_configAfterMerge(config) {
|
||
config.toggle = Boolean(config.toggle);
|
||
config.parent = getElement(config.parent);
|
||
return config;
|
||
}
|
||
_getDimension() {
|
||
return this._element.classList.contains(CLASS_NAME_HORIZONTAL) ? WIDTH : HEIGHT;
|
||
}
|
||
_initializeChildren() {
|
||
if (!this._config.parent) {
|
||
return;
|
||
}
|
||
const children2 = this._getFirstLevelChildren(SELECTOR_DATA_TOGGLE);
|
||
for (const element of children2) {
|
||
const selected = selector_engine_default.getElementFromSelector(element);
|
||
if (selected) {
|
||
this._addAriaAndCollapsedClass([element], this._isShown(selected));
|
||
}
|
||
}
|
||
}
|
||
_getFirstLevelChildren(selector2) {
|
||
const children2 = selector_engine_default.find(CLASS_NAME_DEEPER_CHILDREN, this._config.parent);
|
||
return selector_engine_default.find(selector2, this._config.parent).filter((element) => !children2.includes(element));
|
||
}
|
||
_addAriaAndCollapsedClass(triggerArray, isOpen) {
|
||
if (!triggerArray.length) {
|
||
return;
|
||
}
|
||
for (const element of triggerArray) {
|
||
element.classList.toggle(CLASS_NAME_COLLAPSED, !isOpen);
|
||
element.setAttribute("aria-expanded", isOpen);
|
||
}
|
||
}
|
||
// Static
|
||
static jQueryInterface(config) {
|
||
const _config = {};
|
||
if (typeof config === "string" && /show|hide/.test(config)) {
|
||
_config.toggle = false;
|
||
}
|
||
return this.each(function() {
|
||
const data = _Collapse.getOrCreateInstance(this, _config);
|
||
if (typeof config === "string") {
|
||
if (typeof data[config] === "undefined") {
|
||
throw new TypeError(`No method named "${config}"`);
|
||
}
|
||
data[config]();
|
||
}
|
||
});
|
||
}
|
||
};
|
||
event_handler_default.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function(event) {
|
||
if (event.target.tagName === "A" || event.delegateTarget && event.delegateTarget.tagName === "A") {
|
||
event.preventDefault();
|
||
}
|
||
for (const element of selector_engine_default.getMultipleElementsFromSelector(this)) {
|
||
Collapse.getOrCreateInstance(element, { toggle: false }).toggle();
|
||
}
|
||
});
|
||
defineJQueryPlugin(Collapse);
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/git.comprofix.com/mmckinnon/hugo-theme-chirpy@v0.0.0-20250906020401-98acc1f743ac/assets/js/modules/components/category-collapse.js
|
||
var children = document.getElementsByClassName("collapse");
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.8+incompatible/js/src/tooltip.js
|
||
var Popper = __toESM(require_popper());
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.8+incompatible/js/src/util/sanitizer.js
|
||
var ARIA_ATTRIBUTE_PATTERN = /^aria-[\w-]*$/i;
|
||
var DefaultAllowlist = {
|
||
// 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: [],
|
||
dd: [],
|
||
div: [],
|
||
dl: [],
|
||
dt: [],
|
||
em: [],
|
||
hr: [],
|
||
h1: [],
|
||
h2: [],
|
||
h3: [],
|
||
h4: [],
|
||
h5: [],
|
||
h6: [],
|
||
i: [],
|
||
img: ["src", "srcset", "alt", "title", "width", "height"],
|
||
li: [],
|
||
ol: [],
|
||
p: [],
|
||
pre: [],
|
||
s: [],
|
||
small: [],
|
||
span: [],
|
||
sub: [],
|
||
sup: [],
|
||
strong: [],
|
||
u: [],
|
||
ul: []
|
||
};
|
||
var uriAttributes = /* @__PURE__ */ new Set([
|
||
"background",
|
||
"cite",
|
||
"href",
|
||
"itemtype",
|
||
"longdesc",
|
||
"poster",
|
||
"src",
|
||
"xlink:href"
|
||
]);
|
||
var SAFE_URL_PATTERN = /^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:/?#]*(?:[/?#]|$))/i;
|
||
var allowedAttribute = (attribute, allowedAttributeList) => {
|
||
const attributeName = attribute.nodeName.toLowerCase();
|
||
if (allowedAttributeList.includes(attributeName)) {
|
||
if (uriAttributes.has(attributeName)) {
|
||
return Boolean(SAFE_URL_PATTERN.test(attribute.nodeValue));
|
||
}
|
||
return true;
|
||
}
|
||
return allowedAttributeList.filter((attributeRegex) => attributeRegex instanceof RegExp).some((regex) => regex.test(attributeName));
|
||
};
|
||
function sanitizeHtml(unsafeHtml, allowList, sanitizeFunction) {
|
||
if (!unsafeHtml.length) {
|
||
return unsafeHtml;
|
||
}
|
||
if (sanitizeFunction && typeof sanitizeFunction === "function") {
|
||
return sanitizeFunction(unsafeHtml);
|
||
}
|
||
const domParser = new window.DOMParser();
|
||
const createdDocument = domParser.parseFromString(unsafeHtml, "text/html");
|
||
const elements = [].concat(...createdDocument.body.querySelectorAll("*"));
|
||
for (const element of elements) {
|
||
const elementName = element.nodeName.toLowerCase();
|
||
if (!Object.keys(allowList).includes(elementName)) {
|
||
element.remove();
|
||
continue;
|
||
}
|
||
const attributeList = [].concat(...element.attributes);
|
||
const allowedAttributes = [].concat(allowList["*"] || [], allowList[elementName] || []);
|
||
for (const attribute of attributeList) {
|
||
if (!allowedAttribute(attribute, allowedAttributes)) {
|
||
element.removeAttribute(attribute.nodeName);
|
||
}
|
||
}
|
||
}
|
||
return createdDocument.body.innerHTML;
|
||
}
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.8+incompatible/js/src/util/template-factory.js
|
||
var NAME2 = "TemplateFactory";
|
||
var Default2 = {
|
||
allowList: DefaultAllowlist,
|
||
content: {},
|
||
// { selector : text , selector2 : text2 , }
|
||
extraClass: "",
|
||
html: false,
|
||
sanitize: true,
|
||
sanitizeFn: null,
|
||
template: "<div></div>"
|
||
};
|
||
var DefaultType2 = {
|
||
allowList: "object",
|
||
content: "object",
|
||
extraClass: "(string|function)",
|
||
html: "boolean",
|
||
sanitize: "boolean",
|
||
sanitizeFn: "(null|function)",
|
||
template: "string"
|
||
};
|
||
var DefaultContentType = {
|
||
entry: "(string|element|function|null)",
|
||
selector: "(string|element)"
|
||
};
|
||
var TemplateFactory = class extends config_default {
|
||
constructor(config) {
|
||
super();
|
||
this._config = this._getConfig(config);
|
||
}
|
||
// Getters
|
||
static get Default() {
|
||
return Default2;
|
||
}
|
||
static get DefaultType() {
|
||
return DefaultType2;
|
||
}
|
||
static get NAME() {
|
||
return NAME2;
|
||
}
|
||
// Public
|
||
getContent() {
|
||
return Object.values(this._config.content).map((config) => this._resolvePossibleFunction(config)).filter(Boolean);
|
||
}
|
||
hasContent() {
|
||
return this.getContent().length > 0;
|
||
}
|
||
changeContent(content2) {
|
||
this._checkContent(content2);
|
||
this._config.content = __spreadValues(__spreadValues({}, this._config.content), content2);
|
||
return this;
|
||
}
|
||
toHtml() {
|
||
const templateWrapper = document.createElement("div");
|
||
templateWrapper.innerHTML = this._maybeSanitize(this._config.template);
|
||
for (const [selector2, text] of Object.entries(this._config.content)) {
|
||
this._setContent(templateWrapper, text, selector2);
|
||
}
|
||
const template = templateWrapper.children[0];
|
||
const extraClass = this._resolvePossibleFunction(this._config.extraClass);
|
||
if (extraClass) {
|
||
template.classList.add(...extraClass.split(" "));
|
||
}
|
||
return template;
|
||
}
|
||
// Private
|
||
_typeCheckConfig(config) {
|
||
super._typeCheckConfig(config);
|
||
this._checkContent(config.content);
|
||
}
|
||
_checkContent(arg) {
|
||
for (const [selector2, content2] of Object.entries(arg)) {
|
||
super._typeCheckConfig({ selector: selector2, entry: content2 }, DefaultContentType);
|
||
}
|
||
}
|
||
_setContent(template, content2, selector2) {
|
||
const templateElement = selector_engine_default.findOne(selector2, template);
|
||
if (!templateElement) {
|
||
return;
|
||
}
|
||
content2 = this._resolvePossibleFunction(content2);
|
||
if (!content2) {
|
||
templateElement.remove();
|
||
return;
|
||
}
|
||
if (isElement(content2)) {
|
||
this._putElementInTemplate(getElement(content2), templateElement);
|
||
return;
|
||
}
|
||
if (this._config.html) {
|
||
templateElement.innerHTML = this._maybeSanitize(content2);
|
||
return;
|
||
}
|
||
templateElement.textContent = content2;
|
||
}
|
||
_maybeSanitize(arg) {
|
||
return this._config.sanitize ? sanitizeHtml(arg, this._config.allowList, this._config.sanitizeFn) : arg;
|
||
}
|
||
_resolvePossibleFunction(arg) {
|
||
return execute(arg, [void 0, this]);
|
||
}
|
||
_putElementInTemplate(element, templateElement) {
|
||
if (this._config.html) {
|
||
templateElement.innerHTML = "";
|
||
templateElement.append(element);
|
||
return;
|
||
}
|
||
templateElement.textContent = element.textContent;
|
||
}
|
||
};
|
||
var template_factory_default = TemplateFactory;
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/bootstrap@v5.3.8+incompatible/js/src/tooltip.js
|
||
var NAME3 = "tooltip";
|
||
var DISALLOWED_ATTRIBUTES = /* @__PURE__ */ new Set(["sanitize", "allowList", "sanitizeFn"]);
|
||
var CLASS_NAME_FADE = "fade";
|
||
var CLASS_NAME_MODAL = "modal";
|
||
var CLASS_NAME_SHOW2 = "show";
|
||
var SELECTOR_TOOLTIP_INNER = ".tooltip-inner";
|
||
var SELECTOR_MODAL = `.${CLASS_NAME_MODAL}`;
|
||
var EVENT_MODAL_HIDE = "hide.bs.modal";
|
||
var TRIGGER_HOVER = "hover";
|
||
var TRIGGER_FOCUS = "focus";
|
||
var TRIGGER_CLICK = "click";
|
||
var TRIGGER_MANUAL = "manual";
|
||
var EVENT_HIDE2 = "hide";
|
||
var EVENT_HIDDEN2 = "hidden";
|
||
var EVENT_SHOW2 = "show";
|
||
var EVENT_SHOWN2 = "shown";
|
||
var EVENT_INSERTED = "inserted";
|
||
var EVENT_CLICK = "click";
|
||
var EVENT_FOCUSIN = "focusin";
|
||
var EVENT_FOCUSOUT = "focusout";
|
||
var EVENT_MOUSEENTER = "mouseenter";
|
||
var EVENT_MOUSELEAVE = "mouseleave";
|
||
var AttachmentMap = {
|
||
AUTO: "auto",
|
||
TOP: "top",
|
||
RIGHT: isRTL() ? "left" : "right",
|
||
BOTTOM: "bottom",
|
||
LEFT: isRTL() ? "right" : "left"
|
||
};
|
||
var Default3 = {
|
||
allowList: DefaultAllowlist,
|
||
animation: true,
|
||
boundary: "clippingParents",
|
||
container: false,
|
||
customClass: "",
|
||
delay: 0,
|
||
fallbackPlacements: ["top", "right", "bottom", "left"],
|
||
html: false,
|
||
offset: [0, 6],
|
||
placement: "top",
|
||
popperConfig: null,
|
||
sanitize: true,
|
||
sanitizeFn: null,
|
||
selector: false,
|
||
template: '<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
|
||
title: "",
|
||
trigger: "hover focus"
|
||
};
|
||
var DefaultType3 = {
|
||
allowList: "object",
|
||
animation: "boolean",
|
||
boundary: "(string|element)",
|
||
container: "(string|element|boolean)",
|
||
customClass: "(string|function)",
|
||
delay: "(number|object)",
|
||
fallbackPlacements: "array",
|
||
html: "boolean",
|
||
offset: "(array|string|function)",
|
||
placement: "(string|function)",
|
||
popperConfig: "(null|object|function)",
|
||
sanitize: "boolean",
|
||
sanitizeFn: "(null|function)",
|
||
selector: "(string|boolean)",
|
||
template: "string",
|
||
title: "(string|element|function)",
|
||
trigger: "string"
|
||
};
|
||
var Tooltip = class _Tooltip extends base_component_default {
|
||
constructor(element, config) {
|
||
if (typeof Popper === "undefined") {
|
||
throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org/docs/v2/)");
|
||
}
|
||
super(element, config);
|
||
this._isEnabled = true;
|
||
this._timeout = 0;
|
||
this._isHovered = null;
|
||
this._activeTrigger = {};
|
||
this._popper = null;
|
||
this._templateFactory = null;
|
||
this._newContent = null;
|
||
this.tip = null;
|
||
this._setListeners();
|
||
if (!this._config.selector) {
|
||
this._fixTitle();
|
||
}
|
||
}
|
||
// Getters
|
||
static get Default() {
|
||
return Default3;
|
||
}
|
||
static get DefaultType() {
|
||
return DefaultType3;
|
||
}
|
||
static get NAME() {
|
||
return NAME3;
|
||
}
|
||
// Public
|
||
enable() {
|
||
this._isEnabled = true;
|
||
}
|
||
disable() {
|
||
this._isEnabled = false;
|
||
}
|
||
toggleEnabled() {
|
||
this._isEnabled = !this._isEnabled;
|
||
}
|
||
toggle() {
|
||
if (!this._isEnabled) {
|
||
return;
|
||
}
|
||
if (this._isShown()) {
|
||
this._leave();
|
||
return;
|
||
}
|
||
this._enter();
|
||
}
|
||
dispose() {
|
||
clearTimeout(this._timeout);
|
||
event_handler_default.off(this._element.closest(SELECTOR_MODAL), EVENT_MODAL_HIDE, this._hideModalHandler);
|
||
if (this._element.getAttribute("data-bs-original-title")) {
|
||
this._element.setAttribute("title", this._element.getAttribute("data-bs-original-title"));
|
||
}
|
||
this._disposePopper();
|
||
super.dispose();
|
||
}
|
||
show() {
|
||
if (this._element.style.display === "none") {
|
||
throw new Error("Please use show on visible elements");
|
||
}
|
||
if (!(this._isWithContent() && this._isEnabled)) {
|
||
return;
|
||
}
|
||
const showEvent = event_handler_default.trigger(this._element, this.constructor.eventName(EVENT_SHOW2));
|
||
const shadowRoot = findShadowRoot(this._element);
|
||
const isInTheDom = (shadowRoot || this._element.ownerDocument.documentElement).contains(this._element);
|
||
if (showEvent.defaultPrevented || !isInTheDom) {
|
||
return;
|
||
}
|
||
this._disposePopper();
|
||
const tip = this._getTipElement();
|
||
this._element.setAttribute("aria-describedby", tip.getAttribute("id"));
|
||
const { container } = this._config;
|
||
if (!this._element.ownerDocument.documentElement.contains(this.tip)) {
|
||
container.append(tip);
|
||
event_handler_default.trigger(this._element, this.constructor.eventName(EVENT_INSERTED));
|
||
}
|
||
this._popper = this._createPopper(tip);
|
||
tip.classList.add(CLASS_NAME_SHOW2);
|
||
if ("ontouchstart" in document.documentElement) {
|
||
for (const element of [].concat(...document.body.children)) {
|
||
event_handler_default.on(element, "mouseover", noop);
|
||
}
|
||
}
|
||
const complete = () => {
|
||
event_handler_default.trigger(this._element, this.constructor.eventName(EVENT_SHOWN2));
|
||
if (this._isHovered === false) {
|
||
this._leave();
|
||
}
|
||
this._isHovered = false;
|
||
};
|
||
this._queueCallback(complete, this.tip, this._isAnimated());
|
||
}
|
||
hide() {
|
||
if (!this._isShown()) {
|
||
return;
|
||
}
|
||
const hideEvent = event_handler_default.trigger(this._element, this.constructor.eventName(EVENT_HIDE2));
|
||
if (hideEvent.defaultPrevented) {
|
||
return;
|
||
}
|
||
const tip = this._getTipElement();
|
||
tip.classList.remove(CLASS_NAME_SHOW2);
|
||
if ("ontouchstart" in document.documentElement) {
|
||
for (const element of [].concat(...document.body.children)) {
|
||
event_handler_default.off(element, "mouseover", noop);
|
||
}
|
||
}
|
||
this._activeTrigger[TRIGGER_CLICK] = false;
|
||
this._activeTrigger[TRIGGER_FOCUS] = false;
|
||
this._activeTrigger[TRIGGER_HOVER] = false;
|
||
this._isHovered = null;
|
||
const complete = () => {
|
||
if (this._isWithActiveTrigger()) {
|
||
return;
|
||
}
|
||
if (!this._isHovered) {
|
||
this._disposePopper();
|
||
}
|
||
this._element.removeAttribute("aria-describedby");
|
||
event_handler_default.trigger(this._element, this.constructor.eventName(EVENT_HIDDEN2));
|
||
};
|
||
this._queueCallback(complete, this.tip, this._isAnimated());
|
||
}
|
||
update() {
|
||
if (this._popper) {
|
||
this._popper.update();
|
||
}
|
||
}
|
||
// Protected
|
||
_isWithContent() {
|
||
return Boolean(this._getTitle());
|
||
}
|
||
_getTipElement() {
|
||
if (!this.tip) {
|
||
this.tip = this._createTipElement(this._newContent || this._getContentForTemplate());
|
||
}
|
||
return this.tip;
|
||
}
|
||
_createTipElement(content2) {
|
||
const tip = this._getTemplateFactory(content2).toHtml();
|
||
if (!tip) {
|
||
return null;
|
||
}
|
||
tip.classList.remove(CLASS_NAME_FADE, CLASS_NAME_SHOW2);
|
||
tip.classList.add(`bs-${this.constructor.NAME}-auto`);
|
||
const tipId = getUID(this.constructor.NAME).toString();
|
||
tip.setAttribute("id", tipId);
|
||
if (this._isAnimated()) {
|
||
tip.classList.add(CLASS_NAME_FADE);
|
||
}
|
||
return tip;
|
||
}
|
||
setContent(content2) {
|
||
this._newContent = content2;
|
||
if (this._isShown()) {
|
||
this._disposePopper();
|
||
this.show();
|
||
}
|
||
}
|
||
_getTemplateFactory(content2) {
|
||
if (this._templateFactory) {
|
||
this._templateFactory.changeContent(content2);
|
||
} else {
|
||
this._templateFactory = new template_factory_default(__spreadProps(__spreadValues({}, this._config), {
|
||
// the `content` var has to be after `this._config`
|
||
// to override config.content in case of popover
|
||
content: content2,
|
||
extraClass: this._resolvePossibleFunction(this._config.customClass)
|
||
}));
|
||
}
|
||
return this._templateFactory;
|
||
}
|
||
_getContentForTemplate() {
|
||
return {
|
||
[SELECTOR_TOOLTIP_INNER]: this._getTitle()
|
||
};
|
||
}
|
||
_getTitle() {
|
||
return this._resolvePossibleFunction(this._config.title) || this._element.getAttribute("data-bs-original-title");
|
||
}
|
||
// Private
|
||
_initializeOnDelegatedTarget(event) {
|
||
return this.constructor.getOrCreateInstance(event.delegateTarget, this._getDelegateConfig());
|
||
}
|
||
_isAnimated() {
|
||
return this._config.animation || this.tip && this.tip.classList.contains(CLASS_NAME_FADE);
|
||
}
|
||
_isShown() {
|
||
return this.tip && this.tip.classList.contains(CLASS_NAME_SHOW2);
|
||
}
|
||
_createPopper(tip) {
|
||
const placement = execute(this._config.placement, [this, tip, this._element]);
|
||
const attachment = AttachmentMap[placement.toUpperCase()];
|
||
return Popper.createPopper(this._element, tip, this._getPopperConfig(attachment));
|
||
}
|
||
_getOffset() {
|
||
const { offset } = this._config;
|
||
if (typeof offset === "string") {
|
||
return offset.split(",").map((value) => Number.parseInt(value, 10));
|
||
}
|
||
if (typeof offset === "function") {
|
||
return (popperData) => offset(popperData, this._element);
|
||
}
|
||
return offset;
|
||
}
|
||
_resolvePossibleFunction(arg) {
|
||
return execute(arg, [this._element, this._element]);
|
||
}
|
||
_getPopperConfig(attachment) {
|
||
const defaultBsPopperConfig = {
|
||
placement: attachment,
|
||
modifiers: [
|
||
{
|
||
name: "flip",
|
||
options: {
|
||
fallbackPlacements: this._config.fallbackPlacements
|
||
}
|
||
},
|
||
{
|
||
name: "offset",
|
||
options: {
|
||
offset: this._getOffset()
|
||
}
|
||
},
|
||
{
|
||
name: "preventOverflow",
|
||
options: {
|
||
boundary: this._config.boundary
|
||
}
|
||
},
|
||
{
|
||
name: "arrow",
|
||
options: {
|
||
element: `.${this.constructor.NAME}-arrow`
|
||
}
|
||
},
|
||
{
|
||
name: "preSetPlacement",
|
||
enabled: true,
|
||
phase: "beforeMain",
|
||
fn: (data) => {
|
||
this._getTipElement().setAttribute("data-popper-placement", data.state.placement);
|
||
}
|
||
}
|
||
]
|
||
};
|
||
return __spreadValues(__spreadValues({}, defaultBsPopperConfig), execute(this._config.popperConfig, [void 0, defaultBsPopperConfig]));
|
||
}
|
||
_setListeners() {
|
||
const triggers = this._config.trigger.split(" ");
|
||
for (const trigger of triggers) {
|
||
if (trigger === "click") {
|
||
event_handler_default.on(this._element, this.constructor.eventName(EVENT_CLICK), this._config.selector, (event) => {
|
||
const context = this._initializeOnDelegatedTarget(event);
|
||
context._activeTrigger[TRIGGER_CLICK] = !(context._isShown() && context._activeTrigger[TRIGGER_CLICK]);
|
||
context.toggle();
|
||
});
|
||
} else if (trigger !== TRIGGER_MANUAL) {
|
||
const eventIn = trigger === TRIGGER_HOVER ? this.constructor.eventName(EVENT_MOUSEENTER) : this.constructor.eventName(EVENT_FOCUSIN);
|
||
const eventOut = trigger === TRIGGER_HOVER ? this.constructor.eventName(EVENT_MOUSELEAVE) : this.constructor.eventName(EVENT_FOCUSOUT);
|
||
event_handler_default.on(this._element, eventIn, this._config.selector, (event) => {
|
||
const context = this._initializeOnDelegatedTarget(event);
|
||
context._activeTrigger[event.type === "focusin" ? TRIGGER_FOCUS : TRIGGER_HOVER] = true;
|
||
context._enter();
|
||
});
|
||
event_handler_default.on(this._element, eventOut, this._config.selector, (event) => {
|
||
const context = this._initializeOnDelegatedTarget(event);
|
||
context._activeTrigger[event.type === "focusout" ? TRIGGER_FOCUS : TRIGGER_HOVER] = context._element.contains(event.relatedTarget);
|
||
context._leave();
|
||
});
|
||
}
|
||
}
|
||
this._hideModalHandler = () => {
|
||
if (this._element) {
|
||
this.hide();
|
||
}
|
||
};
|
||
event_handler_default.on(this._element.closest(SELECTOR_MODAL), EVENT_MODAL_HIDE, this._hideModalHandler);
|
||
}
|
||
_fixTitle() {
|
||
const title = this._element.getAttribute("title");
|
||
if (!title) {
|
||
return;
|
||
}
|
||
if (!this._element.getAttribute("aria-label") && !this._element.textContent.trim()) {
|
||
this._element.setAttribute("aria-label", title);
|
||
}
|
||
this._element.setAttribute("data-bs-original-title", title);
|
||
this._element.removeAttribute("title");
|
||
}
|
||
_enter() {
|
||
if (this._isShown() || this._isHovered) {
|
||
this._isHovered = true;
|
||
return;
|
||
}
|
||
this._isHovered = true;
|
||
this._setTimeout(() => {
|
||
if (this._isHovered) {
|
||
this.show();
|
||
}
|
||
}, this._config.delay.show);
|
||
}
|
||
_leave() {
|
||
if (this._isWithActiveTrigger()) {
|
||
return;
|
||
}
|
||
this._isHovered = false;
|
||
this._setTimeout(() => {
|
||
if (!this._isHovered) {
|
||
this.hide();
|
||
}
|
||
}, this._config.delay.hide);
|
||
}
|
||
_setTimeout(handler, timeout) {
|
||
clearTimeout(this._timeout);
|
||
this._timeout = setTimeout(handler, timeout);
|
||
}
|
||
_isWithActiveTrigger() {
|
||
return Object.values(this._activeTrigger).includes(true);
|
||
}
|
||
_getConfig(config) {
|
||
const dataAttributes = manipulator_default.getDataAttributes(this._element);
|
||
for (const dataAttribute of Object.keys(dataAttributes)) {
|
||
if (DISALLOWED_ATTRIBUTES.has(dataAttribute)) {
|
||
delete dataAttributes[dataAttribute];
|
||
}
|
||
}
|
||
config = __spreadValues(__spreadValues({}, dataAttributes), typeof config === "object" && config ? config : {});
|
||
config = this._mergeConfigObj(config);
|
||
config = this._configAfterMerge(config);
|
||
this._typeCheckConfig(config);
|
||
return config;
|
||
}
|
||
_configAfterMerge(config) {
|
||
config.container = config.container === false ? document.body : getElement(config.container);
|
||
if (typeof config.delay === "number") {
|
||
config.delay = {
|
||
show: config.delay,
|
||
hide: config.delay
|
||
};
|
||
}
|
||
if (typeof config.title === "number") {
|
||
config.title = config.title.toString();
|
||
}
|
||
if (typeof config.content === "number") {
|
||
config.content = config.content.toString();
|
||
}
|
||
return config;
|
||
}
|
||
_getDelegateConfig() {
|
||
const config = {};
|
||
for (const [key, value] of Object.entries(this._config)) {
|
||
if (this.constructor.Default[key] !== value) {
|
||
config[key] = value;
|
||
}
|
||
}
|
||
config.selector = false;
|
||
config.trigger = "manual";
|
||
return config;
|
||
}
|
||
_disposePopper() {
|
||
if (this._popper) {
|
||
this._popper.destroy();
|
||
this._popper = null;
|
||
}
|
||
if (this.tip) {
|
||
this.tip.remove();
|
||
this.tip = null;
|
||
}
|
||
}
|
||
// Static
|
||
static jQueryInterface(config) {
|
||
return this.each(function() {
|
||
const data = _Tooltip.getOrCreateInstance(this, config);
|
||
if (typeof config !== "string") {
|
||
return;
|
||
}
|
||
if (typeof data[config] === "undefined") {
|
||
throw new TypeError(`No method named "${config}"`);
|
||
}
|
||
data[config]();
|
||
});
|
||
}
|
||
};
|
||
defineJQueryPlugin(Tooltip);
|
||
var tooltip_default = Tooltip;
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/git.comprofix.com/mmckinnon/hugo-theme-chirpy@v0.0.0-20250906020401-98acc1f743ac/assets/js/modules/components/clipboard.js
|
||
var clipboardSelector = ".code-header>button";
|
||
var ICON_DEFAULT = "far fa-clipboard";
|
||
var ICON_SUCCESS = "fas fa-check";
|
||
var ATTR_TIMEOUT = "timeout";
|
||
var ATTR_TITLE_SUCCEED = "data-title-succeed";
|
||
var ATTR_TITLE_ORIGIN = "data-bs-original-title";
|
||
var TIMEOUT = 2e3;
|
||
function isLocked(node) {
|
||
if (node.hasAttribute(ATTR_TIMEOUT)) {
|
||
let timeout = node.getAttribute(ATTR_TIMEOUT);
|
||
if (Number(timeout) > Date.now()) {
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
function lock(node) {
|
||
node.setAttribute(ATTR_TIMEOUT, Date.now() + TIMEOUT);
|
||
}
|
||
function unlock(node) {
|
||
node.removeAttribute(ATTR_TIMEOUT);
|
||
}
|
||
function showTooltip(btn) {
|
||
const succeedTitle = btn.getAttribute(ATTR_TITLE_SUCCEED);
|
||
btn.setAttribute(ATTR_TITLE_ORIGIN, succeedTitle);
|
||
tooltip_default.getInstance(btn).show();
|
||
}
|
||
function hideTooltip(btn) {
|
||
tooltip_default.getInstance(btn).hide();
|
||
btn.removeAttribute(ATTR_TITLE_ORIGIN);
|
||
}
|
||
function setSuccessIcon(btn) {
|
||
const icon = btn.children[0];
|
||
icon.setAttribute("class", ICON_SUCCESS);
|
||
}
|
||
function resumeIcon(btn) {
|
||
const icon = btn.children[0];
|
||
icon.setAttribute("class", ICON_DEFAULT);
|
||
}
|
||
function setCodeClipboard() {
|
||
const clipboardList = document.querySelectorAll(clipboardSelector);
|
||
if (clipboardList.length === 0) {
|
||
return;
|
||
}
|
||
const clipboard = new ClipboardJS(clipboardSelector, {
|
||
target: (trigger) => {
|
||
const codeBlock = trigger.parentNode.nextElementSibling;
|
||
return codeBlock.querySelectorAll("code")[1];
|
||
}
|
||
});
|
||
[...clipboardList].map(
|
||
(elem) => new tooltip_default(elem, {
|
||
placement: "left"
|
||
})
|
||
);
|
||
clipboard.on("success", (e) => {
|
||
const trigger = e.trigger;
|
||
e.clearSelection();
|
||
if (isLocked(trigger)) {
|
||
return;
|
||
}
|
||
setSuccessIcon(trigger);
|
||
showTooltip(trigger);
|
||
lock(trigger);
|
||
setTimeout(() => {
|
||
hideTooltip(trigger);
|
||
resumeIcon(trigger);
|
||
unlock(trigger);
|
||
}, TIMEOUT);
|
||
});
|
||
}
|
||
function setLinkClipboard() {
|
||
const btnCopyLink = document.getElementById("copy-link");
|
||
if (btnCopyLink === null) {
|
||
return;
|
||
}
|
||
btnCopyLink.addEventListener("click", (e) => {
|
||
const target = e.target;
|
||
if (isLocked(target)) {
|
||
return;
|
||
}
|
||
navigator.clipboard.writeText(window.location.href).then(() => {
|
||
const defaultTitle = target.getAttribute(ATTR_TITLE_ORIGIN);
|
||
const succeedTitle = target.getAttribute(ATTR_TITLE_SUCCEED);
|
||
target.setAttribute(ATTR_TITLE_ORIGIN, succeedTitle);
|
||
tooltip_default.getInstance(target).show();
|
||
lock(target);
|
||
setTimeout(() => {
|
||
target.setAttribute(ATTR_TITLE_ORIGIN, defaultTitle);
|
||
unlock(target);
|
||
}, TIMEOUT);
|
||
});
|
||
});
|
||
btnCopyLink.addEventListener("mouseleave", (e) => {
|
||
tooltip_default.getInstance(e.target).hide();
|
||
});
|
||
}
|
||
function initClipboard() {
|
||
setCodeClipboard();
|
||
setLinkClipboard();
|
||
}
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/git.comprofix.com/mmckinnon/hugo-theme-chirpy@v0.0.0-20250906020401-98acc1f743ac/assets/js/modules/components/img-loading.js
|
||
var ATTR_DATA_SRC = "data-src";
|
||
var ATTR_DATA_LQIP = "data-lqip";
|
||
var cover = {
|
||
SHIMMER: "shimmer",
|
||
BLUR: "blur"
|
||
};
|
||
function removeCover(clzss) {
|
||
this.parentElement.classList.remove(clzss);
|
||
}
|
||
function handleImage() {
|
||
if (!this.complete) {
|
||
return;
|
||
}
|
||
if (this.hasAttribute(ATTR_DATA_LQIP)) {
|
||
removeCover.call(this, cover.BLUR);
|
||
} else {
|
||
removeCover.call(this, cover.SHIMMER);
|
||
}
|
||
}
|
||
function switchLQIP() {
|
||
const src = this.getAttribute(ATTR_DATA_SRC);
|
||
this.setAttribute("src", encodeURI(src));
|
||
this.removeAttribute(ATTR_DATA_SRC);
|
||
}
|
||
function loadImg() {
|
||
const images = document.querySelectorAll("article img");
|
||
if (images.length === 0) {
|
||
return;
|
||
}
|
||
images.forEach((img) => {
|
||
img.addEventListener("load", handleImage);
|
||
});
|
||
document.querySelectorAll('article img[loading="lazy"]').forEach((img) => {
|
||
if (img.complete) {
|
||
removeCover.call(img, cover.SHIMMER);
|
||
}
|
||
});
|
||
const lqips = document.querySelectorAll(
|
||
`article img[${ATTR_DATA_LQIP}="true"]`
|
||
);
|
||
if (lqips.length) {
|
||
lqips.forEach((lqip) => {
|
||
switchLQIP.call(lqip);
|
||
});
|
||
}
|
||
}
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/git.comprofix.com/mmckinnon/hugo-theme-chirpy@v0.0.0-20250906020401-98acc1f743ac/assets/js/modules/components/img-popup.js
|
||
var lightImages = ".popup:not(.dark)";
|
||
var darkImages = ".popup:not(.light)";
|
||
var selector = lightImages;
|
||
function updateImages(current, reverse) {
|
||
if (selector === lightImages) {
|
||
selector = darkImages;
|
||
} else {
|
||
selector = lightImages;
|
||
}
|
||
if (reverse === null) {
|
||
reverse = GLightbox({ selector: `${selector}` });
|
||
}
|
||
[current, reverse] = [reverse, current];
|
||
}
|
||
function imgPopup() {
|
||
if (document.querySelector(".popup") === null) {
|
||
return;
|
||
}
|
||
const hasDualImages = !(document.querySelector(".popup.light") === null && document.querySelector(".popup.dark") === null);
|
||
if (Theme.visualState === Theme.DARK) {
|
||
selector = darkImages;
|
||
}
|
||
let current = GLightbox({ selector: `${selector}` });
|
||
if (hasDualImages && Theme.switchable) {
|
||
let reverse = null;
|
||
window.addEventListener("message", (event) => {
|
||
if (event.source === window && event.data && event.data.id === Theme.ID) {
|
||
updateImages(current, reverse);
|
||
}
|
||
});
|
||
}
|
||
}
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/git.comprofix.com/mmckinnon/hugo-theme-chirpy@v0.0.0-20250906020401-98acc1f743ac/assets/js/modules/components/locale-datetime.js
|
||
var LocaleHelper = class {
|
||
static get attrTimestamp() {
|
||
return "data-ts";
|
||
}
|
||
static get attrDateFormat() {
|
||
return "data-df";
|
||
}
|
||
static get locale() {
|
||
return document.documentElement.getAttribute("lang").substring(0, 2);
|
||
}
|
||
static getTimestamp(elem) {
|
||
return Number(elem.getAttribute(this.attrTimestamp));
|
||
}
|
||
static getDateFormat(elem) {
|
||
return elem.getAttribute(this.attrDateFormat);
|
||
}
|
||
};
|
||
function initLocaleDatetime() {
|
||
dayjs.locale(LocaleHelper.locale);
|
||
dayjs.extend(window.dayjs_plugin_localizedFormat);
|
||
document.querySelectorAll(`[${LocaleHelper.attrTimestamp}]`).forEach((elem) => {
|
||
const date = dayjs.unix(LocaleHelper.getTimestamp(elem));
|
||
const text = date.format(LocaleHelper.getDateFormat(elem));
|
||
elem.textContent = text;
|
||
elem.removeAttribute(LocaleHelper.attrTimestamp);
|
||
elem.removeAttribute(LocaleHelper.attrDateFormat);
|
||
if (elem.hasAttribute("data-bs-toggle") && elem.getAttribute("data-bs-toggle") === "tooltip") {
|
||
const tooltipText = date.format("llll");
|
||
elem.setAttribute("data-bs-title", tooltipText);
|
||
}
|
||
});
|
||
}
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/git.comprofix.com/mmckinnon/hugo-theme-chirpy@v0.0.0-20250906020401-98acc1f743ac/assets/js/modules/components/toc/toc-mobile.js
|
||
var $tocBar = document.getElementById("toc-bar");
|
||
var $soloTrigger = document.getElementById("toc-solo-trigger");
|
||
var $triggers = document.getElementsByClassName("toc-trigger");
|
||
var $popup = document.getElementById("toc-popup");
|
||
var $btnClose = document.getElementById("toc-popup-close");
|
||
var SCROLL_LOCK = "overflow-hidden";
|
||
var CLOSING = "closing";
|
||
var _invisible, _barHeight;
|
||
var _TocMobile = class _TocMobile {
|
||
static initBar() {
|
||
const observer = new IntersectionObserver(
|
||
(entries) => {
|
||
entries.forEach((entry) => {
|
||
$tocBar.classList.toggle("invisible", entry.isIntersecting);
|
||
});
|
||
},
|
||
{ rootMargin: `-${__privateGet(this, _barHeight)}px 0px 0px 0px` }
|
||
);
|
||
observer.observe($soloTrigger);
|
||
__privateSet(this, _invisible, false);
|
||
}
|
||
static listenAnchors() {
|
||
const $anchors = document.getElementsByClassName("toc-link");
|
||
[...$anchors].forEach((anchor) => {
|
||
anchor.onclick = () => this.hidePopup();
|
||
});
|
||
}
|
||
static refresh() {
|
||
if (__privateGet(this, _invisible)) {
|
||
this.initComponents();
|
||
}
|
||
tocbot.refresh(this.options);
|
||
this.listenAnchors();
|
||
}
|
||
static get popupOpened() {
|
||
return $popup.open;
|
||
}
|
||
static showPopup() {
|
||
this.lockScroll(true);
|
||
$popup.showModal();
|
||
const activeItem = $popup.querySelector("li.is-active-li");
|
||
activeItem.scrollIntoView({ block: "center" });
|
||
}
|
||
static hidePopup() {
|
||
$popup.toggleAttribute(CLOSING);
|
||
$popup.addEventListener(
|
||
"animationend",
|
||
() => {
|
||
$popup.toggleAttribute(CLOSING);
|
||
$popup.close();
|
||
},
|
||
{ once: true }
|
||
);
|
||
this.lockScroll(false);
|
||
}
|
||
static lockScroll(enable) {
|
||
document.documentElement.classList.toggle(SCROLL_LOCK, enable);
|
||
document.body.classList.toggle(SCROLL_LOCK, enable);
|
||
}
|
||
static clickBackdrop(event) {
|
||
if ($popup.hasAttribute(CLOSING)) {
|
||
return;
|
||
}
|
||
const rect = event.target.getBoundingClientRect();
|
||
if (event.clientX < rect.left || event.clientX > rect.right || event.clientY < rect.top || event.clientY > rect.bottom) {
|
||
this.hidePopup();
|
||
}
|
||
}
|
||
static initComponents() {
|
||
this.initBar();
|
||
[...$triggers].forEach((trigger) => {
|
||
trigger.onclick = () => this.showPopup();
|
||
});
|
||
$popup.onclick = (e) => this.clickBackdrop(e);
|
||
$btnClose.onclick = () => this.hidePopup();
|
||
$popup.oncancel = (e) => {
|
||
e.preventDefault();
|
||
this.hidePopup();
|
||
};
|
||
}
|
||
static init() {
|
||
tocbot.init(this.options);
|
||
this.listenAnchors();
|
||
this.initComponents();
|
||
}
|
||
};
|
||
_invisible = new WeakMap();
|
||
_barHeight = new WeakMap();
|
||
__privateAdd(_TocMobile, _invisible, true);
|
||
__privateAdd(_TocMobile, _barHeight, 16 * 3);
|
||
// 3rem
|
||
__publicField(_TocMobile, "options", {
|
||
tocSelector: "#toc-popup-content",
|
||
contentSelector: ".content",
|
||
ignoreSelector: "[data-toc-skip]",
|
||
headingSelector: "h2, h3, h4",
|
||
orderedList: false,
|
||
scrollSmooth: false,
|
||
collapseDepth: 4,
|
||
headingsOffset: __privateGet(_TocMobile, _barHeight)
|
||
});
|
||
var TocMobile = _TocMobile;
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/git.comprofix.com/mmckinnon/hugo-theme-chirpy@v0.0.0-20250906020401-98acc1f743ac/assets/js/modules/components/toc/toc-desktop.js
|
||
var TocDesktop = class {
|
||
static refresh() {
|
||
tocbot.refresh(this.options);
|
||
}
|
||
static init() {
|
||
tocbot.init(this.options);
|
||
}
|
||
};
|
||
/* Tocbot options Ref: https://github.com/tscanlin/tocbot#usage */
|
||
__publicField(TocDesktop, "options", {
|
||
tocSelector: "#toc",
|
||
contentSelector: ".content",
|
||
ignoreSelector: "[data-toc-skip]",
|
||
headingSelector: "h2, h3, h4",
|
||
orderedList: false,
|
||
scrollSmooth: false,
|
||
headingsOffset: 16 * 2
|
||
// 2rem
|
||
});
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/git.comprofix.com/mmckinnon/hugo-theme-chirpy@v0.0.0-20250906020401-98acc1f743ac/assets/js/modules/components/toc.js
|
||
var desktopMode = matchMedia("(min-width: 1200px)");
|
||
function refresh(e) {
|
||
if (e.matches) {
|
||
if (TocMobile.popupOpened) {
|
||
TocMobile.hidePopup();
|
||
}
|
||
TocDesktop.refresh();
|
||
} else {
|
||
TocMobile.refresh();
|
||
}
|
||
}
|
||
function init() {
|
||
if (document.querySelector('main>article[data-toc="true"]') === null) {
|
||
return;
|
||
}
|
||
if (desktopMode.matches) {
|
||
TocDesktop.init();
|
||
} else {
|
||
TocMobile.init();
|
||
}
|
||
const $tocWrapper = document.getElementById("toc-wrapper");
|
||
$tocWrapper.classList.remove("invisible");
|
||
desktopMode.onchange = refresh;
|
||
}
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/git.comprofix.com/mmckinnon/hugo-theme-chirpy@v0.0.0-20250906020401-98acc1f743ac/assets/js/modules/components/mermaid.js
|
||
var MERMAID = "mermaid";
|
||
var themeMapper = Theme.getThemeMapper("default", "dark");
|
||
function refreshTheme(event) {
|
||
if (event.source === window && event.data && event.data.id === Theme.ID) {
|
||
const mermaidList = document.getElementsByClassName(MERMAID);
|
||
[...mermaidList].forEach((elem) => {
|
||
const svgCode = elem.previousSibling.children.item(0).textContent;
|
||
elem.textContent = svgCode;
|
||
elem.removeAttribute("data-processed");
|
||
});
|
||
const newTheme = themeMapper[Theme.visualState];
|
||
mermaid.initialize({ theme: newTheme });
|
||
mermaid.init(null, `.${MERMAID}`);
|
||
}
|
||
}
|
||
function setNode(elem) {
|
||
const svgCode = elem.textContent;
|
||
const backup = elem.parentElement;
|
||
backup.classList.add("d-none");
|
||
const mermaid2 = document.createElement("pre");
|
||
mermaid2.classList.add(MERMAID);
|
||
const text = document.createTextNode(svgCode);
|
||
mermaid2.appendChild(text);
|
||
backup.after(mermaid2);
|
||
}
|
||
function loadMermaid() {
|
||
if (typeof mermaid === "undefined" || typeof mermaid.initialize !== "function") {
|
||
return;
|
||
}
|
||
const initTheme = themeMapper[Theme.visualState];
|
||
let mermaidConf = {
|
||
theme: initTheme
|
||
};
|
||
const basicList = document.getElementsByClassName("language-mermaid");
|
||
[...basicList].forEach(setNode);
|
||
mermaid.initialize(mermaidConf);
|
||
if (Theme.switchable) {
|
||
window.addEventListener("message", refreshTheme);
|
||
}
|
||
}
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/git.comprofix.com/mmckinnon/hugo-theme-chirpy@v0.0.0-20250906020401-98acc1f743ac/assets/js/modules/components/mode-toggle.js
|
||
var $toggle = document.getElementById("mode-toggle");
|
||
function modeWatcher() {
|
||
if (!$toggle) {
|
||
return;
|
||
}
|
||
$toggle.addEventListener("click", () => {
|
||
Theme.flip();
|
||
});
|
||
}
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/git.comprofix.com/mmckinnon/hugo-theme-chirpy@v0.0.0-20250906020401-98acc1f743ac/assets/js/modules/components/back-to-top.js
|
||
function back2top() {
|
||
const btn = document.getElementById("back-to-top");
|
||
window.addEventListener("scroll", () => {
|
||
if (window.scrollY > 50) {
|
||
btn.classList.add("show");
|
||
} else {
|
||
btn.classList.remove("show");
|
||
}
|
||
});
|
||
btn.addEventListener("click", () => {
|
||
window.scrollTo({ top: 0 });
|
||
});
|
||
}
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/git.comprofix.com/mmckinnon/hugo-theme-chirpy@v0.0.0-20250906020401-98acc1f743ac/assets/js/modules/components/tooltip-loader.js
|
||
function loadTooptip() {
|
||
const tooltipTriggerList = document.querySelectorAll(
|
||
'[data-bs-toggle="tooltip"]'
|
||
);
|
||
[...tooltipTriggerList].map(
|
||
(tooltipTriggerEl) => new tooltip_default(tooltipTriggerEl)
|
||
);
|
||
}
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/git.comprofix.com/mmckinnon/hugo-theme-chirpy@v0.0.0-20250906020401-98acc1f743ac/assets/js/modules/layouts/basic.js
|
||
function basic() {
|
||
modeWatcher();
|
||
back2top();
|
||
loadTooptip();
|
||
}
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/git.comprofix.com/mmckinnon/hugo-theme-chirpy@v0.0.0-20250906020401-98acc1f743ac/assets/js/modules/layouts/sidebar.js
|
||
var ATTR_DISPLAY = "sidebar-display";
|
||
var $sidebar = document.getElementById("sidebar");
|
||
var $trigger = document.getElementById("sidebar-trigger");
|
||
var $mask = document.getElementById("mask");
|
||
var _isExpanded;
|
||
var SidebarUtil = class {
|
||
static toggle() {
|
||
__privateSet(this, _isExpanded, !__privateGet(this, _isExpanded));
|
||
document.body.toggleAttribute(ATTR_DISPLAY, __privateGet(this, _isExpanded));
|
||
$sidebar.classList.toggle("z-2", __privateGet(this, _isExpanded));
|
||
$mask.classList.toggle("d-none", !__privateGet(this, _isExpanded));
|
||
}
|
||
};
|
||
_isExpanded = new WeakMap();
|
||
__privateAdd(SidebarUtil, _isExpanded, false);
|
||
function initSidebar() {
|
||
$trigger.onclick = $mask.onclick = () => SidebarUtil.toggle();
|
||
}
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/git.comprofix.com/mmckinnon/hugo-theme-chirpy@v0.0.0-20250906020401-98acc1f743ac/assets/js/modules/components/search-display.js
|
||
var btnSbTrigger = document.getElementById("sidebar-trigger");
|
||
var btnSearchTrigger = document.getElementById("search-trigger");
|
||
var btnCancel = document.getElementById("search-cancel");
|
||
var content = document.querySelectorAll("#main-wrapper>.container>.row");
|
||
var topbarTitle = document.getElementById("topbar-title");
|
||
var search = document.getElementById("search");
|
||
var resultWrapper = document.getElementById("search-result-wrapper");
|
||
var results = document.getElementById("search-results");
|
||
var input = document.getElementById("search-input");
|
||
var hints = document.getElementById("search-hints");
|
||
var LOADED = "d-block";
|
||
var UNLOADED = "d-none";
|
||
var FOCUS = "input-focus";
|
||
var FLEX = "d-flex";
|
||
var MobileSearchBar = class {
|
||
static on() {
|
||
btnSbTrigger.classList.add(UNLOADED);
|
||
topbarTitle.classList.add(UNLOADED);
|
||
btnSearchTrigger.classList.add(UNLOADED);
|
||
search.classList.add(FLEX);
|
||
btnCancel.classList.add(LOADED);
|
||
}
|
||
static off() {
|
||
btnCancel.classList.remove(LOADED);
|
||
search.classList.remove(FLEX);
|
||
btnSbTrigger.classList.remove(UNLOADED);
|
||
topbarTitle.classList.remove(UNLOADED);
|
||
btnSearchTrigger.classList.remove(UNLOADED);
|
||
}
|
||
};
|
||
var ResultSwitch = class {
|
||
static on() {
|
||
if (!this.resultVisible) {
|
||
resultWrapper.classList.remove(UNLOADED);
|
||
content.forEach((el) => {
|
||
el.classList.add(UNLOADED);
|
||
});
|
||
this.resultVisible = true;
|
||
}
|
||
}
|
||
static off() {
|
||
if (this.resultVisible) {
|
||
results.innerHTML = "";
|
||
if (hints.classList.contains(UNLOADED)) {
|
||
hints.classList.remove(UNLOADED);
|
||
}
|
||
resultWrapper.classList.add(UNLOADED);
|
||
content.forEach((el) => {
|
||
el.classList.remove(UNLOADED);
|
||
});
|
||
input.textContent = "";
|
||
this.resultVisible = false;
|
||
}
|
||
}
|
||
};
|
||
__publicField(ResultSwitch, "resultVisible", false);
|
||
function isMobileView() {
|
||
return btnCancel.classList.contains(LOADED);
|
||
}
|
||
function displaySearch() {
|
||
btnSearchTrigger.addEventListener("click", () => {
|
||
MobileSearchBar.on();
|
||
ResultSwitch.on();
|
||
input.focus();
|
||
});
|
||
btnCancel.addEventListener("click", () => {
|
||
MobileSearchBar.off();
|
||
ResultSwitch.off();
|
||
});
|
||
input.addEventListener("focus", () => {
|
||
search.classList.add(FOCUS);
|
||
});
|
||
input.addEventListener("focusout", () => {
|
||
search.classList.remove(FOCUS);
|
||
});
|
||
input.addEventListener("input", () => {
|
||
if (input.value === "") {
|
||
if (isMobileView()) {
|
||
hints.classList.remove(UNLOADED);
|
||
} else {
|
||
ResultSwitch.off();
|
||
}
|
||
} else {
|
||
ResultSwitch.on();
|
||
if (isMobileView()) {
|
||
hints.classList.add(UNLOADED);
|
||
}
|
||
}
|
||
});
|
||
}
|
||
|
||
// ns-hugo-imp:/home/mmckinnon/.cache/hugo_cache/modules/filecache/modules/pkg/mod/git.comprofix.com/mmckinnon/hugo-theme-chirpy@v0.0.0-20250906020401-98acc1f743ac/assets/js/modules/layouts/topbar.js
|
||
function initTopbar() {
|
||
displaySearch();
|
||
}
|
||
|
||
// <stdin>
|
||
loadImg();
|
||
init();
|
||
imgPopup();
|
||
initSidebar();
|
||
initLocaleDatetime();
|
||
initClipboard();
|
||
initTopbar();
|
||
loadMermaid();
|
||
basic();
|
||
})();
|