Add ingredients' products
Some checks failed
Build and Deploy / build-and-push (push) Failing after 1m20s
Some checks failed
Build and Deploy / build-and-push (push) Failing after 1m20s
This commit is contained in:
@@ -20,6 +20,7 @@ export const CATEGORY_LABELS = {
|
||||
* @typedef {{ kcal: number, protein: number, fat: number, carbs: number }} NutritionPer100
|
||||
* @typedef {{ amount: number, label?: string }} PurchasePack
|
||||
* @typedef {{ id: string, name: string, category: keyof typeof CATEGORY_LABELS, pantryUnit: 'g'|'ml'|'szt', purchasePack?: PurchasePack, nutritionPer100g?: NutritionPer100 }} IngredientDef
|
||||
* @typedef {{ id: string, ingredientId: string, name: string, brand?: string, packSize: number, packLabel?: string, nutritionPer100g: NutritionPer100 }} ProductDef
|
||||
*/
|
||||
|
||||
/** @type {Record<string, IngredientDef>} */
|
||||
@@ -59,6 +60,14 @@ export const INGREDIENTS = {
|
||||
purchasePack: { amount: 250, label: 'opakowanie 250 g' },
|
||||
nutritionPer100g: { kcal: 174, protein: 11, fat: 13, carbs: 3 },
|
||||
},
|
||||
burrata: {
|
||||
id: 'burrata',
|
||||
name: 'Burrata',
|
||||
category: 'nabial',
|
||||
pantryUnit: 'g',
|
||||
purchasePack: { amount: 150, label: 'opakowanie 150 g' },
|
||||
nutritionPer100g: { kcal: 280, protein: 16, fat: 22, carbs: 2 },
|
||||
},
|
||||
serek_wiejski: {
|
||||
id: 'serek_wiejski',
|
||||
name: 'Serek wiejski',
|
||||
@@ -339,7 +348,7 @@ export const RECIPES = {
|
||||
{ ingredientId: 'czosnek', amount: 6, unit: 'g' },
|
||||
{ ingredientId: 'tymianek', amount: 1, unit: 'g' },
|
||||
{ ingredientId: 'oliwa', amount: 5, unit: 'ml' },
|
||||
{ ingredientId: 'ricotta', amount: 75, unit: 'g' },
|
||||
{ ingredientId: 'ricotta', amount: 75, unit: 'g', alternatives: ['burrata'] },
|
||||
{ ingredientId: 'bazylia_swieza', amount: 3, unit: 'g' },
|
||||
{ ingredientId: 'nasiona_slonecznika', amount: 15, unit: 'g' },
|
||||
],
|
||||
@@ -448,6 +457,119 @@ export const RECIPES = {
|
||||
},
|
||||
};
|
||||
|
||||
/* ══════════════════════════════════════════════════════════════════════
|
||||
* Konkretne produkty — warianty składników generycznych.
|
||||
* Każdy produkt należy do jednego IngredientDef (przez ingredientId).
|
||||
* ══════════════════════════════════════════════════════════════════════ */
|
||||
|
||||
/** @type {Record<string, ProductDef>} */
|
||||
export const PRODUCTS = {
|
||||
/* ── Nabiał ───────────────────────────────────────── */
|
||||
almette_naturalny: {
|
||||
id: 'almette_naturalny',
|
||||
ingredientId: 'serek_smietankowy',
|
||||
name: 'Almette naturalny',
|
||||
brand: 'Almette',
|
||||
packSize: 150,
|
||||
packLabel: '150 g',
|
||||
nutritionPer100g: { kcal: 234, protein: 5.5, fat: 22, carbs: 3.5 },
|
||||
},
|
||||
philadelphia_original: {
|
||||
id: 'philadelphia_original',
|
||||
ingredientId: 'serek_smietankowy',
|
||||
name: 'Philadelphia Original',
|
||||
brand: 'Philadelphia',
|
||||
packSize: 125,
|
||||
packLabel: '125 g',
|
||||
nutritionPer100g: { kcal: 235, protein: 5.4, fat: 21.5, carbs: 4.1 },
|
||||
},
|
||||
mozzarella_galbani: {
|
||||
id: 'mozzarella_galbani',
|
||||
ingredientId: 'mozzarella',
|
||||
name: 'Galbani Mozzarella',
|
||||
brand: 'Galbani',
|
||||
packSize: 125,
|
||||
packLabel: '125 g',
|
||||
nutritionPer100g: { kcal: 253, protein: 18.4, fat: 19.1, carbs: 1.6 },
|
||||
},
|
||||
ricotta_galbani: {
|
||||
id: 'ricotta_galbani',
|
||||
ingredientId: 'ricotta',
|
||||
name: 'Galbani Ricotta',
|
||||
brand: 'Galbani',
|
||||
packSize: 250,
|
||||
packLabel: '250 g',
|
||||
nutritionPer100g: { kcal: 138, protein: 10, fat: 10, carbs: 3 },
|
||||
},
|
||||
serek_wiejski_piatnica: {
|
||||
id: 'serek_wiejski_piatnica',
|
||||
ingredientId: 'serek_wiejski',
|
||||
name: 'Piątnica Serek wiejski',
|
||||
brand: 'Piątnica',
|
||||
packSize: 200,
|
||||
packLabel: '200 g',
|
||||
nutritionPer100g: { kcal: 97, protein: 11, fat: 5, carbs: 2 },
|
||||
},
|
||||
serek_wiejski_piatnica_wb: {
|
||||
id: 'serek_wiejski_piatnica_wb',
|
||||
ingredientId: 'serek_wiejski',
|
||||
name: 'Piątnica Serek wiejski wysokobiałkowy',
|
||||
brand: 'Piątnica',
|
||||
packSize: 200,
|
||||
packLabel: '200 g',
|
||||
nutritionPer100g: { kcal: 93, protein: 14, fat: 3, carbs: 2.4 },
|
||||
},
|
||||
/* ── Mięso i ryby ─────────────────────────────────── */
|
||||
burrata_milbona: {
|
||||
id: 'burrata_milbona',
|
||||
ingredientId: 'burrata',
|
||||
name: 'Milbona Burrata',
|
||||
brand: 'Milbona',
|
||||
packSize: 125,
|
||||
packLabel: '125 g',
|
||||
nutritionPer100g: { kcal: 254, protein: 10, fat: 23, carbs: 1.8 },
|
||||
},
|
||||
burrata_gustobello: {
|
||||
id: 'burrata_gustobello',
|
||||
ingredientId: 'burrata',
|
||||
name: 'GustoBello Burrata',
|
||||
brand: 'GustoBello',
|
||||
packSize: 100,
|
||||
packLabel: '100 g',
|
||||
nutritionPer100g: { kcal: 259, protein: 10, fat: 23, carbs: 2 },
|
||||
},
|
||||
/* ── Mięso i ryby ─────────────────────────────────── */
|
||||
losos_wedzony_suempol: {
|
||||
id: 'losos_wedzony_suempol',
|
||||
ingredientId: 'losos_wedzony',
|
||||
name: 'Suempol Łosoś atlantycki wędzony',
|
||||
brand: 'Suempol',
|
||||
packSize: 100,
|
||||
packLabel: '100 g',
|
||||
nutritionPer100g: { kcal: 160, protein: 21.5, fat: 8, carbs: 0.5 },
|
||||
},
|
||||
/* ── Inne ─────────────────────────────────────────── */
|
||||
hummus_klasyczny_well_well: {
|
||||
id: 'hummus_klasyczny_well_well',
|
||||
ingredientId: 'hummus',
|
||||
name: 'Well Well Hummus klasyczny',
|
||||
brand: 'Well Well',
|
||||
packSize: 200,
|
||||
packLabel: '200 g',
|
||||
nutritionPer100g: { kcal: 198, protein: 6.6, fat: 12, carbs: 16 },
|
||||
},
|
||||
};
|
||||
|
||||
/** @param {string} ingredientId @returns {ProductDef[]} */
|
||||
export function getProductsForIngredient(ingredientId) {
|
||||
return Object.values(PRODUCTS).filter(p => p.ingredientId === ingredientId);
|
||||
}
|
||||
|
||||
/** @param {string} ingredientId @returns {boolean} */
|
||||
export function ingredientHasProducts(ingredientId) {
|
||||
return Object.values(PRODUCTS).some(p => p.ingredientId === ingredientId);
|
||||
}
|
||||
|
||||
/**
|
||||
* Krok +/- w spiżarni: całe opakowanie albo domyślny krok (10 g/ml lub 1 szt.).
|
||||
* @param {string} ingredientId
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { INGREDIENTS, CATEGORY_LABELS } from '../data/catalog.js?v=2';
|
||||
import { PANTRY_STORAGE_KEY, SHOPPING_STORAGE_KEY } from '../storageKeys.js';
|
||||
import { INGREDIENTS, CATEGORY_LABELS, PRODUCTS, ingredientHasProducts } from '../data/catalog.js?v=6';
|
||||
import { PANTRY_STORAGE_KEY, PANTRY_STORAGE_KEY_V2, SHOPPING_STORAGE_KEY } from '../storageKeys.js';
|
||||
|
||||
export const KITCHEN_LIST_ID = 'kitchen';
|
||||
export const MISC_LIST_ID = 'misc';
|
||||
@@ -11,7 +11,7 @@ function newId(prefix) {
|
||||
return `${prefix}${Date.now()}-${Math.random().toString(36).slice(2, 9)}`;
|
||||
}
|
||||
|
||||
/** @typedef {{ id: string, ingredientId: string, name: string, amount: number, unit: string, category: string, checked: boolean, sourceNote?: string }} KitchenShoppingItem */
|
||||
/** @typedef {{ id: string, ingredientId: string, productId?: string, name: string, amount: number, unit: string, category: string, checked: boolean, sourceNote?: string }} KitchenShoppingItem */
|
||||
/** @typedef {{ id: string, text: string, note?: string, checked: boolean }} FreeformShoppingItem */
|
||||
/** @typedef {{ id: string, name: string, type: 'kitchen'|'freeform', items: (KitchenShoppingItem|FreeformShoppingItem)[] }} ShoppingListDef */
|
||||
|
||||
@@ -39,7 +39,7 @@ function normalizeKitchenItem(x) {
|
||||
if (!o.ingredientId || !Number.isFinite(Number(o.amount))) return null;
|
||||
const id = String(o.id && String(o.id).length ? o.id : newId('s'));
|
||||
const ingId = String(o.ingredientId);
|
||||
return {
|
||||
const item = {
|
||||
id,
|
||||
ingredientId: ingId,
|
||||
name: String(o.name || INGREDIENTS[ingId]?.name || ingId),
|
||||
@@ -49,6 +49,10 @@ function normalizeKitchenItem(x) {
|
||||
checked: Boolean(o.checked),
|
||||
sourceNote: o.sourceNote ? String(o.sourceNote) : undefined,
|
||||
};
|
||||
if (o.productId && typeof o.productId === 'string' && PRODUCTS[o.productId]) {
|
||||
item.productId = o.productId;
|
||||
}
|
||||
return item;
|
||||
}
|
||||
|
||||
/** @param {unknown} x */
|
||||
@@ -222,23 +226,28 @@ export function addOrMergeShoppingLines(lines, listId = KITCHEN_LIST_ID) {
|
||||
const def = INGREDIENTS[L.ingredientId];
|
||||
const name = L.name || def?.name || L.ingredientId;
|
||||
const category = L.category || def?.category || 'inne';
|
||||
const productId = L.productId && PRODUCTS[L.productId] ? L.productId : undefined;
|
||||
const productName = productId ? PRODUCTS[productId].name : null;
|
||||
const displayName = productName || name;
|
||||
const idx = open.findIndex(
|
||||
(x) => x.ingredientId === L.ingredientId && x.unit === L.unit,
|
||||
(x) => x.ingredientId === L.ingredientId && x.unit === L.unit && (x.productId || '') === (productId || ''),
|
||||
);
|
||||
if (idx >= 0) {
|
||||
open[idx].amount = Math.round((open[idx].amount + L.amount) * 100) / 100;
|
||||
if (L.sourceNote && !open[idx].sourceNote) open[idx].sourceNote = L.sourceNote;
|
||||
} else {
|
||||
open.push({
|
||||
const item = {
|
||||
id: newId('s'),
|
||||
ingredientId: L.ingredientId,
|
||||
name,
|
||||
name: displayName,
|
||||
amount: Math.round(L.amount * 100) / 100,
|
||||
unit: L.unit,
|
||||
category,
|
||||
checked: false,
|
||||
sourceNote: L.sourceNote,
|
||||
});
|
||||
};
|
||||
if (productId) item.productId = productId;
|
||||
open.push(item);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -338,7 +347,7 @@ export function computeShortfalls(needLines, pantry = loadPantry()) {
|
||||
short.push({ ...L, pantryQty: 0, shortfall: L.amount, unitMismatch: true });
|
||||
continue;
|
||||
}
|
||||
const have = Number(pantry[L.ingredientId]) || 0;
|
||||
const have = getPantryTotal(L.ingredientId, pantry);
|
||||
const miss = Math.max(0, Math.round((L.amount - have) * 100) / 100);
|
||||
if (miss > 0) {
|
||||
short.push({
|
||||
@@ -370,35 +379,154 @@ export function categoryLabel(cat) {
|
||||
return CATEGORY_LABELS[cat] || CATEGORY_LABELS.inne;
|
||||
}
|
||||
|
||||
/** @returns {Record<string, number>} ingredientId -> ilość w pantryUnit */
|
||||
export function loadPantry() {
|
||||
/* ══════════════════════════════════════════════════════════════════════
|
||||
* Pantry v2 — hybrydowy format.
|
||||
*
|
||||
* Wartość dla składnika może być:
|
||||
* number — składnik generyczny (bez zdefiniowanych produktów)
|
||||
* { _total, items: [{productId, qty}], generic } — składnik z produktami
|
||||
*
|
||||
* _total = generic + sum(items[].qty) (cache, zawsze przeliczany przy zapisie)
|
||||
* ══════════════════════════════════════════════════════════════════════ */
|
||||
|
||||
/** @typedef {{ productId: string, qty: number }} PantryProductItem */
|
||||
/** @typedef {{ _total: number, items: PantryProductItem[], generic: number }} PantryProductEntry */
|
||||
/** @typedef {Record<string, number | PantryProductEntry>} PantryV2 */
|
||||
|
||||
function recalcTotal(entry) {
|
||||
const itemSum = entry.items.reduce((s, i) => s + i.qty, 0);
|
||||
entry._total = Math.round((entry.generic + itemSum) * 1000) / 1000;
|
||||
return entry;
|
||||
}
|
||||
|
||||
function normalizePantryEntry(ingredientId, val) {
|
||||
if (val && typeof val === 'object' && !Array.isArray(val)) {
|
||||
const items = Array.isArray(val.items)
|
||||
? val.items
|
||||
.filter(i => i && typeof i.productId === 'string' && PRODUCTS[i.productId] && Number.isFinite(Number(i.qty)) && Number(i.qty) > 0)
|
||||
.map(i => ({ productId: i.productId, qty: Math.round(Number(i.qty) * 1000) / 1000 }))
|
||||
: [];
|
||||
const generic = Math.max(0, Number(val.generic) || 0);
|
||||
return recalcTotal({ items, generic, _total: 0 });
|
||||
}
|
||||
const n = Number(val);
|
||||
if (!Number.isFinite(n) || n < 0) return null;
|
||||
if (ingredientHasProducts(ingredientId)) {
|
||||
return recalcTotal({ items: [], generic: n, _total: 0 });
|
||||
}
|
||||
return n;
|
||||
}
|
||||
|
||||
function migrateV1toV2() {
|
||||
try {
|
||||
const raw = localStorage.getItem(PANTRY_STORAGE_KEY);
|
||||
if (!raw) return {};
|
||||
const p = JSON.parse(raw);
|
||||
if (typeof p !== 'object' || p === null) return {};
|
||||
const out = {};
|
||||
Object.keys(p).forEach((k) => {
|
||||
const n = Number(p[k]);
|
||||
if (!Number.isFinite(n) || n < 0) return;
|
||||
out[k] = n;
|
||||
});
|
||||
for (const [k, v] of Object.entries(p)) {
|
||||
const norm = normalizePantryEntry(k, v);
|
||||
if (norm !== null) out[k] = norm;
|
||||
}
|
||||
return out;
|
||||
} catch {
|
||||
return {};
|
||||
}
|
||||
}
|
||||
|
||||
/** @returns {PantryV2} */
|
||||
export function loadPantry() {
|
||||
try {
|
||||
const rawV2 = localStorage.getItem(PANTRY_STORAGE_KEY_V2);
|
||||
if (rawV2) {
|
||||
const p = JSON.parse(rawV2);
|
||||
if (typeof p !== 'object' || p === null) return {};
|
||||
const out = {};
|
||||
for (const [k, v] of Object.entries(p)) {
|
||||
const norm = normalizePantryEntry(k, v);
|
||||
if (norm !== null) out[k] = norm;
|
||||
}
|
||||
return out;
|
||||
}
|
||||
const migrated = migrateV1toV2();
|
||||
if (Object.keys(migrated).length > 0) {
|
||||
savePantry(migrated);
|
||||
}
|
||||
return migrated;
|
||||
} catch {
|
||||
return {};
|
||||
}
|
||||
}
|
||||
|
||||
/** @param {PantryV2} pantry */
|
||||
export function savePantry(pantry) {
|
||||
try {
|
||||
localStorage.setItem(PANTRY_STORAGE_KEY, JSON.stringify(pantry));
|
||||
localStorage.setItem(PANTRY_STORAGE_KEY_V2, JSON.stringify(pantry));
|
||||
} catch { /* ignore */ }
|
||||
}
|
||||
|
||||
/** Łączna ilość składnika (generyczna + produkty). */
|
||||
export function getPantryTotal(ingredientId, pantry) {
|
||||
const val = pantry[ingredientId];
|
||||
if (val == null) return 0;
|
||||
if (typeof val === 'number') return val;
|
||||
return val._total || 0;
|
||||
}
|
||||
|
||||
/** Lista produktów w spiżarni dla danego składnika. */
|
||||
export function getPantryProducts(ingredientId, pantry) {
|
||||
const val = pantry[ingredientId];
|
||||
if (!val || typeof val === 'number') return [];
|
||||
return val.items || [];
|
||||
}
|
||||
|
||||
/** Ilość generyczna (nieprzypisana do produktu). */
|
||||
export function getPantryGeneric(ingredientId, pantry) {
|
||||
const val = pantry[ingredientId];
|
||||
if (typeof val === 'number') return val;
|
||||
if (!val) return 0;
|
||||
return val.generic || 0;
|
||||
}
|
||||
|
||||
/** Ustaw ilość generyczną składnika (bez produktu). */
|
||||
export function setPantryQty(ingredientId, qty) {
|
||||
const pantry = loadPantry();
|
||||
if (qty <= 0 || !Number.isFinite(qty)) delete pantry[ingredientId];
|
||||
else pantry[ingredientId] = Math.round(qty * 1000) / 1000;
|
||||
const val = pantry[ingredientId];
|
||||
if (val && typeof val === 'object') {
|
||||
val.generic = Math.max(0, Math.round(qty * 1000) / 1000);
|
||||
recalcTotal(val);
|
||||
if (val._total <= 0) delete pantry[ingredientId];
|
||||
} else {
|
||||
if (qty <= 0 || !Number.isFinite(qty)) delete pantry[ingredientId];
|
||||
else if (ingredientHasProducts(ingredientId)) {
|
||||
pantry[ingredientId] = recalcTotal({ items: [], generic: Math.round(qty * 1000) / 1000, _total: 0 });
|
||||
} else {
|
||||
pantry[ingredientId] = Math.round(qty * 1000) / 1000;
|
||||
}
|
||||
}
|
||||
savePantry(pantry);
|
||||
return pantry;
|
||||
}
|
||||
|
||||
/** Ustaw ilość konkretnego produktu w spiżarni. */
|
||||
export function setPantryProductQty(ingredientId, productId, qty) {
|
||||
const pantry = loadPantry();
|
||||
let val = pantry[ingredientId];
|
||||
if (!val || typeof val === 'number') {
|
||||
const generic = typeof val === 'number' ? val : 0;
|
||||
val = { items: [], generic, _total: 0 };
|
||||
pantry[ingredientId] = val;
|
||||
}
|
||||
const idx = val.items.findIndex(i => i.productId === productId);
|
||||
const q = Math.max(0, Math.round(qty * 1000) / 1000);
|
||||
if (q > 0) {
|
||||
if (idx >= 0) val.items[idx].qty = q;
|
||||
else val.items.push({ productId, qty: q });
|
||||
} else {
|
||||
if (idx >= 0) val.items.splice(idx, 1);
|
||||
}
|
||||
recalcTotal(val);
|
||||
if (val._total <= 0) delete pantry[ingredientId];
|
||||
savePantry(pantry);
|
||||
return pantry;
|
||||
}
|
||||
@@ -417,8 +545,29 @@ export function applyCheckedKitchenListToPantry() {
|
||||
const def = INGREDIENTS[it.ingredientId];
|
||||
if (!def) continue;
|
||||
if (normalizeUnitForPantry(it.unit, def.pantryUnit) === null) continue;
|
||||
const cur = Number(pantry[it.ingredientId]) || 0;
|
||||
pantry[it.ingredientId] = Math.round((cur + it.amount) * 1000) / 1000;
|
||||
const val = pantry[it.ingredientId];
|
||||
if (val && typeof val === 'object') {
|
||||
if (it.productId && PRODUCTS[it.productId]) {
|
||||
const idx = val.items.findIndex(i => i.productId === it.productId);
|
||||
if (idx >= 0) val.items[idx].qty = Math.round((val.items[idx].qty + it.amount) * 1000) / 1000;
|
||||
else val.items.push({ productId: it.productId, qty: Math.round(it.amount * 1000) / 1000 });
|
||||
} else {
|
||||
val.generic = Math.round(((val.generic || 0) + it.amount) * 1000) / 1000;
|
||||
}
|
||||
recalcTotal(val);
|
||||
} else if (ingredientHasProducts(it.ingredientId)) {
|
||||
const cur = typeof val === 'number' ? val : 0;
|
||||
const entry = { items: [], generic: cur, _total: 0 };
|
||||
if (it.productId && PRODUCTS[it.productId]) {
|
||||
entry.items.push({ productId: it.productId, qty: Math.round(it.amount * 1000) / 1000 });
|
||||
} else {
|
||||
entry.generic = Math.round((entry.generic + it.amount) * 1000) / 1000;
|
||||
}
|
||||
pantry[it.ingredientId] = recalcTotal(entry);
|
||||
} else {
|
||||
const cur = typeof val === 'number' ? val : 0;
|
||||
pantry[it.ingredientId] = Math.round((cur + it.amount) * 1000) / 1000;
|
||||
}
|
||||
}
|
||||
|
||||
kitchen.items = items.filter((i) => !i.checked);
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
import { INGREDIENTS, RECIPES } from '../data/catalog.js?v=2';
|
||||
import { INGREDIENTS, RECIPES, PRODUCTS, getProductsForIngredient } from '../data/catalog.js?v=6';
|
||||
import { MEAL_SLOTS } from '../planner/mealSlots.js';
|
||||
import { addDays } from './dateUtils.js';
|
||||
import { getDayPlan } from './planStore.js';
|
||||
import { getDayPlan } from './planStore.js?v=2';
|
||||
import { getPantryTotal } from './pantryShopping.js?v=2';
|
||||
|
||||
export function dayHasAnyMeal(plans, d) {
|
||||
const p = getDayPlan(plans, d);
|
||||
@@ -17,20 +18,24 @@ function hasCustomizations(entry) {
|
||||
return (entry.excludedIngredients?.length > 0) ||
|
||||
(entry.amountOverrides && Object.keys(entry.amountOverrides).length > 0) ||
|
||||
(entry.addedIngredients?.length > 0) ||
|
||||
(entry.substitutions && Object.keys(entry.substitutions).length > 0);
|
||||
(entry.substitutions && Object.keys(entry.substitutions).length > 0) ||
|
||||
(entry.productSelections && Object.keys(entry.productSelections).length > 0);
|
||||
}
|
||||
|
||||
function nutritionForAmountRaw(ingredientId, amount, unit) {
|
||||
function nutritionForAmountRaw(ingredientId, amount, unit, productId = null) {
|
||||
const def = INGREDIENTS[ingredientId];
|
||||
if (!def?.nutritionPer100g) return null;
|
||||
if (!def) return null;
|
||||
const product = productId ? PRODUCTS[productId] : null;
|
||||
const nutrition = product?.nutritionPer100g || def.nutritionPer100g;
|
||||
if (!nutrition) return null;
|
||||
let g = amount;
|
||||
if ((unit === 'szt.' || unit === 'szt') && def.weightPerPiece) g = amount * def.weightPerPiece;
|
||||
const f = g / 100;
|
||||
return {
|
||||
kcal: def.nutritionPer100g.kcal * f,
|
||||
protein: def.nutritionPer100g.protein * f,
|
||||
fat: def.nutritionPer100g.fat * f,
|
||||
carbs: def.nutritionPer100g.carbs * f,
|
||||
kcal: nutrition.kcal * f,
|
||||
protein: nutrition.protein * f,
|
||||
fat: nutrition.fat * f,
|
||||
carbs: nutrition.carbs * f,
|
||||
};
|
||||
}
|
||||
|
||||
@@ -52,17 +57,20 @@ export function computeEntryNutrition(entry) {
|
||||
const excluded = new Set(entry.excludedIngredients || []);
|
||||
const overrides = entry.amountOverrides || {};
|
||||
const subs = entry.substitutions || {};
|
||||
const ps = entry.productSelections || {};
|
||||
let kcal = 0, protein = 0, fat = 0, carbs = 0;
|
||||
|
||||
for (const ing of r.ingredients) {
|
||||
if (excluded.has(ing.ingredientId)) continue;
|
||||
const eid = subs[ing.ingredientId] || ing.ingredientId;
|
||||
const base = overrides[ing.ingredientId] ?? ing.amount;
|
||||
const n = nutritionForAmountRaw(eid, base * s, ing.unit);
|
||||
const productId = ps[eid] || null;
|
||||
const n = nutritionForAmountRaw(eid, base * s, ing.unit, productId);
|
||||
if (n) { kcal += n.kcal; protein += n.protein; fat += n.fat; carbs += n.carbs; }
|
||||
}
|
||||
for (const a of (entry.addedIngredients || [])) {
|
||||
const n = nutritionForAmountRaw(a.ingredientId, a.amount * s, a.unit);
|
||||
const productId = ps[a.ingredientId] || null;
|
||||
const n = nutritionForAmountRaw(a.ingredientId, a.amount * s, a.unit, productId);
|
||||
if (n) { kcal += n.kcal; protein += n.protein; fat += n.fat; carbs += n.carbs; }
|
||||
}
|
||||
|
||||
@@ -231,7 +239,7 @@ export function countDayShortfalls(dayPlan, pantry) {
|
||||
const lines = mergeIngredientLines(flattenDayIngredientLines(dayPlan));
|
||||
let count = 0;
|
||||
for (const line of lines) {
|
||||
if ((Number(pantry[line.ingredientId]) || 0) < line.amount) count++;
|
||||
if (getPantryTotal(line.ingredientId, pantry) < line.amount) count++;
|
||||
}
|
||||
return count;
|
||||
}
|
||||
@@ -242,7 +250,11 @@ export function countDayShortfalls(dayPlan, pantry) {
|
||||
* ile jest w spiżarni (po odjęciu zużycia z poprzednich dni) i ile brakuje.
|
||||
*/
|
||||
export function computeFullForecast(plans, pantry, startDate, lookAheadDays = 8) {
|
||||
const running = { ...pantry };
|
||||
// Flatten pantry to simple totals for forecast (running deduction)
|
||||
const running = {};
|
||||
for (const [k, v] of Object.entries(pantry)) {
|
||||
running[k] = typeof v === 'number' ? v : (v && v._total) || 0;
|
||||
}
|
||||
const days = [];
|
||||
|
||||
for (let i = 0; i < lookAheadDays; i++) {
|
||||
@@ -276,3 +288,55 @@ export function computeFullForecast(plans, pantry, startDate, lookAheadDays = 8)
|
||||
|
||||
return days;
|
||||
}
|
||||
|
||||
const LAST_PRODUCTS_KEY = 'recipe-last-product-selections';
|
||||
|
||||
function loadLastProductSelections() {
|
||||
try {
|
||||
const raw = localStorage.getItem(LAST_PRODUCTS_KEY);
|
||||
return raw ? JSON.parse(raw) : {};
|
||||
} catch { return {}; }
|
||||
}
|
||||
|
||||
/** Save user's product choice so it becomes the default next time. */
|
||||
export function saveLastProductSelection(ingredientId, productId) {
|
||||
const prev = loadLastProductSelections();
|
||||
prev[ingredientId] = productId;
|
||||
try { localStorage.setItem(LAST_PRODUCTS_KEY, JSON.stringify(prev)); } catch {}
|
||||
}
|
||||
|
||||
/**
|
||||
* Auto-select products for a recipe.
|
||||
* Priority: last user choice > pantry stock (highest qty) > first from catalog.
|
||||
* Only selects for ingredients that have products defined.
|
||||
*/
|
||||
export function autoSelectProducts(recipe, pantry) {
|
||||
const selections = {};
|
||||
const lastUsed = loadLastProductSelections();
|
||||
for (const ing of recipe.ingredients) {
|
||||
const products = getProductsForIngredient(ing.ingredientId);
|
||||
if (products.length === 0) continue;
|
||||
|
||||
// 1. Last user choice (if product still exists)
|
||||
const lastPid = lastUsed[ing.ingredientId];
|
||||
if (lastPid && products.some(p => p.id === lastPid)) {
|
||||
selections[ing.ingredientId] = lastPid;
|
||||
continue;
|
||||
}
|
||||
|
||||
// 2. Pantry stock — pick product with most qty
|
||||
const val = pantry[ing.ingredientId];
|
||||
if (val && typeof val === 'object') {
|
||||
const items = (val.items || []).filter(i => i.qty > 0);
|
||||
if (items.length > 0) {
|
||||
items.sort((a, b) => b.qty - a.qty);
|
||||
selections[ing.ingredientId] = items[0].productId;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
// 3. First from catalog
|
||||
selections[ing.ingredientId] = products[0].id;
|
||||
}
|
||||
return selections;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { INGREDIENTS, RECIPES } from '../data/catalog.js?v=2';
|
||||
import { INGREDIENTS, RECIPES, PRODUCTS } from '../data/catalog.js?v=6';
|
||||
import { MEAL_SLOTS } from '../planner/mealSlots.js';
|
||||
import { PLANS_STORAGE_KEY } from '../storageKeys.js';
|
||||
import { startOfDay } from './dateUtils.js';
|
||||
@@ -40,6 +40,13 @@ function normalizeEntryExtras(x) {
|
||||
.map((a) => ({ ingredientId: a.ingredientId, amount: a.amount, unit: a.unit }));
|
||||
if (valid.length > 0) out.addedIngredients = valid;
|
||||
}
|
||||
if (x.productSelections && typeof x.productSelections === 'object' && !Array.isArray(x.productSelections)) {
|
||||
const ps = {};
|
||||
for (const [k, v] of Object.entries(x.productSelections)) {
|
||||
if (typeof v === 'string' && PRODUCTS[v]) ps[k] = v;
|
||||
}
|
||||
if (Object.keys(ps).length > 0) out.productSelections = ps;
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
export const PLANS_STORAGE_KEY = 'recipe-planner-plans-v1';
|
||||
export const PANTRY_STORAGE_KEY = 'recipe-pantry-v1';
|
||||
export const PANTRY_STORAGE_KEY_V2 = 'recipe-pantry-v2';
|
||||
export const SHOPPING_STORAGE_KEY = 'recipe-shopping-v1';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { INGREDIENTS, RECIPES } from '../data/catalog.js?v=2';
|
||||
import { INGREDIENTS, RECIPES, PRODUCTS, getProductsForIngredient } from '../data/catalog.js?v=6';
|
||||
import { MEAL_SLOTS } from '../planner/mealSlots.js';
|
||||
import {
|
||||
addDays,
|
||||
@@ -13,8 +13,9 @@ import {
|
||||
loadPlans,
|
||||
newPlanEntryId,
|
||||
savePlans,
|
||||
} from '../services/planStore.js';
|
||||
import { dayHasAnyMeal } from '../services/planIngredients.js';
|
||||
} from '../services/planStore.js?v=2';
|
||||
import { dayHasAnyMeal, autoSelectProducts, saveLastProductSelection } from '../services/planIngredients.js?v=3';
|
||||
import { loadPantry } from '../services/pantryShopping.js?v=2';
|
||||
import { showAppToast } from './toast.js';
|
||||
import {
|
||||
bindCalendarDayClicks,
|
||||
@@ -113,21 +114,26 @@ export function setupMealPlanEditor() {
|
||||
altOpen: new Set(),
|
||||
addOpen: false,
|
||||
addQuery: '',
|
||||
productSelections: {},
|
||||
};
|
||||
|
||||
/* ── helpers ───────────────────────────────────── */
|
||||
|
||||
function nutFor(ingredientId, amount, unit) {
|
||||
const def = INGREDIENTS[ingredientId];
|
||||
if (!def?.nutritionPer100g) return null;
|
||||
if (!def) return null;
|
||||
const productId = S.productSelections[ingredientId] || null;
|
||||
const product = productId ? PRODUCTS[productId] : null;
|
||||
const nutrition = product?.nutritionPer100g || def.nutritionPer100g;
|
||||
if (!nutrition) return null;
|
||||
let g = amount;
|
||||
if ((unit === 'szt.' || unit === 'szt') && def.weightPerPiece) g = amount * def.weightPerPiece;
|
||||
const f = g / 100;
|
||||
return {
|
||||
kcal: Math.round(def.nutritionPer100g.kcal * f),
|
||||
protein: Math.round(def.nutritionPer100g.protein * f * 10) / 10,
|
||||
fat: Math.round(def.nutritionPer100g.fat * f * 10) / 10,
|
||||
carbs: Math.round(def.nutritionPer100g.carbs * f * 10) / 10,
|
||||
kcal: Math.round(nutrition.kcal * f),
|
||||
protein: Math.round(nutrition.protein * f * 10) / 10,
|
||||
fat: Math.round(nutrition.fat * f * 10) / 10,
|
||||
carbs: Math.round(nutrition.carbs * f * 10) / 10,
|
||||
};
|
||||
}
|
||||
|
||||
@@ -291,8 +297,14 @@ export function setupMealPlanEditor() {
|
||||
const modDot = modified ? '<span class="w-1.5 h-1.5 rounded-full bg-amber-400 shrink-0"></span>' : '';
|
||||
|
||||
html += `<div class="mpe-ing-row rounded-xl p-2.5" style="${rowStyle}" data-orig-id="${esc(id)}" data-type="recipe">`;
|
||||
const selectedProductId = S.productSelections[eid];
|
||||
const selectedProduct = selectedProductId ? PRODUCTS[selectedProductId] : null;
|
||||
const productBadge = selectedProduct
|
||||
? `<div class="flex items-center gap-1 mt-0.5"><span class="text-[10px] text-emerald-400 truncate">${esc(selectedProduct.name)}</span><button type="button" class="mpe-change-product text-[9px] text-gray-500 hover:text-gray-300 transition-colors" data-eid="${esc(eid)}" data-orig-id="${esc(id)}">zmień</button></div>`
|
||||
: '';
|
||||
|
||||
html += `<div class="flex items-center gap-2">`;
|
||||
html += `<div class="flex-1 min-w-0"><span class="text-[12px] font-semibold text-gray-900 truncate block">${esc(eName)}</span></div>`;
|
||||
html += `<div class="flex-1 min-w-0"><span class="text-[12px] font-semibold text-gray-900 truncate block">${esc(eName)}</span>${productBadge}</div>`;
|
||||
html += `<div class="shrink-0 flex items-center gap-2">`;
|
||||
html += shuffleBtn;
|
||||
html += `<button type="button" class="mpe-edit-amt shrink-0 flex items-center gap-1 px-2 py-1 rounded-lg hover:bg-gray-100 transition-colors" data-orig-id="${esc(id)}" data-type="recipe">`;
|
||||
@@ -446,6 +458,13 @@ export function setupMealPlanEditor() {
|
||||
S.addOpen = false;
|
||||
S.addQuery = '';
|
||||
|
||||
// Auto-select products from pantry, then apply saved selections
|
||||
const pantry = loadPantry();
|
||||
S.productSelections = autoSelectProducts(recipe, pantry);
|
||||
if (opts.entry?.productSelections) {
|
||||
Object.assign(S.productSelections, opts.entry.productSelections);
|
||||
}
|
||||
|
||||
if (opts.date && opts.slotId) {
|
||||
S.date = startOfDay(new Date(opts.date));
|
||||
S.calDate = new Date(S.date);
|
||||
@@ -496,6 +515,7 @@ export function setupMealPlanEditor() {
|
||||
if (Object.keys(ov).length > 0) entry.amountOverrides = ov;
|
||||
}
|
||||
if (S.added.length > 0) entry.addedIngredients = S.added.map((a) => ({ ingredientId: a.ingredientId, amount: a.amount, unit: a.unit }));
|
||||
if (Object.keys(S.productSelections).length > 0) entry.productSelections = { ...S.productSelections };
|
||||
return entry;
|
||||
}
|
||||
|
||||
@@ -650,12 +670,76 @@ export function setupMealPlanEditor() {
|
||||
if (altPick) {
|
||||
const origId = altPick.dataset.origId;
|
||||
const altId = altPick.dataset.altId;
|
||||
const prevEid = S.subs[origId] || origId;
|
||||
if (altId === origId) delete S.subs[origId]; else S.subs[origId] = altId;
|
||||
const newEid = S.subs[origId] || origId;
|
||||
// Update product selection for the new effective ingredient
|
||||
if (newEid !== prevEid) {
|
||||
delete S.productSelections[prevEid];
|
||||
const newProducts = getProductsForIngredient(newEid);
|
||||
if (newProducts.length > 0) {
|
||||
const pantry = loadPantry();
|
||||
const auto = autoSelectProducts({ ingredients: [{ ingredientId: newEid }] }, pantry);
|
||||
if (auto[newEid]) S.productSelections[newEid] = auto[newEid];
|
||||
}
|
||||
}
|
||||
S.altOpen.delete(origId);
|
||||
renderIngList(); renderNutrition();
|
||||
return;
|
||||
}
|
||||
|
||||
const changeProd = e.target.closest('.mpe-change-product');
|
||||
if (changeProd) {
|
||||
const eid = changeProd.dataset.eid;
|
||||
const products = getProductsForIngredient(eid);
|
||||
if (products.length === 0) return;
|
||||
// Toggle product picker open/closed using a data attribute on the row
|
||||
const row = changeProd.closest('.mpe-ing-row');
|
||||
const existing = row?.querySelector('.mpe-product-picker');
|
||||
if (existing) { existing.remove(); return; }
|
||||
|
||||
const currentPid = S.productSelections[eid] || null;
|
||||
const origId = changeProd.dataset.origId || eid;
|
||||
const recipe = RECIPES[S.recipeId];
|
||||
const recipeIng = recipe?.ingredients.find(i => i.ingredientId === origId);
|
||||
const ingUnit = recipeIng?.unit || 'g';
|
||||
const ingBase = S.overrides[origId] ?? recipeIng?.amount ?? 0;
|
||||
const ingDisp = ingBase * S.servings;
|
||||
|
||||
const checkmark = (sel) => `<span class="ml-auto self-center w-[18px] h-[18px] rounded-full shrink-0 flex items-center justify-center" style="border:1.5px solid #56534f; background:transparent;">${sel ? '<i class="fas fa-check" style="color:#9b978f; font-size:8px; line-height:1; display:block; transform:translateY(0.5px);"></i>' : ''}</span>`;
|
||||
|
||||
let pickerHtml = '<div class="mpe-product-picker mt-2 ml-1 space-y-1">';
|
||||
for (const p of products) {
|
||||
const isSel = currentPid === p.id;
|
||||
const pNut = p.nutritionPer100g;
|
||||
// Calculate nutrition for the actual ingredient amount using product values
|
||||
const def = INGREDIENTS[eid];
|
||||
let g = ingDisp;
|
||||
if ((ingUnit === 'szt.' || ingUnit === 'szt') && def?.weightPerPiece) g = ingDisp * def.weightPerPiece;
|
||||
const f = g / 100;
|
||||
const n = pNut ? { kcal: Math.round(pNut.kcal * f), protein: Math.round(pNut.protein * f * 10) / 10, fat: Math.round(pNut.fat * f * 10) / 10, carbs: Math.round(pNut.carbs * f * 10) / 10 } : null;
|
||||
const nLine = n ? `<div class="text-[10px] text-gray-400 mt-0.5 tabular-nums">${n.kcal} kcal · ${n.protein}g B · ${n.fat}g T · ${n.carbs}g W</div>` : '';
|
||||
pickerHtml += `<button type="button" class="mpe-prod-pick w-full text-left p-2.5 rounded-lg transition-all" style="background:#2f2f2d !important; background-image:none !important; border:none !important; box-shadow:none !important;" data-eid="${esc(eid)}" data-prod-id="${esc(p.id)}">
|
||||
<div class="flex items-center gap-3"><div class="min-w-0 flex-1"><div class="text-[11px] font-semibold text-gray-900">${esc(p.name)}</div>${nLine}</div>${checkmark(isSel)}</div>
|
||||
</button>`;
|
||||
}
|
||||
pickerHtml += '</div>';
|
||||
row?.insertAdjacentHTML('beforeend', pickerHtml);
|
||||
return;
|
||||
}
|
||||
|
||||
const prodPick = e.target.closest('.mpe-prod-pick');
|
||||
if (prodPick) {
|
||||
const eid = prodPick.dataset.eid;
|
||||
const prodId = prodPick.dataset.prodId;
|
||||
if (prodId) {
|
||||
S.productSelections[eid] = prodId;
|
||||
saveLastProductSelection(eid, prodId);
|
||||
}
|
||||
renderIngList(); renderNutrition();
|
||||
return;
|
||||
}
|
||||
|
||||
const editAmt = e.target.closest('.mpe-edit-amt');
|
||||
if (editAmt && !editAmt.disabled) {
|
||||
startAmountEdit(editAmt);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { RECIPES } from '../data/catalog.js?v=2';
|
||||
import { RECIPES } from '../data/catalog.js?v=6';
|
||||
import { MEAL_SLOTS } from '../planner/mealSlots.js';
|
||||
import { applyFilters, getFilterState } from './RecipeList.js';
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { INGREDIENTS, RECIPES } from '../data/catalog.js?v=2';
|
||||
import { INGREDIENTS, RECIPES } from '../data/catalog.js?v=6';
|
||||
import { MEAL_SLOTS } from '../planner/mealSlots.js';
|
||||
import {
|
||||
addMonths,
|
||||
@@ -15,15 +15,15 @@ import {
|
||||
countDayShortfalls,
|
||||
dayHasAnyMeal,
|
||||
sumDayNutrition,
|
||||
} from '../services/planIngredients.js';
|
||||
import { addOrMergeShoppingLines, loadPantry } from '../services/pantryShopping.js';
|
||||
} from '../services/planIngredients.js?v=3';
|
||||
import { addOrMergeShoppingLines, loadPantry } from '../services/pantryShopping.js?v=2';
|
||||
import {
|
||||
dateKey,
|
||||
getDayPlan,
|
||||
loadPlans,
|
||||
newPlanEntryId,
|
||||
savePlans,
|
||||
} from '../services/planStore.js';
|
||||
} from '../services/planStore.js?v=2';
|
||||
import {
|
||||
CALENDAR_HANDLE_CLASS,
|
||||
CALENDAR_MONTHS_SHORT,
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
import {
|
||||
INGREDIENTS,
|
||||
CATEGORY_LABELS,
|
||||
PRODUCTS,
|
||||
pantryQtyStep,
|
||||
} from '../data/catalog.js?v=2';
|
||||
import { addIngredientToKitchenList, categoryLabel, loadPantry, setPantryQty } from '../services/pantryShopping.js';
|
||||
getProductsForIngredient,
|
||||
ingredientHasProducts,
|
||||
} from '../data/catalog.js?v=6';
|
||||
import { addIngredientToKitchenList, categoryLabel, loadPantry, setPantryQty, setPantryProductQty, getPantryTotal, getPantryProducts, getPantryGeneric } from '../services/pantryShopping.js?v=2';
|
||||
import { showAppToast } from '../ui/toast.js';
|
||||
|
||||
/* ── helpers ── */
|
||||
@@ -97,6 +100,8 @@ export function getPantryHTML() {
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div id="pv2-product-breakdown" class="shrink-0"></div>
|
||||
|
||||
<div class="border-t border-gray-100 shrink-0"></div>
|
||||
|
||||
<div class="shrink-0 space-y-1">
|
||||
@@ -172,7 +177,7 @@ function getFilteredIds(searchRaw) {
|
||||
|
||||
function chipHtml(id, pantry) {
|
||||
const def = INGREDIENTS[id];
|
||||
const qty = Number(pantry[id]) || 0;
|
||||
const qty = getPantryTotal(id, pantry);
|
||||
const u = unitLabel(def.pantryUnit);
|
||||
|
||||
if (qty > 0) {
|
||||
@@ -209,7 +214,7 @@ function renderBoard() {
|
||||
const pantry = loadPantry();
|
||||
const allFiltered = getFilteredIds(q);
|
||||
const visible = showOnlyStock
|
||||
? allFiltered.filter(id => (Number(pantry[id]) || 0) > 0)
|
||||
? allFiltered.filter(id => getPantryTotal(id, pantry) > 0)
|
||||
: allFiltered;
|
||||
|
||||
if (visible.length === 0) {
|
||||
@@ -271,7 +276,7 @@ function openEditSheet(ingredientId) {
|
||||
editingId = ingredientId;
|
||||
|
||||
const pantry = loadPantry();
|
||||
const qty = Number(pantry[ingredientId]) || 0;
|
||||
const qty = getPantryTotal(ingredientId, pantry);
|
||||
const u = unitLabel(def.pantryUnit);
|
||||
const step = pantryQtyStep(ingredientId);
|
||||
const pack = def.purchasePack;
|
||||
@@ -311,6 +316,16 @@ function openEditSheet(ingredientId) {
|
||||
}
|
||||
}
|
||||
|
||||
// Hide main +/- when products exist (total is sum of product rows)
|
||||
const hasProds = ingredientHasProducts(ingredientId);
|
||||
const mainMinus = document.getElementById('pv2-edit-minus');
|
||||
const mainPlus = document.getElementById('pv2-edit-plus');
|
||||
const mainQtyInput = document.getElementById('pv2-edit-qty');
|
||||
if (mainMinus) mainMinus.classList.toggle('hidden', hasProds);
|
||||
if (mainPlus) mainPlus.classList.toggle('hidden', hasProds);
|
||||
if (mainQtyInput) mainQtyInput.readOnly = hasProds;
|
||||
|
||||
renderProductBreakdown(ingredientId, pantry);
|
||||
renderNutritionInSheet(def);
|
||||
|
||||
const bg = document.getElementById('pv2-edit-bg');
|
||||
@@ -331,6 +346,83 @@ function nutritionListRow(label, valueHtml) {
|
||||
</li>`;
|
||||
}
|
||||
|
||||
function renderProductBreakdown(ingredientId, pantry) {
|
||||
const wrap = document.getElementById('pv2-product-breakdown');
|
||||
if (!wrap) return;
|
||||
const products = getProductsForIngredient(ingredientId);
|
||||
if (products.length === 0) { wrap.innerHTML = ''; return; }
|
||||
|
||||
const def = INGREDIENTS[ingredientId];
|
||||
const u = unitLabel(def.pantryUnit);
|
||||
const pantryProducts = getPantryProducts(ingredientId, pantry);
|
||||
const generic = getPantryGeneric(ingredientId, pantry);
|
||||
|
||||
const productQty = (pid) => {
|
||||
const item = pantryProducts.find(i => i.productId === pid);
|
||||
return item ? item.qty : 0;
|
||||
};
|
||||
|
||||
const rows = products.map(p => {
|
||||
const q = Math.round(productQty(p.id));
|
||||
return `<div class="flex items-center gap-1.5 py-1" data-product-row="${esc(p.id)}">
|
||||
<span class="flex-1 text-[12px] text-gray-700 truncate" title="${esc(p.name)}">${esc(p.name)}</span>
|
||||
<button type="button" class="pv2-prod-minus w-7 h-7 rounded-lg bg-gray-100 text-gray-600 hover:bg-gray-200 flex items-center justify-center transition-colors active:scale-95 shrink-0" data-pid="${esc(p.id)}" data-step="${p.packSize}">
|
||||
<i class="fas fa-minus text-[9px]"></i>
|
||||
</button>
|
||||
<span class="pv2-prod-qty w-12 text-center text-[13px] font-semibold tabular-nums text-gray-800">${q} ${esc(u)}</span>
|
||||
<button type="button" class="pv2-prod-plus w-7 h-7 rounded-lg bg-gray-100 text-gray-600 hover:bg-gray-200 flex items-center justify-center transition-colors active:scale-95 shrink-0" data-pid="${esc(p.id)}" data-step="${p.packSize}">
|
||||
<i class="fas fa-plus text-[9px]"></i>
|
||||
</button>
|
||||
</div>`;
|
||||
}).join('');
|
||||
|
||||
const genericRow = `<div class="flex items-center gap-1.5 py-1" data-product-row="_generic">
|
||||
<span class="flex-1 text-[12px] text-gray-500 italic truncate">Nieokreślony</span>
|
||||
<button type="button" class="pv2-prod-minus w-7 h-7 rounded-lg bg-gray-100 text-gray-600 hover:bg-gray-200 flex items-center justify-center transition-colors active:scale-95 shrink-0" data-pid="_generic" data-step="${pantryQtyStep(ingredientId)}">
|
||||
<i class="fas fa-minus text-[9px]"></i>
|
||||
</button>
|
||||
<span class="pv2-prod-qty w-12 text-center text-[13px] font-semibold tabular-nums text-gray-800">${Math.round(generic)} ${esc(u)}</span>
|
||||
<button type="button" class="pv2-prod-plus w-7 h-7 rounded-lg bg-gray-100 text-gray-600 hover:bg-gray-200 flex items-center justify-center transition-colors active:scale-95 shrink-0" data-pid="_generic" data-step="${pantryQtyStep(ingredientId)}">
|
||||
<i class="fas fa-plus text-[9px]"></i>
|
||||
</button>
|
||||
</div>`;
|
||||
|
||||
wrap.innerHTML = `
|
||||
<div class="space-y-0.5 px-0.5">
|
||||
<p class="text-[9px] font-semibold uppercase tracking-wide text-gray-400 mb-1">Produkty</p>
|
||||
${rows}
|
||||
${genericRow}
|
||||
</div>`;
|
||||
|
||||
// Bind product +/- buttons
|
||||
wrap.querySelectorAll('.pv2-prod-plus, .pv2-prod-minus').forEach(btn => {
|
||||
btn.addEventListener('click', () => {
|
||||
if (!editingId) return;
|
||||
const pid = btn.dataset.pid;
|
||||
const step = Number(btn.dataset.step) || 1;
|
||||
const isPlus = btn.classList.contains('pv2-prod-plus');
|
||||
const pantry = loadPantry();
|
||||
|
||||
if (pid === '_generic') {
|
||||
const cur = getPantryGeneric(editingId, pantry);
|
||||
const next = Math.max(0, cur + (isPlus ? step : -step));
|
||||
setPantryQty(editingId, next);
|
||||
} else {
|
||||
const items = getPantryProducts(editingId, pantry);
|
||||
const cur = items.find(i => i.productId === pid)?.qty || 0;
|
||||
const next = Math.max(0, cur + (isPlus ? step : -step));
|
||||
setPantryProductQty(editingId, pid, next);
|
||||
}
|
||||
|
||||
// Re-render breakdown and total
|
||||
const freshPantry = loadPantry();
|
||||
renderProductBreakdown(editingId, freshPantry);
|
||||
const totalQty = getPantryTotal(editingId, freshPantry);
|
||||
setEditQty(totalQty);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function renderNutritionInSheet(def) {
|
||||
const wrap = document.getElementById('pv2-edit-nutrition');
|
||||
if (!wrap) return;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { RECIPES, INGREDIENTS } from '../data/catalog.js?v=2';
|
||||
import { RECIPES, INGREDIENTS } from '../data/catalog.js?v=6';
|
||||
import { MEAL_SLOTS } from '../planner/mealSlots.js';
|
||||
|
||||
function escapeHtml(s) {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { RECIPES } from '../data/catalog.js?v=2';
|
||||
import { RECIPES } from '../data/catalog.js?v=6';
|
||||
import { MEAL_SLOTS } from '../planner/mealSlots.js';
|
||||
|
||||
function escapeHtml(s) {
|
||||
|
||||
Reference in New Issue
Block a user