2022-08-09 18:07:34 +05:30
|
|
|
import {showTemporaryTooltip} from '../modules/tippy.js';
|
2022-01-29 02:30:11 +05:30
|
|
|
|
2021-11-16 13:46:05 +05:30
|
|
|
const {copy_success, copy_error} = window.config.i18n;
|
2020-02-08 04:33:42 +05:30
|
|
|
|
2022-11-21 15:29:42 +05:30
|
|
|
export async function copyToClipboard(content) {
|
|
|
|
if (content instanceof Blob) {
|
2022-11-22 06:28:55 +05:30
|
|
|
const item = new ClipboardItem({[content.type]: content});
|
2022-11-21 15:29:42 +05:30
|
|
|
await navigator.clipboard.write([item]);
|
|
|
|
} else { // text
|
|
|
|
try {
|
|
|
|
await navigator.clipboard.writeText(content);
|
|
|
|
} catch {
|
|
|
|
return fallbackCopyToClipboard(content);
|
|
|
|
}
|
2022-08-09 18:07:34 +05:30
|
|
|
}
|
|
|
|
return true;
|
2021-05-31 00:45:57 +05:30
|
|
|
}
|
2021-11-16 13:46:05 +05:30
|
|
|
|
|
|
|
// 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 15:52:16 +05:30
|
|
|
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 13:46:05 +05:30
|
|
|
// if unsecure (not https), there is no navigator.clipboard, but we can still
|
|
|
|
// use document.execCommand to copy to clipboard
|
2021-10-19 15:52:16 +05:30
|
|
|
const success = document.execCommand('copy');
|
|
|
|
|
|
|
|
document.body.removeChild(tempTextArea);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2021-11-16 13:46:05 +05:30
|
|
|
// For all DOM elements with [data-clipboard-target] or [data-clipboard-text],
|
|
|
|
// this copy-to-clipboard will work for them
|
2021-10-16 22:58:04 +05:30
|
|
|
export default function initGlobalCopyToClipboardListener() {
|
2021-11-12 18:07:45 +05:30
|
|
|
document.addEventListener('click', (e) => {
|
2021-10-16 22:58:04 +05:30
|
|
|
let target = e.target;
|
2021-11-16 13:46:05 +05:30
|
|
|
// in case <button data-clipboard-text><svg></button>, so we just search
|
|
|
|
// up to 3 levels for performance
|
2021-10-16 22:58:04 +05:30
|
|
|
for (let i = 0; i < 3 && target; i++) {
|
2021-11-22 13:49:01 +05:30
|
|
|
const text = target.getAttribute('data-clipboard-text') || document.querySelector(target.getAttribute('data-clipboard-target'))?.value;
|
|
|
|
|
2021-10-16 22:58:04 +05:30
|
|
|
if (text) {
|
|
|
|
e.preventDefault();
|
2021-11-12 18:07:45 +05:30
|
|
|
|
|
|
|
(async() => {
|
2022-08-09 18:07:34 +05:30
|
|
|
const success = await copyToClipboard(text);
|
|
|
|
showTemporaryTooltip(target, success ? copy_success : copy_error);
|
2021-11-12 18:07:45 +05:30
|
|
|
})();
|
|
|
|
|
2021-10-16 22:58:04 +05:30
|
|
|
break;
|
2021-05-31 00:45:57 +05:30
|
|
|
}
|
2021-10-16 22:58:04 +05:30
|
|
|
target = target.parentElement;
|
|
|
|
}
|
|
|
|
});
|
2020-02-08 04:33:42 +05:30
|
|
|
}
|