adds shadcn, removes skeleton, implements button after styleguide

This commit is contained in:
2026-06-16 18:07:58 +02:00
parent 9785973e8b
commit 0b032b2cd8
23 changed files with 3573 additions and 397 deletions
@@ -1,200 +1,204 @@
<script lang="ts">
import AttachmentPreview from "$lib/components/AttachmentPreview.svelte";
import { mergeProcessedZipArchive, type ProcessedZipArchive, type ZipAttachment } from "$lib/zip-processing";
import AttachmentPreview from '$lib/components/AttachmentPreview.svelte';
import Button from '$lib/components/ui/button.svelte';
import {
mergeProcessedZipArchive,
type ProcessedZipArchive,
type ZipAttachment
} from '$lib/zip-processing';
type Props = {
archive: ProcessedZipArchive;
thumbnailWidth: number;
onArchiveChange?: (archive: ProcessedZipArchive) => void;
};
type Props = {
archive: ProcessedZipArchive;
thumbnailWidth: number;
onArchiveChange?: (archive: ProcessedZipArchive) => void;
};
let {
archive,
thumbnailWidth = 200,
onArchiveChange = () => {
}
}: Props = $props();
let { archive, thumbnailWidth = 200, onArchiveChange = () => {} }: Props = $props();
let attachments = $state<ZipAttachment[]>([]);
let archiveName = $state("");
let dragIndex = $state<number | null>(null);
let dropIndex = $state<number | null>(null);
let isMerging = $state(false);
let mergeError = $state<string | null>(null);
let attachments = $state<ZipAttachment[]>([]);
let archiveName = $state('');
let dragIndex = $state<number | null>(null);
let dropIndex = $state<number | null>(null);
let isMerging = $state(false);
let mergeError = $state<string | null>(null);
const toArrayBuffer = (bytes: Uint8Array) => {
const copy = new Uint8Array(bytes.byteLength);
copy.set(bytes);
return copy.buffer;
};
const toArrayBuffer = (bytes: Uint8Array) => {
const copy = new Uint8Array(bytes.byteLength);
copy.set(bytes);
return copy.buffer;
};
$effect(() => {
archiveName = archive.name;
attachments = archive.attachments.map((attachment) => ({...attachment}));
});
$effect(() => {
archiveName = archive.name;
attachments = archive.attachments.map((attachment) => ({ ...attachment }));
});
const emitArchiveChange = () => {
onArchiveChange({
...archive,
name: archiveName,
attachments: attachments.map((attachment) => ({...attachment})),
});
};
const emitArchiveChange = () => {
onArchiveChange({
...archive,
name: archiveName,
attachments: attachments.map((attachment) => ({ ...attachment }))
});
};
const downloadMergedPdf = async () => {
if (attachments.length === 0 || isMerging) {
return;
}
const downloadMergedPdf = async () => {
if (attachments.length === 0 || isMerging) {
return;
}
isMerging = true;
mergeError = null;
isMerging = true;
mergeError = null;
try {
const mergedBytes = await mergeProcessedZipArchive({
...archive,
name: archiveName,
attachments: attachments.map((attachment) => ({...attachment}))
});
try {
const mergedBytes = await mergeProcessedZipArchive({
...archive,
name: archiveName,
attachments: attachments.map((attachment) => ({ ...attachment }))
});
const pdfBlob = new Blob([toArrayBuffer(mergedBytes)], {type: "application/pdf"});
const objectUrl = URL.createObjectURL(pdfBlob);
const downloadLink = document.createElement("a");
downloadLink.href = objectUrl;
downloadLink.download = archiveName.toLowerCase().endsWith(".pdf") ? archiveName : `${archiveName}.pdf`;
downloadLink.rel = "noopener";
downloadLink.click();
window.setTimeout(() => URL.revokeObjectURL(objectUrl), 1000);
} catch (error) {
console.error(`Failed to merge archive ${archive.name}`, error);
mergeError = "PDF konnte nicht erstellt werden.";
} finally {
isMerging = false;
}
};
const pdfBlob = new Blob([toArrayBuffer(mergedBytes)], { type: 'application/pdf' });
const objectUrl = URL.createObjectURL(pdfBlob);
const downloadLink = document.createElement('a');
downloadLink.href = objectUrl;
downloadLink.download = archiveName.toLowerCase().endsWith('.pdf')
? archiveName
: `${archiveName}.pdf`;
downloadLink.rel = 'noopener';
downloadLink.click();
window.setTimeout(() => URL.revokeObjectURL(objectUrl), 1000);
} catch (error) {
console.error(`Failed to merge archive ${archive.name}`, error);
mergeError = 'PDF konnte nicht erstellt werden.';
} finally {
isMerging = false;
}
};
const moveAttachment = (fromIndex: number, toIndex: number) => {
if (
fromIndex === toIndex ||
fromIndex < 0 ||
toIndex < 0 ||
fromIndex >= attachments.length ||
toIndex >= attachments.length
) {
return;
}
const moveAttachment = (fromIndex: number, toIndex: number) => {
if (
fromIndex === toIndex ||
fromIndex < 0 ||
toIndex < 0 ||
fromIndex >= attachments.length ||
toIndex >= attachments.length
) {
return;
}
const nextAttachments = [...attachments];
const [movedAttachment] = nextAttachments.splice(fromIndex, 1);
nextAttachments.splice(toIndex, 0, movedAttachment);
const nextAttachments = [...attachments];
const [movedAttachment] = nextAttachments.splice(fromIndex, 1);
nextAttachments.splice(toIndex, 0, movedAttachment);
attachments = nextAttachments;
emitArchiveChange();
};
attachments = nextAttachments;
emitArchiveChange();
};
const handleDragStart = (index: number, event: DragEvent) => {
dragIndex = index;
dropIndex = index;
const handleDragStart = (index: number, event: DragEvent) => {
dragIndex = index;
dropIndex = index;
if (event.dataTransfer) {
event.dataTransfer.effectAllowed = "move";
event.dataTransfer.setData("text/plain", String(index));
}
};
if (event.dataTransfer) {
event.dataTransfer.effectAllowed = 'move';
event.dataTransfer.setData('text/plain', String(index));
}
};
const handleDragOver = (index: number, event: DragEvent) => {
event.preventDefault();
dropIndex = index;
};
const handleDragOver = (index: number, event: DragEvent) => {
event.preventDefault();
dropIndex = index;
};
const handleDrop = (index: number, event: DragEvent) => {
event.preventDefault();
const handleDrop = (index: number, event: DragEvent) => {
event.preventDefault();
const dataTransferIndex = Number(event.dataTransfer?.getData("text/plain"));
const fromIndex = Number.isFinite(dataTransferIndex) ? dataTransferIndex : dragIndex;
const dataTransferIndex = Number(event.dataTransfer?.getData('text/plain'));
const fromIndex = Number.isFinite(dataTransferIndex) ? dataTransferIndex : dragIndex;
if (fromIndex === null) {
return;
}
if (fromIndex === null) {
return;
}
moveAttachment(fromIndex, index);
dragIndex = null;
dropIndex = null;
};
moveAttachment(fromIndex, index);
dragIndex = null;
dropIndex = null;
};
const handleDragEnd = () => {
dragIndex = null;
dropIndex = null;
};
const handleDragEnd = () => {
dragIndex = null;
dropIndex = null;
};
</script>
<section class="flex flex-col gap-4 rounded-2xl border border-primary-100 bg-white px-4 py-4 shadow-sm">
<header class="flex flex-wrap items-baseline justify-between gap-2">
<div class="min-w-0 flex-1">
<label class="block min-w-0">
<span class="sr-only">Archivname</span>
<input
class="w-full max-w-xl rounded-md border border-primary-200 bg-white px-3 py-2 text-[16px] font-bold text-primary-900 outline-none transition focus:border-primary-400 focus:ring-2 focus:ring-primary-200"
type="text"
value={archiveName}
oninput={(event) => {
archiveName = (event.currentTarget as HTMLInputElement).value;
emitArchiveChange();
}}
/>
</label>
<p class="mt-1 text-[13px] text-primary-700">
{attachments.length} relevante Datei{attachments.length === 1 ? "" : "en"}
</p>
</div>
<section
class="flex flex-col gap-4 rounded-2xl border border-primary-100 bg-white px-4 py-4 shadow-sm"
>
<header class="flex flex-wrap items-baseline justify-between gap-2 text-primary">
<div class="min-w-0 flex-1">
<label class="block min-w-0">
<span class="sr-only">Archivname</span>
<input
class="w-full max-w-xl rounded-md border border-primary-200 bg-white px-3 py-2 text-[16px] font-bold text-primary-900 outline-none transition focus:border-primary-400 focus:ring-2 focus:ring-primary-200"
type="text"
value={archiveName}
oninput={(event) => {
archiveName = (event.currentTarget as HTMLInputElement).value;
emitArchiveChange();
}}
/>
</label>
<p class="mt-1 text-[13px] text-primary">
{attachments.length} relevante Datei{attachments.length === 1 ? '' : 'en'}
</p>
</div>
<button
class="rounded-container whitespace-nowrap bg-primary-900 px-4 py-2 text-[14px] font-bold leading-6 text-white shadow-sm transition hover:bg-primary-800 disabled:cursor-not-allowed disabled:bg-primary-300"
type="button"
disabled={attachments.length === 0 || isMerging}
onclick={downloadMergedPdf}
>
{isMerging ? "PDF wird erstellt" : "PDF herunterladen"}
</button>
</header>
<Button
class="bg-primary"
type="button"
disabled={attachments.length === 0 || isMerging}
onclick={downloadMergedPdf}
>
{isMerging ? 'PDF wird erstellt' : 'PDF herunterladen'}
</Button>
</header>
{#if mergeError}
<div class="rounded-container bg-red-50 px-4 py-3 text-[14px] font-medium text-red-900">
{mergeError}
</div>
{/if}
{#if mergeError}
<div class="rounded-container bg-red-50 px-4 py-3 text-[14px] font-medium text-red-900">
{mergeError}
</div>
{/if}
<ul class="flex gap-3 overflow-x-auto pb-1">
{#each attachments as attachment, index (attachment.path)}
<li
class={`flex flex-col shrink-0 items-stretch gap-2 rounded-xl border bg-primary-50 p-2 ${
dropIndex === index ? "border-primary-400 ring-1 ring-primary-200" : "border-primary-100"
} ${dragIndex === index ? "opacity-60" : ""}`}
style={`width: ${thumbnailWidth}px;`}
draggable="true"
ondragstart={(event) => handleDragStart(index, event)}
ondragover={(event) => handleDragOver(index, event)}
ondrop={(event) => handleDrop(index, event)}
ondragend={handleDragEnd}
>
<div class="flex min-w-0 flex-1 flex-row gap-2 py-1 items-baseline">
<button
class="w-fit cursor-grab rounded-md border border-primary-200 bg-white px-2 py-1 text-sm font-semibold leading-none text-primary-700 active:cursor-grabbing"
draggable="false"
type="button"
aria-label="Datei verschieben"
>
::
</button>
<ul class="flex gap-3 overflow-x-auto pb-1">
{#each attachments as attachment, index (attachment.path)}
<li
class={`flex flex-col shrink-0 items-stretch gap-2 rounded-xl border text-primary bg-accent p-2 ${
dropIndex === index ? 'border-primary-400 ring-1 ring-primary-200' : 'border-primary-100'
} ${dragIndex === index ? 'opacity-60' : ''}`}
style={`width: ${thumbnailWidth}px;`}
draggable="true"
ondragstart={(event) => handleDragStart(index, event)}
ondragover={(event) => handleDragOver(index, event)}
ondrop={(event) => handleDrop(index, event)}
ondragend={handleDragEnd}
>
<div class="flex min-w-0 flex-1 flex-row gap-2 py-1 items-baseline">
<button
class="w-fit cursor-grab rounded-md border border-primary-200 bg-white px-2 py-1 text-sm font-semibold leading-none text-primary-700 active:cursor-grabbing"
draggable="false"
type="button"
aria-label="Datei verschieben"
>
::
</button>
<div
class="truncate text-[13px] font-medium leading-tight text-primary-900"
title={attachment.name}
>
{attachment.name}
</div>
</div>
<AttachmentPreview {attachment} />
</li>
{/each}
</ul>
<div
class="truncate text-[13px] font-medium leading-tight text-primary-900"
title={attachment.name}
>
{attachment.name}
</div>
</div>
<AttachmentPreview {attachment} />
</li>
{/each}
</ul>
</section>