1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-12-19 14:14:17 +00:00

Improve the clipboard UX

This commit is contained in:
Cotes Chung
2021-09-15 14:36:37 +08:00
parent 2877896b9e
commit 53b0329e5a
7 changed files with 66 additions and 19 deletions

View File

@@ -1,19 +1,29 @@
/*
* Initial the clipboard.js object, see: <https://github.com/zenorocha/clipboard.js>
* Initial the clipboard.js object
*
* Dependencies:
* - popper.js (https://github.com/popperjs/popper-core)
* - clipboard.js (https://github.com/zenorocha/clipboard.js)
*/
$(function() {
const btnSelector = '.code-header>button';
const ICON_DEFAULT = getIcon(btnSelector);
const ICON_SUCCESS = 'fas fa-check';
const ATTR_LOCKED = 'locked';
const TIMEOUT = 2000; // in milliseconds
var clipboard = new ClipboardJS(btnSelector, {
const clipboard = new ClipboardJS(btnSelector, {
target(trigger) {
return trigger.parentNode.nextElementSibling;
}
});
$(btnSelector).tooltip({
trigger: 'click',
placement: 'left'
});
function setTooltip(btn, msg) {
$(btn).tooltip('hide')
.attr('data-original-title', msg)
@@ -23,18 +33,49 @@ $(function() {
function hideTooltip(btn) {
setTimeout(function() {
$(btn).tooltip('hide');
}, 1000);
}, TIMEOUT);
}
$(btnSelector).tooltip({
trigger: 'click',
placement: 'left'
});
function getIcon(btn) {
let iconNode = $(btn).children();
return iconNode.attr('class');;
}
clipboard.on('success', function(e) {
function setSuccessIcon(btn) {
let btnNode = $(btn);
let iconNode = btnNode.children();
btnNode.attr(ATTR_LOCKED, true);
iconNode.attr('class', ICON_SUCCESS);
}
function resumeIcon(btn) {
let btnNode = $(btn);
let iconNode = btnNode.children();
setTimeout(function() {
btnNode.removeAttr(ATTR_LOCKED);
iconNode.attr('class', ICON_DEFAULT);
}, TIMEOUT);
}
function isLocked(btn) {
let locked = $(btn).attr(ATTR_LOCKED);
return locked === 'true';
}
clipboard.on('success', (e) => {
e.clearSelection();
if (isLocked(e.trigger)) {
return;
}
setTooltip(e.trigger, 'Copied!');
hideTooltip(e.trigger);
setSuccessIcon(e.trigger);
resumeIcon($(e.trigger));
});
});