mirror of
https://github.com/jbowdre/runtimeterror.git
synced 2024-11-09 17:42:19 +00:00
52 lines
2 KiB
JavaScript
52 lines
2 KiB
JavaScript
// adapted from https://digitaldrummerj.me/hugo-add-copy-code-snippet-button/
|
|
|
|
function createCopyButton(highlightDiv) {
|
|
const button = document.createElement("button");
|
|
button.className = "copy-code-button";
|
|
button.type = "button";
|
|
button.innerText = "Copy";
|
|
button.addEventListener("click", () => copyCodeToClipboard(button, highlightDiv));
|
|
highlightDiv.insertBefore(button, highlightDiv.firstChild);
|
|
const wrapper = document.createElement("div");
|
|
wrapper.className = "highlight-wrapper";
|
|
highlightDiv.parentNode.insertBefore(wrapper, highlightDiv);
|
|
wrapper.appendChild(highlightDiv);
|
|
}
|
|
|
|
document.querySelectorAll(".highlight").forEach((highlightDiv) => createCopyButton(highlightDiv));
|
|
|
|
async function copyCodeToClipboard(button, highlightDiv) {
|
|
// capture all code lines in the selected block which aren't classed `nocopy` or `line-remove`
|
|
let codeToCopy = highlightDiv.querySelectorAll(":last-child > .torchlight > code > .line:not(.nocopy, .line-remove)");
|
|
// remove child elements with class `line-number` and `diff-indicator diff-indicator-add`
|
|
codeToCopy = Array.from(codeToCopy).reduce((accumulator, line) => {
|
|
return accumulator + Array.from(line.children).filter(
|
|
(child) => child.className != "line-number" && child.className != "diff-indicator diff-indicator-add"
|
|
).reduce((accumulator, child) => accumulator + child.innerText, "") + "\n";
|
|
}, "");
|
|
try {
|
|
var result = await navigator.permissions.query({ name: "clipboard-write" });
|
|
if (result.state == "granted" || result.state == "prompt") {
|
|
await navigator.clipboard.writeText(codeToCopy);
|
|
} else {
|
|
button.blur();
|
|
button.innerText = "Error!";
|
|
setTimeout(function () {
|
|
button.innerText = "Copy";
|
|
}, 2000);
|
|
}
|
|
} catch (_) {
|
|
button.blur();
|
|
button.innerText = "Error!";
|
|
setTimeout(function () {
|
|
button.innerText = "Copy";
|
|
}, 2000);
|
|
} finally {
|
|
button.blur();
|
|
button.innerText = "Copied!";
|
|
setTimeout(function () {
|
|
button.innerText = "Copy";
|
|
}, 2000);
|
|
}
|
|
}
|
|
|