Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | 4x 4x 4x 4x | import { useRef } from 'react'
import type { KeyboardEvent } from 'react'
import { useTranslation } from 'react-i18next'
import type { components } from '../api'
import { formatQuantity } from '../recipeFormat'
import { RecipeSaveButton } from './RecipeSaveButton.tsx'
type RecipeInput = components['schemas']['RecipeInput']
// Preview card showing a recipe summary plus a heart to save it.
// Opens the full recipe view on click. Used on the generate and library pages.
export function RecipeCard({
recipe,
onOpen,
recipeId,
onSavedIdChange,
}: {
recipe: RecipeInput
onOpen: () => void
recipeId?: number
onSavedIdChange?: (id: number | undefined) => void
}) {
const { t } = useTranslation()
const cardRef = useRef<HTMLDivElement>(null)
function handleKeyDown(e: KeyboardEvent) {
if (e.key === 'Enter' || e.key === ' ') {
e.preventDefault()
onOpen()
}
}
return (
<div
ref={cardRef}
role="button"
tabIndex={0}
onClick={onOpen}
onKeyDown={handleKeyDown}
className="relative w-full text-left rounded-lg border border-gray-200 dark:border-neutral-700 bg-white dark:bg-neutral-800 p-6 shadow-sm flex flex-col gap-3 cursor-pointer transition-transform duration-100 hover:scale-99"
>
<header className="flex items-baseline justify-between gap-3">
<h2 className="text-lg font-bold">{recipe.title}</h2>
<div className="flex items-center gap-2">
<span className="text-sm text-gray-500 dark:text-neutral-400 whitespace-nowrap">
{recipe.portions} {recipe.portions === 1 ? t('common.portion') : t('common.portions')}
</span>
<RecipeSaveButton
recipe={recipe}
recipeId={recipeId}
onSavedIdChange={onSavedIdChange}
confirmContainer={cardRef}
className="-my-2"
/>
</div>
</header>
<div>
<ul className="list-disc pl-5">
{recipe.ingredients.map((ing, j) => (
<li key={j}>
{[ing.quantity != null ? formatQuantity(ing.quantity) : null, ing.unit, ing.name]
.filter(Boolean)
.join(' ')}
</li>
))}
</ul>
</div>
{recipe.nutrients && (
<div className="flex flex-wrap gap-x-4 gap-y-1 text-sm text-gray-600 dark:text-neutral-300">
{recipe.nutrients.calories != null && <span>{t('common.kcal', { value: recipe.nutrients.calories })}</span>}
{recipe.nutrients.protein != null && <span>{t('common.protein', { value: recipe.nutrients.protein })}</span>}
{recipe.nutrients.fat != null && <span>{t('common.fat', { value: recipe.nutrients.fat })}</span>}
{recipe.nutrients.carbs != null && <span>{t('common.carbs', { value: recipe.nutrients.carbs })}</span>}
</div>
)}
</div>
)
}
|