-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcode-copy.js
34 lines (34 loc) · 1.34 KB
/
code-copy.js
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
(() => {
// <stdin>
(function() {
const copyIcon = document.getElementById("code-copy").innerHTML;
const copyIconDone = document.getElementById("code-copy-done").innerHTML;
function createCopyButton(highlightDiv) {
const button = document.createElement("button");
button.className = "right-1 top-1 absolute";
button.type = "button";
button.innerHTML = copyIcon;
button.addEventListener("click", () => copyCodeToClipboard(button, highlightDiv));
highlightDiv.insertBefore(button, highlightDiv.firstChild);
}
document.querySelectorAll(".highlight").forEach((highlightDiv) => createCopyButton(highlightDiv));
async function copyCodeToClipboard(button, highlightDiv) {
let codeToCopy = highlightDiv.querySelector("code").textContent;
if (highlightDiv.querySelector("table")) {
codeToCopy = highlightDiv.querySelector("td:last-child code").textContent;
}
try {
var result = await navigator.permissions.query({ name: "clipboard-write" });
if (result.state == "granted" || result.state == "prompt") {
await navigator.clipboard.writeText(codeToCopy);
}
} finally {
button.blur();
button.innerHTML = copyIconDone;
setTimeout(function() {
button.innerHTML = copyIcon;
}, 2e3);
}
}
})();
})();