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.
80 lines
2.0 KiB
Svelte
80 lines
2.0 KiB
Svelte
<script lang="ts">
|
|
import CardAdd from '$lib/components/CardAdd.svelte';
|
|
import MediaScroller from '$lib/components/MediaScroller.svelte';
|
|
import Card from '$lib/components/Card.svelte';
|
|
import Search from '$lib/components/Search.svelte';
|
|
import SeasonSelect from '$lib/components/SeasonSelect.svelte';
|
|
import CreateIngredientList from '$lib/components/CreateIngredientList.svelte';
|
|
import CreateStepList from '$lib/components/CreateStepList.svelte';
|
|
|
|
let {
|
|
card_data = $bindable({}),
|
|
season = $bindable([]),
|
|
ingredients = $bindable([]),
|
|
instructions = $bindable([])
|
|
}: {
|
|
card_data?: any,
|
|
season?: any[],
|
|
ingredients?: any[],
|
|
instructions?: any[]
|
|
} = $props();
|
|
|
|
let short_name = $state();
|
|
let password = $state();
|
|
let datecreated = $state(new Date());
|
|
let datemodified = $state(datecreated);
|
|
|
|
async function doPost () {
|
|
const res = await fetch('/api/add', {
|
|
method: 'POST',
|
|
body: JSON.stringify({
|
|
recipe: {
|
|
season: season,
|
|
...card_data,
|
|
images: [{
|
|
mediapath: short_name + '.webp',
|
|
alt: "",
|
|
caption: ""
|
|
}],
|
|
short_name,
|
|
datecreated,
|
|
datemodified,
|
|
instructions,
|
|
ingredients,
|
|
},
|
|
headers: {
|
|
'content-type': 'application/json',
|
|
bearer: password,
|
|
}
|
|
})
|
|
})
|
|
|
|
const json = await res.json()
|
|
result = JSON.stringify(json)
|
|
}
|
|
</script>
|
|
<style>
|
|
input.temp{
|
|
all: unset;
|
|
display: block;
|
|
margin: 1rem auto;
|
|
padding: 0.2em 1em;
|
|
border-radius: 1000px;
|
|
background-color: var(--nord4);
|
|
|
|
}
|
|
</style>
|
|
|
|
<CardAdd bind:card_data={card_data}></CardAdd>
|
|
|
|
<input class=temp bind:value={short_name} placeholder="Kurzname"/>
|
|
|
|
<SeasonSelect bind:season={season}></SeasonSelect>
|
|
<button onclick={() => console.log(season)}>PRINTOUT season</button>
|
|
|
|
<h2>Zutaten</h2>
|
|
<CreateIngredientList bind:ingredients={ingredients}></CreateIngredientList>
|
|
<h2>Zubereitung</h2>
|
|
<CreateStepList bind:instructions={instructions} ></CreateStepList>
|
|
<input class=temp type="password" placeholder=Passwort bind:value={password}>
|