veza/apps/web/src/features/tracks/components/CommentSection.tsx

208 lines
6.9 KiB
TypeScript
Raw Normal View History

import { useState } from 'react';
import { useQuery, useMutation, useQueryClient } from '@tanstack/react-query';
import {
getComments,
createComment,
deleteComment,
} from '../services/commentService';
import { useAuthStore } from '@/stores/auth';
import { useToast } from '@/hooks/useToast';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar';
import { MessageCircle, Send, Trash2, MoreVertical } from 'lucide-react';
import { formatDistanceToNow } from 'date-fns';
import { fr } from 'date-fns/locale';
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuTrigger,
} from '@/components/ui/dropdown-menu';
import { LoadingSpinner } from '@/components/ui/loading-spinner';
// FE-PAGE-007: Complete Track Detail page implementation - Comments Section
interface CommentSectionProps {
trackId: string;
}
export function CommentSection({ trackId }: CommentSectionProps) {
const { user } = useAuthStore();
const toast = useToast();
const queryClient = useQueryClient();
const [newComment, setNewComment] = useState('');
const [page, setPage] = useState(1);
const limit = 20;
const {
data: commentsData,
isLoading,
error,
} = useQuery({
queryKey: ['trackComments', trackId, page],
queryFn: () => getComments(trackId, page, limit),
enabled: !!trackId,
});
const createCommentMutation = useMutation({
mutationFn: (content: string) => createComment(trackId, content),
onSuccess: () => {
queryClient.invalidateQueries({ queryKey: ['trackComments', trackId] });
setNewComment('');
toast.success('Comment posted');
},
onError: (error: any) => {
toast.error(error.message || 'Failed to post comment');
},
});
const deleteCommentMutation = useMutation({
mutationFn: deleteComment,
onSuccess: () => {
queryClient.invalidateQueries({ queryKey: ['trackComments', trackId] });
toast.success('Comment deleted');
},
onError: (error: any) => {
toast.error(error.message || 'Failed to delete comment');
},
});
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault();
if (!newComment.trim() || !user) return;
createCommentMutation.mutate(newComment.trim());
};
const handleDelete = (commentId: string) => {
if (confirm('Are you sure you want to delete this comment?')) {
deleteCommentMutation.mutate(commentId);
}
};
const comments = commentsData?.comments || [];
const total = commentsData?.total || 0;
const totalPages = Math.ceil(total / limit);
return (
<Card>
<CardHeader>
<CardTitle className="flex items-center gap-2">
<MessageCircle className="h-5 w-5" />
Comments ({commentsData?.total || 0})
</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
{/* Comment Form */}
{user ? (
<form onSubmit={handleSubmit} className="flex gap-2">
<Input
value={newComment}
onChange={(e) => setNewComment(e.target.value)}
placeholder="Write a comment..."
maxLength={500}
/>
<Button
type="submit"
disabled={!newComment.trim() || createCommentMutation.isPending}
>
<Send className="h-4 w-4" />
</Button>
</form>
) : (
<p className="text-sm text-muted-foreground">
Please log in to comment
</p>
)}
{/* Comments List */}
{isLoading ? (
<div className="flex justify-center py-8">
<LoadingSpinner />
</div>
) : error ? (
<div className="text-center text-destructive py-4">
Failed to load comments
</div>
) : comments.length === 0 ? (
<div className="text-center text-muted-foreground py-8">
No comments yet. Be the first to comment!
</div>
) : (
<div className="space-y-4">
{comments.map((comment) => (
<div key={comment.id} className="flex gap-3">
<Avatar>
<AvatarImage src={comment.user.avatar} />
<AvatarFallback>
{comment.user.username.charAt(0).toUpperCase()}
</AvatarFallback>
</Avatar>
<div className="flex-1 space-y-1">
<div className="flex items-center justify-between">
<div>
<span className="font-medium">{comment.user.username}</span>
<span className="text-xs text-muted-foreground ml-2">
{formatDistanceToNow(new Date(comment.created_at), {
addSuffix: true,
locale: fr,
})}
</span>
</div>
{user?.id === comment.user_id && (
<DropdownMenu>
<DropdownMenuTrigger asChild>
<Button variant="ghost" size="sm">
<MoreVertical className="h-4 w-4" />
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent align="end">
<DropdownMenuItem
onClick={() => handleDelete(comment.id)}
className="text-destructive"
>
<Trash2 className="mr-2 h-4 w-4" />
Delete
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>
)}
</div>
<p className="text-sm">{comment.content}</p>
</div>
</div>
))}
{/* Pagination */}
{totalPages > 1 && (
<div className="flex items-center justify-center gap-2 pt-4">
<Button
variant="outline"
size="sm"
onClick={() => setPage((p) => Math.max(1, p - 1))}
disabled={page === 1}
>
Previous
</Button>
<span className="text-sm text-muted-foreground">
Page {page} of {totalPages}
</span>
<Button
variant="outline"
size="sm"
onClick={() => setPage((p) => Math.min(totalPages, p + 1))}
disabled={page === totalPages}
>
Next
</Button>
</div>
)}
</div>
)}
</CardContent>
</Card>
);
}