Files

55 lines
2.1 KiB
TypeScript
Raw Permalink Normal View History

import {clippie} from 'clippie';
import {showTemporaryTooltip} from '../modules/tippy.ts';
import {convertImage} from '../utils.ts';
import {GET} from '../modules/fetch.ts';
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) => {
if (btn.classList.contains('disabled') || btn.classList.contains('is-loading')) return;
const rawFileLink = btn.getAttribute('data-raw-file-link');
2022-11-21 10:59:42 +01: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
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 {
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
}
// 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);
}
}
});
}