Add meal plan editor
Some checks failed
Build and Deploy / build-and-push (push) Failing after 1m19s

This commit is contained in:
2026-03-30 22:50:53 +02:00
parent efe1cd941c
commit ee9ddd915e
6 changed files with 829 additions and 405 deletions

View File

@@ -3,6 +3,7 @@ import { getFilterHTML, setupFilter } from './views/Filter.js?v=2';
import { getRecipeDetailHTML, setupRecipeDetail } from './views/RecipeDetailV2.js?v=2';
import { getMealPlannerHTML, setupMealPlanner } from './views/MealPlanner.js?v=2';
import { getPantryHTML, refreshPantry, setupPantry } from './views/Pantry.js?v=2';
import { getMealPlanEditorHTML, setupMealPlanEditor } from './ui/mealPlanEditor.js?v=2';
function getAppToastHTML() {
return `
@@ -105,6 +106,7 @@ document.addEventListener('DOMContentLoaded', () => {
${getBottomNavHTML()}
${getRecipeDetailHTML()}
${getFilterHTML()}
${getMealPlanEditorHTML()}
${getAppToastHTML()}
`;
@@ -114,5 +116,6 @@ document.addEventListener('DOMContentLoaded', () => {
setupMealPlanner();
setupPantry();
setupFilter();
setupMealPlanEditor();
setupRecipeDetail();
});