Spaces:
Running
Running
File size: 4,063 Bytes
19dab08 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | "use strict";
const receiptToggle = document.querySelector("[data-receipt-toggle]");
const passReceipt = document.querySelector('[data-receipt="pass"]');
const staleReceipt = document.querySelector('[data-receipt="stale"]');
if (receiptToggle && passReceipt && staleReceipt) {
receiptToggle.addEventListener("click", () => {
const showStale = receiptToggle.getAttribute("aria-pressed") !== "true";
receiptToggle.setAttribute("aria-pressed", String(showStale));
receiptToggle.textContent = showStale ? "Show current state" : "Show stale state";
passReceipt.hidden = showStale;
staleReceipt.hidden = !showStale;
});
}
document.querySelectorAll("[data-tabs]").forEach((tabs) => {
const tabButtons = [...tabs.querySelectorAll('[role="tab"]')];
const panels = [...tabs.querySelectorAll('[role="tabpanel"]')];
const selectTab = (button, moveFocus = true) => {
const selectedName = button.dataset.tab;
tabButtons.forEach((candidate) => {
const selected = candidate === button;
candidate.setAttribute("aria-selected", String(selected));
candidate.tabIndex = selected ? 0 : -1;
});
panels.forEach((panel) => {
panel.hidden = panel.dataset.panel !== selectedName;
});
if (moveFocus) {
button.focus();
}
};
tabButtons.forEach((button, index) => {
button.addEventListener("click", () => selectTab(button, false));
button.addEventListener("keydown", (event) => {
let nextIndex;
if (event.key === "ArrowRight" || event.key === "ArrowDown") {
nextIndex = (index + 1) % tabButtons.length;
} else if (event.key === "ArrowLeft" || event.key === "ArrowUp") {
nextIndex = (index - 1 + tabButtons.length) % tabButtons.length;
} else if (event.key === "Home") {
nextIndex = 0;
} else if (event.key === "End") {
nextIndex = tabButtons.length - 1;
} else {
return;
}
event.preventDefault();
selectTab(tabButtons[nextIndex]);
});
});
});
const copyText = async (value) => {
if (navigator.clipboard && window.isSecureContext) {
await navigator.clipboard.writeText(value);
return;
}
const input = document.createElement("textarea");
input.value = value;
input.setAttribute("readonly", "");
input.style.position = "fixed";
input.style.opacity = "0";
document.body.appendChild(input);
input.select();
const copied = document.execCommand("copy");
input.remove();
if (!copied) {
throw new Error("Copy command was not accepted");
}
};
document.querySelectorAll("[data-copy]").forEach((button) => {
button.addEventListener("click", async () => {
const originalLabel = button.textContent;
const target = button.dataset.copyTarget
? document.querySelector(button.dataset.copyTarget)
: null;
const value = target?.textContent || button.dataset.copy || "";
try {
await copyText(value);
button.textContent = "Copied";
} catch {
button.textContent = "Select text";
const code = button.parentElement?.querySelector("code");
const selection = window.getSelection();
if (code && selection) {
const range = document.createRange();
range.selectNodeContents(code);
selection.removeAllRanges();
selection.addRange(range);
}
}
window.setTimeout(() => {
button.textContent = originalLabel;
}, 1800);
});
});
document.querySelectorAll("[data-readme-source]").forEach(async (target) => {
try {
const response = await fetch(target.dataset.readmeSource, { cache: "no-cache" });
if (!response.ok) {
throw new Error(`README request failed with ${response.status}`);
}
target.textContent = await response.text();
} catch {
target.textContent = "The full README could not be loaded here. Open it in the GitHub repository instead.";
target.dataset.loadError = "true";
}
});
document.querySelectorAll("[data-year]").forEach((element) => {
element.textContent = String(new Date().getFullYear());
});
|