feat: complete Svelte 5 migration across entire application
All checks were successful
CI / update (push) Successful in 2m8s

Migrated all components and routes from Svelte 4 to Svelte 5 syntax:

- Converted export let → $props() with generic type syntax
- Replaced createEventDispatcher → callback props
- Migrated $: reactive statements → $derived() and $effect()
- Updated two-way bindings with $bindable()
- Fixed TypeScript syntax: added lang="ts" to script tags
- Converted inline type annotations to generic parameter syntax

- Updated deprecated event directives to Svelte 5 syntax:
  - on:click → onclick
  - on:submit → onsubmit
  - on:change → onchange

- Converted deprecated <slot> elements → {@render children()}
- Updated slot props to Snippet types
- Fixed season/icon selector components with {#snippet} blocks

- Fixed non-reactive state by converting let → $state()
- Fixed infinite loop in EnhancedBalance by converting $effect → $derived
- Fixed Chart.js integration by converting $state proxies to plain arrays
- Updated cospend dashboard and payment pages with proper reactivity

- Migrated 20+ route files from export let data → $props()
- Fixed TypeScript type annotations in page components
- Updated reactive statements in error and cospend routes

- Removed invalid onchange attribute from Toggle component
- Fixed modal ID isolation in CreateIngredientList/CreateStepList
- Fixed dark mode button visibility in TranslationApproval
- Build now succeeds with zero deprecation warnings

All functionality tested and working. No breaking changes to user experience.
This commit is contained in:
2026-01-10 16:20:43 +01:00
parent 8eee15d901
commit 5c8605c690
72 changed files with 1011 additions and 1043 deletions

View File

@@ -1,5 +1,5 @@
<script>
import { onMount, createEventDispatcher } from 'svelte';
import { onMount } from 'svelte';
import { goto } from '$app/navigation';
import { page } from '$app/stores';
import ProfilePicture from './ProfilePicture.svelte';
@@ -7,17 +7,15 @@
import { getCategoryEmoji, getCategoryName } from '$lib/utils/categories';
import { formatCurrency as formatCurrencyUtil } from '$lib/utils/formatters';
export let paymentId;
// Get session from page store
$: session = $page.data?.session;
const dispatch = createEventDispatcher();
let { paymentId, onclose, onpaymentDeleted } = $props();
let payment = null;
let loading = true;
let error = null;
let modal;
// Get session from page store
let session = $derived($page.data?.session);
let payment = $state(null);
let loading = $state(true);
let error = $state(null);
let modal = $state();
onMount(async () => {
await loadPayment();
@@ -54,7 +52,7 @@
function closeModal() {
// Use shallow routing to go back to dashboard without full navigation
goto('/cospend', { replaceState: true, noScroll: true, keepFocus: true });
dispatch('close');
onclose?.();
}
function handleBackdropClick(event) {
@@ -85,7 +83,7 @@
}
}
let deleting = false;
let deleting = $state(false);
async function deletePayment() {
if (!confirm('Are you sure you want to delete this payment? This action cannot be undone.')) {
@@ -103,7 +101,7 @@
}
// Close modal and dispatch event to refresh data
dispatch('paymentDeleted', paymentId);
onpaymentDeleted?.(paymentId);
closeModal();
} catch (err) {
@@ -117,7 +115,7 @@
<div class="panel-content" bind:this={modal}>
<div class="panel-header">
<h2>Payment Details</h2>
<button class="close-button" on:click={closeModal} aria-label="Close modal">
<button class="close-button" onclick={closeModal} aria-label="Close modal">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<line x1="18" y1="6" x2="6" y2="18"></line>
<line x1="6" y1="6" x2="18" y2="18"></line>
@@ -212,7 +210,7 @@
{/if}
<div class="panel-actions">
<button class="btn-secondary" on:click={closeModal}>Close</button>
<button class="btn-secondary" onclick={closeModal}>Close</button>
</div>
</div>
{/if}