-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotificationBanner.tsx
85 lines (77 loc) · 2.12 KB
/
notificationBanner.tsx
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
83
84
85
"use client";
import React, { useState, useEffect } from "react";
import { Button } from "@/components/ui/button";
import {
Dialog,
DialogClose,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
DialogTrigger,
} from "@/components/ui/dialog";
const NotificationPopup = ({
onClose,
onOpenChange,
showNotification,
}: {
onClose: () => void;
onOpenChange(open: boolean): void;
showNotification: boolean;
}) => {
return (
<Dialog open={showNotification} onOpenChange={onOpenChange}>
<DialogTrigger asChild>
<Button variant="outline">Attention</Button>
</DialogTrigger>
<DialogContent className="sm:max-w-md">
<DialogHeader>
<DialogTitle>Attention!</DialogTitle>
<DialogDescription>
This website does not store your data after you refresh the page.
Any information you enter will be lost. Are you agree with this?
</DialogDescription>
</DialogHeader>
<DialogFooter className="sm:justify-end">
<DialogClose asChild>
<Button type="button" onClick={onClose}>
Agree
</Button>
</DialogClose>
</DialogFooter>
</DialogContent>
</Dialog>
);
};
const NotificationBanner = () => {
const [showNotification, setShowNotification] = useState(false);
useEffect(() => {
const hasVisitedBefore = localStorage.getItem("hasVisitedBefore");
if (!hasVisitedBefore) {
setShowNotification(true);
}
}, [showNotification]);
const handleCloseNotification = () => {
setShowNotification(false);
localStorage.setItem("hasVisitedBefore", "true");
};
const onOpenChange = (open: boolean) => {
if (!localStorage.getItem("hasVisitedBefore")) {
setShowNotification(true);
}
setShowNotification(false);
};
return (
<div className="app">
{showNotification && (
<NotificationPopup
onClose={handleCloseNotification}
onOpenChange={onOpenChange}
showNotification={showNotification}
/>
)}
</div>
);
};
export default NotificationBanner;