Files

41 lines
1.6 KiB
TypeScript
Raw Permalink Normal View History

import {showTemporaryTooltip} from '../modules/tippy.ts';
import {toAbsoluteUrl} from '../utils.ts';
import {clippie} from 'clippie';
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
// - 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
let text = target.getAttribute('data-clipboard-text');
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
}
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
}