2022-08-09 08:37:34 -04:00
|
|
|
import {showTemporaryTooltip} from '../modules/tippy.js';
|
2023-02-06 13:09:18 -05:00
|
|
|
import {toAbsoluteUrl} from '../utils.js';
|
2023-04-02 05:25:36 -04:00
|
|
|
import {clippie} from 'clippie';
|
2022-01-28 16:00:11 -05:00
|
|
|
|
2021-11-16 03:16:05 -05:00
|
|
|
const {copy_success, copy_error} = window.config.i18n;
|
2020-02-07 18:03:42 -05:00
|
|
|
|
2023-10-18 11:16:06 -04:00
|
|
|
// Enable clipboard copy from HTML attributes. These properties are supported:
|
2024-02-24 23:17:11 -05:00
|
|
|
// - data-clipboard-text: Direct text to copy
|
2023-10-18 11:16:06 -04:00
|
|
|
// - data-clipboard-target: Holds a selector for a <input> or <textarea> whose content is copied
|
|
|
|
// - data-clipboard-text-type: When set to 'url' will convert relative to absolute urls
|
2022-12-23 11:03:11 -05:00
|
|
|
export function initGlobalCopyToClipboardListener() {
|
2024-02-24 23:17:11 -05:00
|
|
|
document.addEventListener('click', async (e) => {
|
|
|
|
const target = e.target.closest('[data-clipboard-text], [data-clipboard-target]');
|
|
|
|
if (!target) return;
|
2023-10-18 11:16:06 -04:00
|
|
|
|
2024-02-24 23:17:11 -05:00
|
|
|
e.preventDefault();
|
2023-10-18 11:16:06 -04:00
|
|
|
|
2024-03-14 22:38:13 -04:00
|
|
|
let text = target.getAttribute('data-clipboard-text');
|
|
|
|
if (!text) {
|
2024-02-24 23:17:11 -05:00
|
|
|
text = document.querySelector(target.getAttribute('data-clipboard-target'))?.value;
|
|
|
|
}
|
2021-11-12 07:37:45 -05:00
|
|
|
|
2024-02-24 23:17:11 -05:00
|
|
|
if (text && target.getAttribute('data-clipboard-text-type') === 'url') {
|
|
|
|
text = toAbsoluteUrl(text);
|
|
|
|
}
|
2023-10-18 11:16:06 -04:00
|
|
|
|
2024-02-24 23:17:11 -05:00
|
|
|
if (text) {
|
|
|
|
const success = await clippie(text);
|
|
|
|
showTemporaryTooltip(target, success ? copy_success : copy_error);
|
2021-10-16 13:28:04 -04:00
|
|
|
}
|
|
|
|
});
|
2020-02-07 18:03:42 -05:00
|
|
|
}
|