Files
frontend/components/organisms/modals/ReviewModal.tsx
T
TaNguyenThanhQuy c2afb3d3b5
Release package / release (push) Successful in 7m28s
fix: connect services to backend (#37)
Co-authored-by: Thanh Quy - wolf <524H0124@student.tdtu.edu.vn>
Reviewed-on: #37
Co-authored-by: TaNguyenThanhQuy <tanguyenthanhquy@noreply.localhost>
Co-committed-by: TaNguyenThanhQuy <tanguyenthanhquy@noreply.localhost>
2026-05-05 14:42:13 +00:00

158 lines
4.9 KiB
TypeScript

"use client";
import { Button, Heading, Text, Textarea } from "@/components/atoms";
import { useState } from "react";
import type { ReviewModalProps } from "./Modal.types";
export default function ReviewModal({ isOpen, onClose }: ReviewModalProps) {
const [rating, setRating] = useState(0);
const [hovered, setHovered] = useState(0);
const [review, setReview] = useState("");
const [submitted, setSubmitted] = useState(false);
if (!isOpen) return null;
const handleSubmit = () => {
setSubmitted(true);
};
const handleClose = () => {
// Reset state when closing
setRating(0);
setHovered(0);
setReview("");
setSubmitted(false);
onClose();
};
return (
<div
className="fixed inset-0 z-50 flex items-center justify-center p-4"
role="dialog"
aria-modal="true"
aria-labelledby="review-modal-title"
>
{/* Backdrop */}
<div
className="absolute inset-0 bg-black/50 backdrop-blur-sm"
onClick={handleClose}
aria-hidden="true"
/>
{/* Modal */}
<div className="relative w-full max-w-md rounded-2xl border border-(--color-border-light) bg-white p-6 shadow-xl sm:p-8">
{submitted ? (
/* Thank you state */
<div className="flex flex-col items-center gap-4 py-4 text-center">
<div className="flex h-16 w-16 items-center justify-center rounded-full bg-(--color-accent-light) text-3xl">
<i className="fa-solid fa-heart text-(--color-accent)"></i>
</div>
<Heading level={2} id="review-modal-title">
Thank you
</Heading>
<Text variant="body2" className="mt-2">
We appreciate your feedback!
</Text>
<Button onClick={handleClose} variant="primary" className="mt-4">
Close
</Button>
</div>
) : (
/* Review form */
<>
<h2
id="review-modal-title"
className="text-foreground mb-1 text-xl font-bold"
>
Your Review
</h2>
<p className="mb-5 text-sm text-(--color-text-muted)">
Tell us about your experience today
</p>
{/* Star rating */}
<div className="mb-5">
<p className="mb-2 text-sm font-medium text-(--color-text-secondary)">
Satisfaction level
</p>
<div
className="flex gap-2"
role="radiogroup"
aria-label="Star rating"
>
{[1, 2, 3, 4, 5].map((star) => {
const isActive = star <= (hovered || rating);
return (
<button
key={star}
type="button"
onClick={() => setRating(star)}
onMouseEnter={() => setHovered(star)}
onMouseLeave={() => setHovered(0)}
aria-label={`${star} star`}
aria-pressed={rating === star}
className="text-3xl transition-transform hover:scale-110 active:scale-95 sm:text-4xl"
>
<i
className={
isActive
? "fa-solid fa-star text-yellow-400"
: "fa-regular fa-star text-(--color-border)"
}
></i>
</button>
);
})}
</div>
{rating > 0 && (
<p className="mt-1.5 text-xs text-(--color-text-muted)">
{
["", "Very poor", "Poor", "Average", "Good", "Excellent"][
rating
]
}
</p>
)}
</div>
{/* Review textarea */}
<div className="mb-6">
<Textarea
id="review-text"
label="Comment (optional)"
value={review}
onChange={(e) => setReview(e.target.value)}
placeholder="Share your thoughts on the drinks, service..."
rows={4}
/>
</div>
{/* Footer buttons */}
<div className="flex gap-3">
<Button
type="button"
onClick={handleClose}
variant="secondary"
className="flex-1"
icon="fa-arrow-left"
>
Go back
</Button>
<Button
type="button"
onClick={handleSubmit}
disabled={rating === 0}
className="flex-1"
icon="fa-check"
>
Confirm
</Button>
</div>
</>
)}
</div>
</div>
);
}