Implement notification history feature

Adds a notification history view accessible from the header, including a clear button and a notification count badge.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-22 06:15:41 +00:00
parent 89f31521db
commit 0d49c4b8ae
6 changed files with 245 additions and 5 deletions

View File

@@ -1,11 +1,12 @@
import React, { useState, useEffect } from 'react';
import { Bell } from 'lucide-react';
import { useAuth } from '@/contexts/auth';
import { Avatar, AvatarFallback, AvatarImage } from '@/components/ui/avatar';
import { Skeleton } from '@/components/ui/skeleton';
import { useAuth } from '@/contexts/auth';
import { useIsMobile } from '@/hooks/use-mobile';
import { isIOSPlatform } from '@/utils/platform';
import NotificationPopover from './notification/NotificationPopover';
import useNotifications from '@/hooks/useNotifications';
const Header: React.FC = () => {
const {
@@ -16,6 +17,7 @@ const Header: React.FC = () => {
const [imageError, setImageError] = useState(false);
const isMobile = useIsMobile();
const [isIOS, setIsIOS] = useState(false);
const { notifications, clearAllNotifications, markAsRead } = useNotifications();
// 플랫폼 감지
useEffect(() => {
@@ -64,9 +66,13 @@ const Header: React.FC = () => {
<p className="text-gray-500 text-left"> </p>
</div>
</div>
<button className="neuro-flat p-2.5 rounded-full">
<Bell size={20} className="text-gray-600" />
</button>
<div className="neuro-flat p-2.5 rounded-full">
<NotificationPopover
notifications={notifications}
onClearAll={clearAllNotifications}
onReadNotification={markAsRead}
/>
</div>
</div>
</header>
);

View File

@@ -0,0 +1,123 @@
import React from 'react';
import { BellRing, X, Check } from 'lucide-react';
import { Popover, PopoverContent, PopoverTrigger } from '@/components/ui/popover';
import { Button } from '@/components/ui/button';
import { Badge } from '@/components/ui/badge';
import { Separator } from '@/components/ui/separator';
import { toast } from 'sonner';
// 알림 타입 정의
export interface Notification {
id: string;
title: string;
message: string;
timestamp: Date;
read: boolean;
}
interface NotificationPopoverProps {
notifications: Notification[];
onClearAll: () => void;
onReadNotification: (id: string) => void;
}
const NotificationPopover: React.FC<NotificationPopoverProps> = ({
notifications,
onClearAll,
onReadNotification
}) => {
const unreadCount = notifications.filter(notification => !notification.read).length;
const handleClearAll = () => {
onClearAll();
toast.success('모든 알림이 삭제되었습니다.');
};
const formatDate = (date: Date) => {
return new Intl.DateTimeFormat('ko-KR', {
month: 'short',
day: 'numeric',
hour: '2-digit',
minute: '2-digit'
}).format(date);
};
return (
<Popover>
<PopoverTrigger asChild>
<Button variant="ghost" size="icon" className="relative">
<BellRing size={20} className="text-gray-600" />
{unreadCount > 0 && (
<Badge
className="absolute -top-1 -right-1 px-1.5 py-0.5 min-w-5 h-5 flex items-center justify-center text-xs bg-neuro-income text-white border-2 border-neuro-background"
>
{unreadCount}
</Badge>
)}
</Button>
</PopoverTrigger>
<PopoverContent className="w-80 p-0 neuro-flat" align="end">
<div className="flex items-center justify-between p-4">
<div className="flex items-center">
<BellRing size={16} className="mr-2 text-neuro-income" />
<h3 className="font-medium"></h3>
{unreadCount > 0 && (
<Badge
className="ml-2 px-1.5 py-0.5 bg-neuro-income text-white"
>
{unreadCount}
</Badge>
)}
</div>
{notifications.length > 0 && (
<Button
variant="ghost"
size="sm"
onClick={handleClearAll}
className="text-xs hover:bg-red-100 hover:text-red-600"
>
</Button>
)}
</div>
<Separator />
<div className="max-h-[300px] overflow-y-auto">
{notifications.length === 0 ? (
<div className="py-6 text-center text-gray-500">
.
</div>
) : (
notifications.map((notification) => (
<div key={notification.id} className={`p-4 border-b last:border-b-0 ${!notification.read ? 'bg-[#F2FCE2]' : ''}`}>
<div className="flex items-start justify-between">
<div className="flex-1">
<h4 className="text-sm font-medium">{notification.title}</h4>
<p className="text-xs text-gray-600 mt-1">{notification.message}</p>
<p className="text-xs text-gray-400 mt-1">{formatDate(notification.timestamp)}</p>
</div>
<Button
variant="ghost"
size="icon"
className="h-6 w-6 rounded-full hover:bg-gray-200"
onClick={() => onReadNotification(notification.id)}
>
{notification.read ? (
<Check size={14} className="text-gray-400" />
) : (
<X size={14} className="text-gray-400" />
)}
</Button>
</div>
</div>
))
)}
</div>
</PopoverContent>
</Popover>
);
};
export default NotificationPopover;