blob: bcc11c414b792a718af768dcef0f5385894581fc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
'use client';
import { useEffect, useState } from 'react';
import { CheckCircle, AlertCircle, X } from 'lucide-react';
export type NotificationType = 'success' | 'error' | 'info';
interface NotificationProps {
type: NotificationType;
message: string;
duration?: number;
onClose?: () => void;
}
export function Notification({
type,
message,
duration = 5000, // Default duration of 5 seconds
onClose
}: NotificationProps) {
const [isVisible, setIsVisible] = useState(true);
useEffect(() => {
if (duration > 0) {
const timer = setTimeout(() => {
setIsVisible(false);
if (onClose) onClose();
}, duration);
return () => clearTimeout(timer);
}
}, [duration, onClose]);
const handleClose = () => {
setIsVisible(false);
if (onClose) onClose();
};
if (!isVisible) return null;
const getIcon = () => {
switch (type) {
case 'success':
return <CheckCircle className="h-5 w-5 text-green-500" />;
case 'error':
return <AlertCircle className="h-5 w-5 text-red-500" />;
case 'info':
return <AlertCircle className="h-5 w-5 text-blue-500" />;
default:
return null;
}
};
const getContainerClasses = () => {
const baseClasses = 'fixed top-4 right-4 z-50 flex items-center gap-3 rounded-lg p-4 shadow-md max-w-sm';
switch (type) {
case 'success':
return `${baseClasses} bg-green-50 text-green-800 border border-green-200`;
case 'error':
return `${baseClasses} bg-red-50 text-red-800 border border-red-200`;
case 'info':
return `${baseClasses} bg-blue-50 text-blue-800 border border-blue-200`;
default:
return baseClasses;
}
};
return (
<div className={getContainerClasses()}>
{getIcon()}
<div className="flex-1">{message}</div>
<button
onClick={handleClose}
className="text-gray-500 hover:text-gray-700 focus:outline-none"
aria-label="Close notification"
>
<X className="h-4 w-4" />
</button>
</div>
);
}
|