2023-04-02 11:25:36 +02:00
|
|
|
import {clippie} from 'clippie';
|
2024-07-07 17:32:30 +02:00
|
|
|
import {showTemporaryTooltip} from '../modules/tippy.ts';
|
|
|
|
|
import {convertImage} from '../utils.ts';
|
|
|
|
|
import {GET} from '../modules/fetch.ts';
|
2025-03-04 04:30:55 +08:00
|
|
|
import {registerGlobalEventFunc} from '../modules/observer.ts';
|
2022-12-23 17:03:11 +01:00
|
|
|
|
2022-11-21 10:59:42 +01:00
|
|
|
const {i18n} = window.config;
|
|
|
|
|
|
|
|
|
|
export function initCopyContent() {
|
2025-03-06 00:03:44 +08:00
|
|
|
registerGlobalEventFunc('click', 'onCopyContentButtonClick', async (btn: HTMLElement) => {
|
2025-03-04 04:30:55 +08:00
|
|
|
if (btn.classList.contains('disabled') || btn.classList.contains('is-loading')) return;
|
2025-06-30 16:12:25 +08:00
|
|
|
const rawFileLink = btn.getAttribute('data-raw-file-link');
|
2022-11-21 10:59:42 +01:00
|
|
|
|
2025-06-30 16:12:25 +08:00
|
|
|
let content, isRasterImage = false;
|
|
|
|
|
|
|
|
|
|
// when "data-raw-link" is present, we perform a fetch. this is either because
|
|
|
|
|
// the text to copy is not in the DOM, or it is an image that should be
|
2022-11-21 10:59:42 +01:00
|
|
|
// fetched to copy in full resolution
|
2025-06-30 16:12:25 +08:00
|
|
|
if (rawFileLink) {
|
2024-03-31 18:06:06 +02:00
|
|
|
btn.classList.add('is-loading', 'loading-icon-2px');
|
2022-11-21 10:59:42 +01:00
|
|
|
try {
|
2025-06-30 16:12:25 +08:00
|
|
|
const res = await GET(rawFileLink, {credentials: 'include', redirect: 'follow'});
|
2025-12-03 03:13:16 +01:00
|
|
|
const contentType = res.headers.get('content-type')!;
|
2022-11-21 10:59:42 +01:00
|
|
|
|
|
|
|
|
if (contentType.startsWith('image/') && !contentType.startsWith('image/svg')) {
|
2023-05-16 06:45:36 +02:00
|
|
|
isRasterImage = true;
|
2022-11-21 10:59:42 +01:00
|
|
|
content = await res.blob();
|
|
|
|
|
} else {
|
|
|
|
|
content = await res.text();
|
|
|
|
|
}
|
|
|
|
|
} catch {
|
|
|
|
|
return showTemporaryTooltip(btn, i18n.copy_error);
|
|
|
|
|
} finally {
|
2024-03-31 18:06:06 +02:00
|
|
|
btn.classList.remove('is-loading', 'loading-icon-2px');
|
2022-11-21 10:59:42 +01:00
|
|
|
}
|
|
|
|
|
} else { // text, read from DOM
|
|
|
|
|
const lineEls = document.querySelectorAll('.file-view .lines-code');
|
2023-05-18 03:14:31 +02:00
|
|
|
content = Array.from(lineEls, (el) => el.textContent).join('');
|
2022-11-21 10:59:42 +01:00
|
|
|
}
|
|
|
|
|
|
2025-03-04 04:30:55 +08:00
|
|
|
// try copy original first, if that fails, and it's an image, convert it to png
|
2023-05-16 06:45:36 +02:00
|
|
|
const success = await clippie(content);
|
|
|
|
|
if (success) {
|
|
|
|
|
showTemporaryTooltip(btn, i18n.copy_success);
|
|
|
|
|
} else {
|
|
|
|
|
if (isRasterImage) {
|
2025-01-22 08:11:51 +01:00
|
|
|
const success = await clippie(await convertImage(content as Blob, 'image/png'));
|
2023-05-16 06:45:36 +02:00
|
|
|
showTemporaryTooltip(btn, success ? i18n.copy_success : i18n.copy_error);
|
2022-11-21 10:59:42 +01:00
|
|
|
} else {
|
|
|
|
|
showTemporaryTooltip(btn, i18n.copy_error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|