mirror of
https://github.com/ethanrusz/ethanrusz
synced 2024-11-21 07:47:46 -05:00
Add code block copy button.
This commit is contained in:
parent
0a3c560db5
commit
48d2a3bc9a
2 changed files with 50 additions and 0 deletions
|
@ -84,6 +84,9 @@ footer:
|
|||
icon: "fab fa-fw fa-github"
|
||||
url: "https://github.com/ethanrusz"
|
||||
|
||||
after_footer_scripts:
|
||||
- assets/js/clipboard.js
|
||||
|
||||
social:
|
||||
type:
|
||||
names:
|
||||
|
|
47
assets/js/clipboard.js
Normal file
47
assets/js/clipboard.js
Normal file
|
@ -0,0 +1,47 @@
|
|||
/*
|
||||
* A nice little clipboard script provided by crykn. Thanks!
|
||||
*/
|
||||
|
||||
function sleep(ms) {
|
||||
return new Promise(resolve => setTimeout(resolve, ms));
|
||||
}
|
||||
|
||||
async function onClickEffect(btn, style) {
|
||||
btn.removeClass("btn-light");
|
||||
btn.addClass(style);
|
||||
await sleep(250);
|
||||
btn.removeClass(style);
|
||||
btn.addClass("btn-light");
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
// Create butons
|
||||
$(".page__content pre > code").each(function() {
|
||||
$(this).parent().prepend(
|
||||
$(document.createElement('button')).prop({
|
||||
type: 'button',
|
||||
innerHTML: '<i class="far fa-copy"></i>',
|
||||
})
|
||||
.attr('title', 'Copy to clipboard')
|
||||
.addClass('btn')
|
||||
.addClass('btn--primary')
|
||||
.css('position', 'absolute')
|
||||
.css('right', '1em')
|
||||
// Click listener
|
||||
.on('click', function() {
|
||||
let codeElement = $(this).parent().children('code').first();
|
||||
|
||||
if (!codeElement) {
|
||||
throw new Error("Unexpected error! No corresponding code block was found for this button.");
|
||||
}
|
||||
|
||||
// Blink effect
|
||||
onClickEffect($(this), "btn--success")
|
||||
|
||||
// Copy to clipoard function
|
||||
navigator.clipboard.writeText($(codeElement).text()).then(() => true, () => true);
|
||||
return true;
|
||||
})
|
||||
);
|
||||
});
|
||||
});
|
Loading…
Reference in a new issue