Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add error message to product loading in AddCard component #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/componente/add_card/AddCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function AddCard() {
const produtoData = await produtosService.getProduto(Number(id)); // Convertendo o ID para número
setProduto(produtoData);
} catch (error) {
setError('Erro ao carregar produto.');
setError('Erro ao carregar produto. '+ error);
} finally {
setLoading(false);
}
Expand Down
1 change: 1 addition & 0 deletions src/componente/add_card/CartService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export class Produtos {
const response = await axios.get(
`https://cesta-rural-back.vercel.app/products`
);
console.log('Produtos:', response.data);
return response.data;
} catch (error) {
console.error('Erro ao buscar produtos:', error);
Expand Down
7 changes: 6 additions & 1 deletion src/componente/home/card/CardGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export default function CardGrid() {
try {
const response = await new Produtos().getTodosProdutos();
setProdutos(response.products);
console.log('Produtos:', response.products);
} catch (error) {
console.error('Erro ao carregar produtos:', error);
} finally {
Expand All @@ -31,13 +32,17 @@ export default function CardGrid() {

if (carregando) return <p>Carregando produtos...</p>;

const handleProductClick = (productId: number) => {
navigate(`/produto/${productId}`);
};

return (
<div className="grid grid-cols-2 gap-4">
{produtos.map((produto) => (
<div
key={produto.productId} // Correção: Adicionando uma key única para cada produto
className="p-4 border rounded-lg shadow-lg bg-white relative cursor-pointer"
onClick={() => navigate(`/produto/${produto.productId}`)}
onClick={() => handleProductClick(produto.productId)}
>
<img
src={produto.imageCarrousel[0] || 'https://via.placeholder.com/150'}
Expand Down