feat: flexible meal planning wizard — plan 1 meal, 1 day, several days, or a week
Backend:
- migration 005: expand menu_items.meal_type CHECK to all 6 types (second_breakfast, afternoon_snack, snack)
- ai/types.go: add Days and MealTypes to MenuRequest for partial generation
- openai/menu.go: parametrize GenerateMenu — use requested meal types and day count; add caloric fractions for all 6 meal types
- menu/repository.go: add UpsertItemsInTx for partial upsert (preserves existing slots); fix meal_type sort order in GetByWeek
- menu/handler.go: add dates+meal_types path to POST /ai/generate-menu; extract fetchImages/saveRecipes helpers; returns {"plans":[...]} for dates mode; backward-compatible with week mode
Client:
- PlanMenuSheet: bottom sheet with 4 planning horizon options
- PlanDatePickerSheet: adaptive sheet with date strip (single day/meal) or custom CalendarRangePicker (multi-day/week); sliding 7-day window for week mode
- menu_service.dart: add generateForDates
- menu_provider.dart: add PlanMenuService (generates + invalidates week providers), lastPlannedDateProvider
- home_screen.dart: add _PlanMenuButton card below quick actions; opens planning wizard
- l10n: 16 new keys for planning UI across all 12 languages
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -135,5 +135,22 @@
|
||||
"generateWeekLabel": "सप्ताह की योजना बनाएं",
|
||||
"generateWeekSubtitle": "AI पूरे सप्ताह के लिए नाश्ता, दोपहर का खाना और रात के खाने के साथ मेनू बनाएगा",
|
||||
"generatingMenu": "मेनू बना रहे हैं...",
|
||||
"weekPlannedLabel": "सप्ताह की योजना बनाई गई"
|
||||
"weekPlannedLabel": "सप्ताह की योजना बनाई गई",
|
||||
|
||||
"planMenuButton": "भोजन की योजना बनाएं",
|
||||
"planMenuTitle": "क्या योजना बनानी है?",
|
||||
"planOptionSingleMeal": "एक भोजन",
|
||||
"planOptionSingleMealDesc": "दिन और भोजन का प्रकार चुनें",
|
||||
"planOptionDay": "एक दिन",
|
||||
"planOptionDayDesc": "एक दिन के सभी भोजन",
|
||||
"planOptionDays": "कई दिन",
|
||||
"planOptionDaysDesc": "अवधि अनुकूलित करें",
|
||||
"planOptionWeek": "एक सप्ताह",
|
||||
"planOptionWeekDesc": "एक बार में 7 दिन",
|
||||
"planSelectDate": "तारीख चुनें",
|
||||
"planSelectMealType": "भोजन का प्रकार",
|
||||
"planSelectRange": "अवधि चुनें",
|
||||
"planGenerateButton": "योजना बनाएं",
|
||||
"planGenerating": "योजना बना रहे हैं\u2026",
|
||||
"planSuccess": "मेनू की योजना बनाई गई!"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user