recipe_app/frontend/src/components/CookbookRecipeTile.tsx

44 lines
1.5 KiB
TypeScript
Raw Normal View History

2025-07-08 14:33:28 -07:00
import React, { useState } from 'react';
import { type RecipeSmall } from "../types/Recipe"
2025-07-08 14:33:28 -07:00
import Modal from '../components/Modal.tsx'
import { Link } from 'react-router-dom';
2025-07-08 10:40:49 -07:00
interface CookbookRecipeTileProps {
recipe: RecipeSmall;
2025-07-08 10:40:49 -07:00
handleDelete: (id: number | undefined) => void;
}
function CookbookRecipeTile({ recipe, handleDelete }: CookbookRecipeTileProps) {
2025-07-08 14:33:28 -07:00
const [isModalOpen, setIsModalOpen] = useState(false);
const openModal = () => { setIsModalOpen(true) };
const closeModal = () => { setIsModalOpen(false) };
2025-07-08 14:33:28 -07:00
const confirmDelete = () => {
handleDelete(recipe.id);
closeModal();
2025-07-08 10:40:49 -07:00
};
2025-07-08 14:33:28 -07:00
2025-07-08 10:40:49 -07:00
return (
2025-07-11 17:06:41 -07:00
<div className="recipe-card m-2 bg-amber-300 p-4 rounded shadow">
<div className="flex justify-between items-center recipe-name">
<h3 className="font-bold"><Link to={`/recipe/${recipe.id}`} className="text-blue-500">{recipe.name}</Link></h3>
2025-07-11 17:06:41 -07:00
<button onClick={openModal} className="text-red-500 focus:outline-none">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth="1.5" stroke="currentColor" className="w-6 h-6">
<path strokeLinecap="round" strokeLinejoin="round" d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
2025-07-08 10:40:49 -07:00
</div>
2025-07-08 14:33:28 -07:00
<Modal
isOpen={isModalOpen}
onClose={closeModal}
message="Are you sure you want to delete this recipe?"
confirmAction={confirmDelete}
cancelAction={closeModal}
/>
</div>
2025-07-08 10:40:49 -07:00
);
2025-07-11 17:06:41 -07:00
};
2025-07-08 10:40:49 -07:00
export default CookbookRecipeTile;