-
Notifications
You must be signed in to change notification settings - Fork 534
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add USDC claim modal for eligible addresses (#1559)
* Add USDC claim modal for eligible addresses * Clean up
- Loading branch information
Showing
4 changed files
with
95 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -118,6 +118,7 @@ const contentSecurityPolicy = { | |
'https://sdk-api.neynar.com/', // Neymar API | ||
'https://unpkg.com/@lottiefiles/[email protected]/dist/dotlottie-player.wasm', // lottie player | ||
`https://${process.env.NEXT_PUBLIC_PINATA_GATEWAY_URL}`, | ||
'https://usdc-claim-git-master-coinbase-vercel.vercel.app', | ||
], | ||
'frame-src': ['https://p.datadoghq.com'], | ||
'frame-ancestors': ["'self'", baseXYZDomains], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
apps/web/src/components/Basenames/RegistrationSuccessMessage/USDCClaimModal.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import classNames from 'classnames'; | ||
import { Button, ButtonVariants } from 'apps/web/src/components/Button/Button'; | ||
|
||
type USDCClaimModalProps = { | ||
message: string; | ||
onClose: () => void; | ||
}; | ||
|
||
function handleButtonClick() { | ||
window.open('https://www.coinbase.com/usdc', '_blank', 'noopener noreferrer'); | ||
} | ||
|
||
function USDCClaimModal({ message, onClose }: USDCClaimModalProps) { | ||
const popupClasses = classNames( | ||
'fixed top-0 left-0 w-full h-full flex items-center justify-center', | ||
); | ||
|
||
return ( | ||
<div className={popupClasses}> | ||
<div className="relative w-11/12 max-w-lg rounded-lg bg-white p-8 opacity-95 shadow-lg sm:w-3/4 md:w-2/3 lg:w-1/2"> | ||
<button | ||
type="button" | ||
onClick={onClose} | ||
className="text-gray-600 hover:text-gray-800 absolute right-2 top-0" | ||
> | ||
× | ||
</button> | ||
<p className="text-center text-lg font-bold">{message}</p> | ||
<Button | ||
variant={ButtonVariants.SecondaryDarkBounce} | ||
rounded | ||
className="mx-auto mt-4 block" | ||
onClick={handleButtonClick} | ||
> | ||
Learn more | ||
</Button> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default USDCClaimModal; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters