Some checks failed
CI / Unit & Component Tests (push) Successful in 9m22s
CI / Backend Unit Tests (push) Successful in 1m52s
CI / E2E Tests (push) Failing after 59s
CI / Unit & Component Tests (pull_request) Successful in 9m51s
CI / Backend Unit Tests (pull_request) Successful in 2m3s
CI / E2E Tests (pull_request) Failing after 1m11s
Extract all hardcoded German strings from every .svelte file and component into Paraglide message keys. Add complete translations for all keys in messages/en.json (English) and messages/es.json (Spanish/Mexico). Changes: - messages/de.json: 100+ keys covering navigation, buttons, form labels, placeholders, section headings, empty states, and error messages - messages/en.json, messages/es.json: complete translations for all keys - project.inlang/settings.json: change baseLocale from "en" to "de" - +layout.svelte: add DE/EN/ES language selector in header using setLocale(); active language is bold, choice persists via Paraglide cookie strategy - All 10 route pages + 3 shared components: replace hardcoded German with m.key() - e2e/lang.spec.ts: E2E tests for language selector visibility, switching, persistence across navigation, and active state highlighting Closes #2 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
251 lines
8.6 KiB
Svelte
251 lines
8.6 KiB
Svelte
<script lang="ts">
|
|
import { goto } from '$app/navigation';
|
|
import PersonTypeahead from '$lib/components/PersonTypeahead.svelte';
|
|
import { untrack } from 'svelte';
|
|
import { m } from '$lib/paraglide/messages.js';
|
|
|
|
let { data } = $props();
|
|
|
|
let senderId = $state(untrack(() => data.filters.senderId));
|
|
let receiverId = $state(untrack(() => data.filters.receiverId));
|
|
let fromDate = $state(untrack(() => data.filters.from));
|
|
let toDate = $state(untrack(() => data.filters.to));
|
|
let sortDir = $state(untrack(() => data.filters.dir));
|
|
|
|
// Sync with server data after navigation
|
|
$effect(() => {
|
|
senderId = data.filters.senderId;
|
|
receiverId = data.filters.receiverId;
|
|
fromDate = data.filters.from;
|
|
toDate = data.filters.to;
|
|
sortDir = data.filters.dir;
|
|
});
|
|
|
|
function applyFilters() {
|
|
const params = new URLSearchParams();
|
|
if (senderId) params.set('senderId', senderId);
|
|
if (receiverId) params.set('receiverId', receiverId);
|
|
if (fromDate) params.set('from', fromDate);
|
|
if (toDate) params.set('to', toDate);
|
|
params.set('dir', sortDir);
|
|
goto(`?${params.toString()}`, { keepFocus: true });
|
|
}
|
|
|
|
function toggleSort() {
|
|
sortDir = sortDir === 'DESC' ? 'ASC' : 'DESC';
|
|
applyFilters();
|
|
}
|
|
</script>
|
|
|
|
<div class="max-w-5xl mx-auto py-10 px-4">
|
|
<!-- Page Header -->
|
|
<div class="mb-8 border-b border-brand-navy/10 pb-4">
|
|
<h1 class="text-3xl font-serif font-medium text-brand-navy">{m.conv_heading()}</h1>
|
|
<p class="text-brand-navy/60 font-sans text-sm mt-2">
|
|
{m.conv_subtitle()}
|
|
</p>
|
|
</div>
|
|
|
|
<!-- FILTER BAR -->
|
|
<div class="bg-white p-8 shadow-sm border border-brand-sand mb-10 relative z-20">
|
|
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-6">
|
|
<!-- Sender -->
|
|
<div
|
|
class="relative z-30 [&_label]:text-xs [&_label]:font-bold [&_label]:uppercase [&_label]:tracking-widest [&_label]:text-gray-500 [&_label]:mb-2 [&_input]:py-2.5 [&_input]:border-gray-300 [&_input]:focus:border-brand-navy [&_input]:focus:ring-brand-navy"
|
|
>
|
|
<PersonTypeahead
|
|
name="senderId"
|
|
label={m.conv_label_person_a()}
|
|
bind:value={senderId}
|
|
initialName={data.initialValues.senderName}
|
|
onchange={() => applyFilters()}
|
|
/>
|
|
</div>
|
|
|
|
<!-- Receiver -->
|
|
<div
|
|
class="relative z-30 [&_label]:text-xs [&_label]:font-bold [&_label]:uppercase [&_label]:tracking-widest [&_label]:text-gray-500 [&_label]:mb-2 [&_input]:py-2.5 [&_input]:border-gray-300 [&_input]:focus:border-brand-navy [&_input]:focus:ring-brand-navy"
|
|
>
|
|
<PersonTypeahead
|
|
name="receiverId"
|
|
label={m.conv_label_person_b()}
|
|
bind:value={receiverId}
|
|
initialName={data.initialValues.receiverName}
|
|
onchange={() => applyFilters()}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 items-end relative z-10">
|
|
<!-- Date From -->
|
|
<div>
|
|
<label
|
|
for="dateFrom"
|
|
class="block text-xs font-bold uppercase tracking-widest text-gray-500 mb-2"
|
|
>{m.conv_label_from()}</label
|
|
>
|
|
<input
|
|
id="dateFrom"
|
|
type="date"
|
|
bind:value={fromDate}
|
|
onchange={() => applyFilters()}
|
|
class="block w-full border-gray-300 shadow-sm focus:border-brand-navy focus:ring-brand-navy text-sm py-2.5"
|
|
/>
|
|
</div>
|
|
|
|
<!-- Date To -->
|
|
<div>
|
|
<label
|
|
for="dateTo"
|
|
class="block text-xs font-bold uppercase tracking-widest text-gray-500 mb-2"
|
|
>{m.conv_label_to()}</label
|
|
>
|
|
<input
|
|
id="dateTo"
|
|
type="date"
|
|
bind:value={toDate}
|
|
onchange={() => applyFilters()}
|
|
class="block w-full border-gray-300 shadow-sm focus:border-brand-navy focus:ring-brand-navy text-sm py-2.5"
|
|
/>
|
|
</div>
|
|
|
|
<!-- Sort Toggle -->
|
|
<div>
|
|
<button
|
|
onclick={toggleSort}
|
|
class="w-full flex items-center justify-center h-[42px] border border-brand-sand text-xs font-bold uppercase tracking-wide text-brand-navy hover:bg-brand-navy hover:text-white transition-colors"
|
|
>
|
|
<span class="mr-2">{m.conv_sort_label()}</span>
|
|
<span>{sortDir === 'DESC' ? m.conv_sort_newest() : m.conv_sort_oldest()}</span>
|
|
<svg
|
|
class="w-4 h-4 ml-2 transform {sortDir === 'ASC'
|
|
? 'rotate-180'
|
|
: ''} transition-transform"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"
|
|
></path>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- RESULTS LIST SECTION -->
|
|
{#if !senderId || !receiverId}
|
|
<div
|
|
class="flex flex-col items-center justify-center py-24 bg-white border border-brand-sand border-dashed rounded-sm text-center"
|
|
>
|
|
<div class="bg-brand-sand/30 p-4 rounded-full mb-4 text-brand-navy">
|
|
<svg class="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24"
|
|
><path
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
stroke-width="2"
|
|
d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"
|
|
/></svg
|
|
>
|
|
</div>
|
|
<p class="text-brand-navy font-serif text-lg">{m.conv_empty_heading()}</p>
|
|
<p class="text-gray-500 font-sans text-sm mt-1">{m.conv_empty_text()}</p>
|
|
</div>
|
|
{:else if data.documents.length === 0}
|
|
<div
|
|
class="flex flex-col items-center justify-center py-24 bg-white border border-brand-sand rounded-sm text-center shadow-sm"
|
|
>
|
|
<p class="text-brand-navy font-serif">{m.conv_no_results_heading()}</p>
|
|
<p class="text-gray-400 text-sm mt-2">{m.conv_no_results_text()}</p>
|
|
</div>
|
|
{:else}
|
|
<!-- CHAT CONTAINER -->
|
|
<div class="bg-white border border-brand-sand shadow-sm rounded-sm relative overflow-hidden">
|
|
<!-- Decoration: Central Timeline Line -->
|
|
<div
|
|
class="absolute left-1/2 top-0 bottom-0 w-px bg-brand-sand/30 transform -translate-x-1/2 hidden md:block"
|
|
></div>
|
|
|
|
<div class="p-6 md:p-8">
|
|
<div class="flex flex-col gap-4 relative z-10">
|
|
{#each data.documents as doc}
|
|
{@const isRight = doc.sender?.id === senderId}
|
|
|
|
<!-- Message Row -->
|
|
<div class="flex w-full {isRight ? 'justify-end' : 'justify-start'}">
|
|
<!-- Bubble Group -->
|
|
<div
|
|
class="flex max-w-[90%] md:max-w-[70%] gap-3 {isRight
|
|
? 'flex-row-reverse'
|
|
: 'flex-row'}"
|
|
>
|
|
<!-- AVATAR -->
|
|
<div class="flex-shrink-0 mt-auto mb-1 hidden sm:block">
|
|
<div
|
|
class="w-8 h-8 rounded-full flex items-center justify-center font-serif text-xs border shadow-sm
|
|
{isRight
|
|
? 'bg-brand-navy text-white border-brand-navy'
|
|
: 'bg-white text-brand-navy border-brand-sand'}"
|
|
>
|
|
{#if doc.sender}
|
|
{doc.sender.firstName[0]}{doc.sender.lastName[0]}
|
|
{:else}
|
|
?
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
|
|
<!-- BUBBLE CARD -->
|
|
<a
|
|
href="/documents/{doc.id}"
|
|
class="group block p-4 rounded shadow-sm transition-all duration-200 transform hover:-translate-y-0.5 hover:shadow-md border
|
|
{isRight
|
|
? 'bg-brand-navy text-white border-brand-navy rounded-br-none'
|
|
: 'bg-brand-sand/10 text-brand-navy border-brand-sand rounded-bl-none'}"
|
|
>
|
|
<!-- Header -->
|
|
<div class="flex justify-between items-start gap-4 mb-2">
|
|
<h3
|
|
class="font-serif font-medium text-sm leading-snug {isRight
|
|
? 'text-white'
|
|
: 'text-brand-navy'}"
|
|
>
|
|
{doc.title || doc.originalFilename}
|
|
</h3>
|
|
|
|
<!-- Status Dot -->
|
|
<span
|
|
class="flex-shrink-0 w-1.5 h-1.5 rounded-full mt-1.5
|
|
{doc.status === 'UPLOADED'
|
|
? 'bg-brand-mint'
|
|
: 'bg-yellow-400'}"
|
|
title={doc.status}
|
|
>
|
|
</span>
|
|
</div>
|
|
|
|
<!-- Metadata -->
|
|
<div
|
|
class="flex flex-wrap gap-3 text-[10px] font-sans uppercase tracking-wider opacity-80 {isRight
|
|
? 'text-blue-100'
|
|
: 'text-gray-500'}"
|
|
>
|
|
<span class="flex items-center">
|
|
{doc.documentDate ? new Intl.DateTimeFormat('de-DE', { day: 'numeric', month: 'long', year: 'numeric' }).format(new Date(doc.documentDate + 'T12:00:00')) : '—'}
|
|
</span>
|
|
{#if doc.location}
|
|
<span class="flex items-center">
|
|
• {doc.location}
|
|
</span>
|
|
{/if}
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{/each}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
</div>
|