Files
Atay-Makhzan/web_src/js/features/clipboard.js
T

35 lines
1.1 KiB
JavaScript
Raw Normal View History

import {showTemporaryTooltip} from '../modules/tippy.js';
import {toAbsoluteUrl} from '../utils.js';
import {clippie} from 'clippie';
const {copy_success, copy_error} = window.config.i18n;
2020-02-08 00:03:42 +01:00
// For all DOM elements with [data-clipboard-target] or [data-clipboard-text],
// this copy-to-clipboard will work for them
2022-12-23 17:03:11 +01:00
export function initGlobalCopyToClipboardListener() {
document.addEventListener('click', (e) => {
2021-10-17 01:28:04 +08:00
let target = e.target;
// in case <button data-clipboard-text><svg></button>, so we just search
// up to 3 levels for performance
2021-10-17 01:28:04 +08:00
for (let i = 0; i < 3 && target; i++) {
let txt = target.getAttribute('data-clipboard-text');
if (txt && target.getAttribute('data-clipboard-text-type') === 'url') {
txt = toAbsoluteUrl(txt);
}
const text = txt || document.querySelector(target.getAttribute('data-clipboard-target'))?.value;
2021-11-22 09:19:01 +01:00
2021-10-17 01:28:04 +08:00
if (text) {
e.preventDefault();
(async() => {
const success = await clippie(text);
showTemporaryTooltip(target, success ? copy_success : copy_error);
})();
2021-10-17 01:28:04 +08:00
break;
}
2021-10-17 01:28:04 +08:00
target = target.parentElement;
}
});
2020-02-08 00:03:42 +01:00
}