2022-08-09 06:37:34 -06:00
|
|
|
import {showTemporaryTooltip} from '../modules/tippy.js';
|
2023-02-06 11:09:18 -07:00
|
|
|
import {toAbsoluteUrl} from '../utils.js';
|
2023-04-02 03:25:36 -06:00
|
|
|
import {clippie} from 'clippie';
|
2022-01-28 14:00:11 -07:00
|
|
|
|
2021-11-16 01:16:05 -07:00
|
|
|
const {copy_success, copy_error} = window.config.i18n;
|
2020-02-07 16:03:42 -07:00
|
|
|
|
2021-11-16 01:16:05 -07:00
|
|
|
// For all DOM elements with [data-clipboard-target] or [data-clipboard-text],
|
|
|
|
// this copy-to-clipboard will work for them
|
2022-12-23 09:03:11 -07:00
|
|
|
export function initGlobalCopyToClipboardListener() {
|
2021-11-12 05:37:45 -07:00
|
|
|
document.addEventListener('click', (e) => {
|
2021-10-16 11:28:04 -06:00
|
|
|
let target = e.target;
|
2021-11-16 01:16:05 -07:00
|
|
|
// in case <button data-clipboard-text><svg></button>, so we just search
|
|
|
|
// up to 3 levels for performance
|
2021-10-16 11:28:04 -06:00
|
|
|
for (let i = 0; i < 3 && target; i++) {
|
2023-02-06 11:09:18 -07:00
|
|
|
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 01:19:01 -07:00
|
|
|
|
2021-10-16 11:28:04 -06:00
|
|
|
if (text) {
|
|
|
|
e.preventDefault();
|
2021-11-12 05:37:45 -07:00
|
|
|
|
|
|
|
(async() => {
|
2023-04-02 03:25:36 -06:00
|
|
|
const success = await clippie(text);
|
2022-08-09 06:37:34 -06:00
|
|
|
showTemporaryTooltip(target, success ? copy_success : copy_error);
|
2021-11-12 05:37:45 -07:00
|
|
|
})();
|
|
|
|
|
2021-10-16 11:28:04 -06:00
|
|
|
break;
|
2021-05-30 13:15:57 -06:00
|
|
|
}
|
2021-10-16 11:28:04 -06:00
|
|
|
target = target.parentElement;
|
|
|
|
}
|
|
|
|
});
|
2020-02-07 16:03:42 -07:00
|
|
|
}
|