2021-11-16 09:16:05 +01:00
|
|
|
const {copy_success, copy_error} = window.config.i18n;
|
2020-02-08 00:03:42 +01:00
|
|
|
|
2021-05-30 21:15:57 +02:00
|
|
|
function onSuccess(btn) {
|
2021-11-16 09:16:05 +01:00
|
|
|
btn.setAttribute('data-variation', 'inverted tiny');
|
2021-05-30 21:15:57 +02:00
|
|
|
$(btn).popup('destroy');
|
2021-11-16 09:16:05 +01:00
|
|
|
const oldContent = btn.getAttribute('data-content');
|
|
|
|
btn.setAttribute('data-content', copy_success);
|
2021-05-30 21:15:57 +02:00
|
|
|
$(btn).popup('show');
|
2021-11-16 09:16:05 +01:00
|
|
|
btn.setAttribute('data-content', oldContent || '');
|
2021-05-30 21:15:57 +02:00
|
|
|
}
|
|
|
|
function onError(btn) {
|
2021-11-16 09:16:05 +01:00
|
|
|
btn.setAttribute('data-variation', 'inverted tiny');
|
|
|
|
const oldContent = btn.getAttribute('data-content');
|
2021-05-30 21:15:57 +02:00
|
|
|
$(btn).popup('destroy');
|
2021-11-16 09:16:05 +01:00
|
|
|
btn.setAttribute('data-content', copy_error);
|
2021-05-30 21:15:57 +02:00
|
|
|
$(btn).popup('show');
|
2021-11-16 09:16:05 +01:00
|
|
|
btn.setAttribute('data-content', oldContent || '');
|
2021-05-30 21:15:57 +02:00
|
|
|
}
|
2020-02-08 00:03:42 +01:00
|
|
|
|
2021-11-16 09:16:05 +01:00
|
|
|
|
|
|
|
// Fallback to use if navigator.clipboard doesn't exist. Achieved via creating
|
|
|
|
// a temporary textarea element, selecting the text, and using document.execCommand
|
2021-10-19 12:22:16 +02:00
|
|
|
function fallbackCopyToClipboard(text) {
|
|
|
|
if (!document.execCommand) return false;
|
|
|
|
|
|
|
|
const tempTextArea = document.createElement('textarea');
|
|
|
|
tempTextArea.value = text;
|
|
|
|
|
|
|
|
// avoid scrolling
|
|
|
|
tempTextArea.style.top = 0;
|
|
|
|
tempTextArea.style.left = 0;
|
|
|
|
tempTextArea.style.position = 'fixed';
|
|
|
|
|
|
|
|
document.body.appendChild(tempTextArea);
|
|
|
|
|
|
|
|
tempTextArea.select();
|
|
|
|
|
2021-11-16 09:16:05 +01:00
|
|
|
// if unsecure (not https), there is no navigator.clipboard, but we can still
|
|
|
|
// use document.execCommand to copy to clipboard
|
2021-10-19 12:22:16 +02:00
|
|
|
const success = document.execCommand('copy');
|
|
|
|
|
|
|
|
document.body.removeChild(tempTextArea);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2021-11-16 09:16:05 +01:00
|
|
|
// For all DOM elements with [data-clipboard-target] or [data-clipboard-text],
|
|
|
|
// this copy-to-clipboard will work for them
|
2021-10-16 19:28:04 +02:00
|
|
|
export default function initGlobalCopyToClipboardListener() {
|
2021-11-12 13:37:45 +01:00
|
|
|
document.addEventListener('click', (e) => {
|
2021-10-16 19:28:04 +02:00
|
|
|
let target = e.target;
|
2021-11-16 09:16:05 +01:00
|
|
|
// in case <button data-clipboard-text><svg></button>, so we just search
|
|
|
|
// up to 3 levels for performance
|
2021-10-16 19:28:04 +02:00
|
|
|
for (let i = 0; i < 3 && target; i++) {
|
2021-11-22 09:19:01 +01:00
|
|
|
const text = target.getAttribute('data-clipboard-text') || document.querySelector(target.getAttribute('data-clipboard-target'))?.value;
|
|
|
|
|
2021-10-16 19:28:04 +02:00
|
|
|
if (text) {
|
|
|
|
e.preventDefault();
|
2021-11-12 13:37:45 +01:00
|
|
|
|
|
|
|
(async() => {
|
|
|
|
try {
|
|
|
|
await navigator.clipboard.writeText(text);
|
2021-10-19 12:22:16 +02:00
|
|
|
onSuccess(target);
|
2021-11-12 13:37:45 +01:00
|
|
|
} catch {
|
|
|
|
if (fallbackCopyToClipboard(text)) {
|
|
|
|
onSuccess(target);
|
|
|
|
} else {
|
|
|
|
onError(target);
|
|
|
|
}
|
2021-10-19 12:22:16 +02:00
|
|
|
}
|
2021-11-12 13:37:45 +01:00
|
|
|
})();
|
|
|
|
|
2021-10-16 19:28:04 +02:00
|
|
|
break;
|
2021-05-30 21:15:57 +02:00
|
|
|
}
|
2021-10-16 19:28:04 +02:00
|
|
|
target = target.parentElement;
|
|
|
|
}
|
|
|
|
});
|
2020-02-08 00:03:42 +01:00
|
|
|
}
|