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>
102 lines
3.6 KiB
Dart
102 lines
3.6 KiB
Dart
import '../../core/api/api_client.dart';
|
|
import '../../shared/models/diary_entry.dart';
|
|
import '../../shared/models/menu.dart';
|
|
import '../../shared/models/shopping_item.dart';
|
|
|
|
class MenuService {
|
|
final ApiClient _client;
|
|
|
|
MenuService(this._client);
|
|
|
|
// ── Menu ──────────────────────────────────────────────────
|
|
|
|
Future<MenuPlan?> getMenu({String? week}) async {
|
|
final params = <String, dynamic>{};
|
|
if (week != null) params['week'] = week;
|
|
final data = await _client.get('/menu', params: params);
|
|
// Backend returns {"week_start": "...", "days": null} when no plan exists.
|
|
if (data['id'] == null) return null;
|
|
return MenuPlan.fromJson(data);
|
|
}
|
|
|
|
Future<MenuPlan> generateMenu({String? week}) async {
|
|
final body = <String, dynamic>{};
|
|
if (week != null) body['week'] = week;
|
|
final data = await _client.post('/ai/generate-menu', data: body);
|
|
return MenuPlan.fromJson(data);
|
|
}
|
|
|
|
/// Generates meals for specific [dates] (YYYY-MM-DD) and [mealTypes].
|
|
/// Returns the updated MenuPlan for each affected week.
|
|
Future<List<MenuPlan>> generateForDates({
|
|
required List<String> dates,
|
|
required List<String> mealTypes,
|
|
}) async {
|
|
final data = await _client.post('/ai/generate-menu', data: {
|
|
'dates': dates,
|
|
'meal_types': mealTypes,
|
|
});
|
|
final plans = data['plans'] as List<dynamic>;
|
|
return plans
|
|
.map((planJson) => MenuPlan.fromJson(planJson as Map<String, dynamic>))
|
|
.toList();
|
|
}
|
|
|
|
Future<void> updateMenuItem(String itemId, String recipeId) async {
|
|
await _client.put('/menu/items/$itemId', data: {'recipe_id': recipeId});
|
|
}
|
|
|
|
Future<void> deleteMenuItem(String itemId) async {
|
|
await _client.deleteVoid('/menu/items/$itemId');
|
|
}
|
|
|
|
// ── Shopping list ─────────────────────────────────────────
|
|
|
|
Future<List<ShoppingItem>> getShoppingList({String? week}) async {
|
|
final params = <String, dynamic>{};
|
|
if (week != null) params['week'] = week;
|
|
final data = await _client.getList('/shopping-list', params: params);
|
|
return data
|
|
.map((e) => ShoppingItem.fromJson(e as Map<String, dynamic>))
|
|
.toList();
|
|
}
|
|
|
|
Future<List<ShoppingItem>> generateShoppingList({String? week}) async {
|
|
final body = <String, dynamic>{};
|
|
if (week != null) body['week'] = week;
|
|
final data = await _client.postList('/shopping-list/generate', data: body);
|
|
return data
|
|
.map((e) => ShoppingItem.fromJson(e as Map<String, dynamic>))
|
|
.toList();
|
|
}
|
|
|
|
Future<void> toggleShoppingItem(int index, bool checked,
|
|
{String? week}) async {
|
|
final params = <String, dynamic>{};
|
|
if (week != null) params['week'] = week;
|
|
await _client.patch(
|
|
'/shopping-list/items/$index/check',
|
|
data: {'checked': checked},
|
|
params: params,
|
|
);
|
|
}
|
|
|
|
// ── Diary ─────────────────────────────────────────────────
|
|
|
|
Future<List<DiaryEntry>> getDiary(String date) async {
|
|
final data = await _client.getList('/diary', params: {'date': date});
|
|
return data
|
|
.map((e) => DiaryEntry.fromJson(e as Map<String, dynamic>))
|
|
.toList();
|
|
}
|
|
|
|
Future<DiaryEntry> createDiaryEntry(Map<String, dynamic> body) async {
|
|
final data = await _client.post('/diary', data: body);
|
|
return DiaryEntry.fromJson(data);
|
|
}
|
|
|
|
Future<void> deleteDiaryEntry(String id) async {
|
|
await _client.deleteVoid('/diary/$id');
|
|
}
|
|
}
|