-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refine Modal Display Logic to Only Show on First Visit (SnapshotNotifyModal) #1644
base: staging
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { ModalProps, Text, Link } from "@chakra-ui/react" | ||
import { BaseModal } from "./BaseModal" | ||
import { useEffect } from "react" | ||
export const SnapshotNotifyModal = ({ | ||
isOpen, | ||
onClose, | ||
}: Pick<ModalProps, "isOpen" | "onClose">) => { | ||
useEffect(() => { | ||
// Logic here if needed, e.g., analytics | ||
}, [isOpen]) | ||
|
||
return ( | ||
<BaseModal | ||
isOpen={isOpen} | ||
onClose={onClose} | ||
heading="Connect Wallet on Snapshot" | ||
> | ||
<Link | ||
href="/snapshot" | ||
color="white.500" | ||
textDecoration="underline" | ||
isExternal | ||
> | ||
Complete campaigns to earn bonus SOMM rewards and/or airdrop | ||
points. | ||
</Link> | ||
</BaseModal> | ||
) | ||
} |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,8 +1,32 @@ | ||||||||||||||||||||||||||||||||||
import type { NextPage } from "next" | ||||||||||||||||||||||||||||||||||
import { PageHome } from "components/_pages/PageHome" | ||||||||||||||||||||||||||||||||||
import { useState, useEffect } from "react" | ||||||||||||||||||||||||||||||||||
import { SnapshotNotifyModal } from "components/_modals/SnapshotNotifyModal." | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
const Home: NextPage = () => { | ||||||||||||||||||||||||||||||||||
return <PageHome /> | ||||||||||||||||||||||||||||||||||
const [isModalOpen, setIsModalOpen] = useState(false) | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
useEffect(() => { | ||||||||||||||||||||||||||||||||||
const modalShown = localStorage.getItem("modalShown") | ||||||||||||||||||||||||||||||||||
if (!modalShown) { | ||||||||||||||||||||||||||||||||||
setIsModalOpen(true) | ||||||||||||||||||||||||||||||||||
localStorage.setItem("modalShown", "true") | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
}, []) | ||||||||||||||||||||||||||||||||||
Comment on lines
+9
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ensure that accessing useEffect(() => {
+ if (typeof window !== "undefined") {
const modalShown = localStorage.getItem("modalShown")
if (!modalShown) {
setIsModalOpen(true)
localStorage.setItem("modalShown", "true")
}
+ }
}, []) Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
const handleCloseModal = () => setIsModalOpen(false) | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||||||
<> | ||||||||||||||||||||||||||||||||||
<PageHome /> | ||||||||||||||||||||||||||||||||||
{isModalOpen && ( | ||||||||||||||||||||||||||||||||||
<SnapshotNotifyModal | ||||||||||||||||||||||||||||||||||
isOpen={isModalOpen} | ||||||||||||||||||||||||||||||||||
onClose={handleCloseModal} | ||||||||||||||||||||||||||||||||||
/> | ||||||||||||||||||||||||||||||||||
)} | ||||||||||||||||||||||||||||||||||
</> | ||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
export default Home |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider initializing
isModalOpen
state based on thelocalStorage
value to avoid unnecessary re-renders.Committable suggestion