2024-07-07 17:32:30 +02:00
|
|
|
import {showTemporaryTooltip} from '../modules/tippy.ts';
|
|
|
|
|
import {toAbsoluteUrl} from '../utils.ts';
|
2023-04-02 11:25:36 +02:00
|
|
|
import {clippie} from 'clippie';
|
2022-01-28 13:00:11 -08:00
|
|
|
|
2021-11-16 09:16:05 +01:00
|
|
|
const {copy_success, copy_error} = window.config.i18n;
|
2020-02-08 00:03:42 +01:00
|
|
|
|
2023-10-18 17:16:06 +02:00
|
|
|
// Enable clipboard copy from HTML attributes. These properties are supported:
|
2024-02-25 12:17:11 +08:00
|
|
|
// - data-clipboard-text: Direct text to copy
|
2026-03-01 14:41:25 +05:30
|
|
|
// - data-clipboard-target: Holds a selector for an element. "value" of <input> or <textarea>, or "textContent" of <div> will be copied
|
2023-10-18 17:16:06 +02:00
|
|
|
// - data-clipboard-text-type: When set to 'url' will convert relative to absolute urls
|
2022-12-23 17:03:11 +01:00
|
|
|
export function initGlobalCopyToClipboardListener() {
|
2025-12-03 03:13:16 +01:00
|
|
|
document.addEventListener('click', async (e) => {
|
|
|
|
|
const target = (e.target as HTMLElement).closest('[data-clipboard-text], [data-clipboard-target]');
|
2024-02-25 12:17:11 +08:00
|
|
|
if (!target) return;
|
2023-10-18 17:16:06 +02:00
|
|
|
|
2024-02-25 12:17:11 +08:00
|
|
|
e.preventDefault();
|
2023-10-18 17:16:06 +02:00
|
|
|
|
2024-03-15 03:38:13 +01:00
|
|
|
let text = target.getAttribute('data-clipboard-text');
|
2026-03-01 14:41:25 +05:30
|
|
|
if (text === null) {
|
|
|
|
|
const textSelector = target.getAttribute('data-clipboard-target')!;
|
|
|
|
|
const textTarget = document.querySelector(textSelector)!;
|
|
|
|
|
if (textTarget.nodeName === 'INPUT' || textTarget.nodeName === 'TEXTAREA') {
|
|
|
|
|
text = (textTarget as HTMLInputElement | HTMLTextAreaElement).value;
|
|
|
|
|
} else if (textTarget.nodeName === 'DIV') {
|
|
|
|
|
text = textTarget.textContent;
|
|
|
|
|
} else {
|
|
|
|
|
throw new Error(`Unsupported element for clipboard target: ${textSelector}`);
|
|
|
|
|
}
|
2024-02-25 12:17:11 +08:00
|
|
|
}
|
2021-11-12 20:37:45 +08:00
|
|
|
|
2024-02-25 12:17:11 +08:00
|
|
|
if (text && target.getAttribute('data-clipboard-text-type') === 'url') {
|
|
|
|
|
text = toAbsoluteUrl(text);
|
|
|
|
|
}
|
2023-10-18 17:16:06 +02:00
|
|
|
|
2024-02-25 12:17:11 +08:00
|
|
|
if (text) {
|
|
|
|
|
const success = await clippie(text);
|
|
|
|
|
showTemporaryTooltip(target, success ? copy_success : copy_error);
|
2021-10-17 01:28:04 +08:00
|
|
|
}
|
|
|
|
|
});
|
2020-02-08 00:03:42 +01:00
|
|
|
}
|