Fix server-side favorites fetching for production nginx setup
All checks were successful
CI / update (push) Successful in 17s

- Use absolute URLs for internal server-side fetch calls to bypass nginx routing issues
- Add debugging logs to favorites loading process
- Temporarily disable CSRF protection for local testing
- Clean up page server load function

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-09-04 12:09:28 +02:00
parent 9f53e331a7
commit bda30eb42d
3 changed files with 21 additions and 10 deletions

View File

@@ -1,22 +1,18 @@
import type { PageServerLoad } from "./$types";
import { getUserFavorites, addFavoriteStatusToRecipes } from "$lib/server/favorites";
export async function load({ fetch, locals }) {
export async function load({ fetch, locals, parent }) {
let current_month = new Date().getMonth() + 1
const res_season = await fetch(`/api/rezepte/items/in_season/` + current_month);
const res_all_brief = await fetch(`/api/rezepte/items/all_brief`);
const item_season = await res_season.json();
const item_all_brief = await res_all_brief.json();
// Get user favorites and session
const [userFavorites, session] = await Promise.all([
getUserFavorites(fetch, locals),
locals.auth()
]);
// Get user favorites (session comes from parent layout)
const userFavorites = await getUserFavorites(fetch, locals);
return {
season: addFavoriteStatusToRecipes(item_season, userFavorites),
all_brief: addFavoriteStatusToRecipes(item_all_brief, userFavorites),
session
all_brief: addFavoriteStatusToRecipes(item_all_brief, userFavorites)
};
};