feat: food search sheet with FTS+trgm, dish/recent endpoints, multilingual aliases
Backend: - GET /dishes/search — hybrid FTS (english + simple) + trgm + ILIKE search - GET /diary/recent — recently used dishes and products for the current user - product search upgraded: FTS on canonical_name and product_aliases, ranked by GREATEST(ts_rank, similarity) - importoff: collect product_name_ru/de/fr/... as product_aliases for multilingual search (e.g. "сникерс" → "Snickers") - migrations: FTS + trgm indexes merged into 001_initial_schema.sql (002 removed) Flutter: - FoodSearchSheet: debounced search field, recently-used section, product/dish results, scan-photo and barcode chips - DishPortionSheet: quick ½/1/1½/2 buttons + custom input - + button in meal card now opens FoodSearchSheet instead of going directly to AI scan - 7 new l10n keys across all 12 languages Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -110,5 +110,18 @@
|
||||
"portionWeightG": "1食分の重さ(g)",
|
||||
"productNotFound": "商品が見つかりません",
|
||||
"enterManually": "手動で入力",
|
||||
"perHundredG": "100gあたり"
|
||||
"perHundredG": "100gあたり",
|
||||
"searchFoodHint": "食品と料理を検索...",
|
||||
"recentlyUsedLabel": "最近使用",
|
||||
"productsSection": "食品",
|
||||
"dishesSection": "料理",
|
||||
"noResultsForQuery": "「{query}」の検索結果はありません",
|
||||
"@noResultsForQuery": {
|
||||
"placeholders": {
|
||||
"query": { "type": "String" }
|
||||
}
|
||||
},
|
||||
"servingsLabel": "人前",
|
||||
"addToDiary": "日記に追加",
|
||||
"scanDishPhoto": "写真をスキャン"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user