This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/style/components/review-list.tsx
2025-02-15 21:19:04 +03:00

84 lines
2.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { useEffect, useState } from "react"
import type { Review } from "@/types/product"
import { Star } from "lucide-react"
import { useAuth } from "@/contexts/auth-context"
import Link from "next/link"
import { Button } from "./ui/button"
interface ReviewListProps {
productId: number
}
export function ReviewList({ productId }: ReviewListProps) {
const { isLoggedIn } = useAuth()
const [reviews, setReviews] = useState<Review[]>([])
useEffect(() => {
const fetchReviews = async () => {
try {
const response = await fetch(`http://localhost:8080/product/1`)
if (!response.ok) throw new Error("Ошибка загрузки отзывов")
const data = await response.json()
console.log("Загруженные отзывы:", data) // Check the data received
setReviews(data)
} catch (error) {
console.error(error)
}
}
fetchReviews()
}, [productId])
interface Review {
id: number;
product_id: number;
username: string;
rating: number;
comment: string;
createdAt: string;
}
if (!isLoggedIn) {
return (
<div className="text-center py-8">
<p className="text-gray-600 mb-4">Чтобы просматривать отзывы, пожалуйста, войдите в систему.</p>
<Button asChild variant="outline" className="rounded-full">
<Link href="/login">Войти</Link>
</Button>
</div>
)
}
return (
<div className="space-y-4">
<h3 className="text-lg font-semibold">Отзывы покупателей</h3>
{reviews.length === 0 ? (
<p>Пока нет отзывов. Будьте первым!</p>
) : (
reviews.map((review) => (
<div key={review.id} className="border-b pb-4">
<div className="flex items-center gap-2">
{/* Вывод рейтинга с помощью звезд */}
<div className="flex">
{[1, 2, 3, 4, 5].map((star) => (
<Star
key={star}
className={`h-5 w-5 ${star <= review.rating ? "text-yellow-400 fill-yellow-400" : "text-gray-300"}`}
/>
))}
</div>
{/* Дата отзыва */}
<span className="text-sm text-gray-500">{new Date(review.createdAt).toLocaleDateString()}</span>
</div>
{/* Комментарий */}
<p className="mt-2">{review.comment}</p>
</div>
))
)}
</div>
)
}