Add code copy button
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
4017705026
commit
47b613cf43
3 changed files with 35 additions and 2 deletions
|
@ -91,6 +91,7 @@
|
|||
type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
|
||||
crossorigin="anonymous"></script>
|
||||
<script src="{{base_url}}/js/webflow.js" type="text/javascript"></script>
|
||||
<script src="{{base_url}}/js/code_copy.js" type="text/javascript"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -5,7 +5,7 @@
|
|||
}
|
||||
|
||||
body {
|
||||
font-family: 'Arimo', sans-serif;
|
||||
font-family: 'Arimo', 'Arial', sans-serif;
|
||||
}
|
||||
|
||||
code {
|
||||
|
|
32
templates/js/code_copy.js
Normal file
32
templates/js/code_copy.js
Normal file
|
@ -0,0 +1,32 @@
|
|||
const copyButtonLabel = "Copy Code";
|
||||
|
||||
// use a class selector if available
|
||||
let blocks = document.querySelectorAll("pre");
|
||||
|
||||
blocks.forEach((block) => {
|
||||
// only add button if browser supports Clipboard API
|
||||
if (navigator.clipboard) {
|
||||
let button = document.createElement("button");
|
||||
|
||||
button.innerText = copyButtonLabel;
|
||||
block.appendChild(button);
|
||||
|
||||
button.addEventListener("click", async () => {
|
||||
await copyCode(block);
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
async function copyCode(block, button) {
|
||||
let code = block.querySelector("code");
|
||||
let text = code.innerText;
|
||||
|
||||
await navigator.clipboard.writeText(text);
|
||||
|
||||
// visual feedback that task is completed
|
||||
button.innerText = "Code Copied";
|
||||
|
||||
setTimeout(() => {
|
||||
button.innerText = copyButtonLabel;
|
||||
}, 700);
|
||||
}
|
Loading…
Reference in a new issue