mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 20:11:12 -05:00
113 lines
3.8 KiB
TypeScript
113 lines
3.8 KiB
TypeScript
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
|
|
import { Badge } from '@/components/ui/badge';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Edit, MapPin, Zap, Building2, Image, Package } from 'lucide-react';
|
|
import { type SubmissionItemWithDeps } from '@/lib/submissionItemsService';
|
|
import { useIsMobile } from '@/hooks/use-mobile';
|
|
import { PhotoSubmissionDisplay } from './PhotoSubmissionDisplay';
|
|
import { SubmissionChangesDisplay } from './SubmissionChangesDisplay';
|
|
|
|
interface ItemReviewCardProps {
|
|
item: SubmissionItemWithDeps;
|
|
onEdit: () => void;
|
|
onStatusChange: (status: 'approved' | 'rejected') => void;
|
|
submissionId: string;
|
|
}
|
|
|
|
export function ItemReviewCard({ item, onEdit, onStatusChange, submissionId }: ItemReviewCardProps) {
|
|
const isMobile = useIsMobile();
|
|
|
|
const getItemIcon = () => {
|
|
switch (item.item_type) {
|
|
case 'park': return <MapPin className="w-4 h-4" />;
|
|
case 'ride': return <Zap className="w-4 h-4" />;
|
|
case 'manufacturer':
|
|
case 'operator':
|
|
case 'property_owner':
|
|
case 'designer': return <Building2 className="w-4 h-4" />;
|
|
case 'ride_model': return <Package className="w-4 h-4" />;
|
|
case 'photo': return <Image className="w-4 h-4" />;
|
|
default: return null;
|
|
}
|
|
};
|
|
|
|
const getStatusColor = () => {
|
|
switch (item.status) {
|
|
case 'approved': return 'default';
|
|
case 'rejected': return 'destructive';
|
|
case 'pending': return 'secondary';
|
|
default: return 'outline';
|
|
}
|
|
};
|
|
|
|
const renderItemPreview = () => {
|
|
// Use detailed view for review manager with photo detection
|
|
return (
|
|
<SubmissionChangesDisplay
|
|
item={item}
|
|
view="detailed"
|
|
showImages={true}
|
|
submissionId={submissionId}
|
|
/>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<Card className="w-full">
|
|
<CardHeader className={isMobile ? "pb-3 p-4" : "pb-3"}>
|
|
<div className={`flex gap-2 ${isMobile ? 'flex-col' : 'items-start justify-between'}`}>
|
|
<div className="flex items-center gap-2 flex-wrap">
|
|
{getItemIcon()}
|
|
<CardTitle className={isMobile ? "text-sm" : "text-base"}>
|
|
{item.item_type.replace('_', ' ').toUpperCase()}
|
|
</CardTitle>
|
|
{item.original_data && (
|
|
<Badge variant="outline" className="text-xs">
|
|
Edited
|
|
</Badge>
|
|
)}
|
|
</div>
|
|
<div className="flex items-center gap-2">
|
|
<Badge variant={getStatusColor()} className={isMobile ? "text-xs" : ""}>
|
|
{item.status}
|
|
</Badge>
|
|
{item.status === 'pending' && (
|
|
<Button
|
|
size={isMobile ? "default" : "sm"}
|
|
variant="ghost"
|
|
onClick={onEdit}
|
|
className={isMobile ? "h-9 px-3" : ""}
|
|
>
|
|
<Edit className={isMobile ? "w-4 h-4" : "w-3 h-3"} />
|
|
{isMobile && <span className="ml-2">Edit</span>}
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</CardHeader>
|
|
<CardContent className={isMobile ? "p-4 pt-0" : ""}>
|
|
{renderItemPreview()}
|
|
|
|
{item.depends_on && (
|
|
<div className="mt-3 pt-3 border-t">
|
|
<p className={`text-muted-foreground ${isMobile ? 'text-xs' : 'text-xs'}`}>
|
|
Depends on another item in this submission
|
|
</p>
|
|
</div>
|
|
)}
|
|
|
|
{item.rejection_reason && (
|
|
<div className="mt-3 pt-3 border-t">
|
|
<p className={`font-medium text-destructive ${isMobile ? 'text-xs' : 'text-xs'}`}>
|
|
Rejection Reason:
|
|
</p>
|
|
<p className={`text-muted-foreground mt-1 ${isMobile ? 'text-xs' : 'text-xs'}`}>
|
|
{item.rejection_reason}
|
|
</p>
|
|
</div>
|
|
)}
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}
|