This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
860 additions
and
33 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,58 @@ | ||
'use client'; | ||
|
||
import { useState } from 'react'; | ||
import { AlertDialog, AlertDialogContent, AlertDialogTrigger } from '../ui/alert-dialog'; | ||
import { ConnectWalletIcon, WalletIcon, WalletIconType } from '../wallet-icon'; | ||
import { Icons } from '../icons'; | ||
|
||
export default function ConnectWallet() { | ||
const [isDialogOpen, setIsDialogOpen] = useState(false); | ||
|
||
return ( | ||
<AlertDialog open={isDialogOpen} onOpenChange={setIsDialogOpen}> | ||
<AlertDialogTrigger asChild> | ||
<button className="flex items-center gap-2 rounded-lg border border-primary-300 px-[45px] py-4 font-heading text-[1rem] font-medium text-primary-300 hover:border-white hover:text-white"> | ||
Connect <ConnectWalletIcon className="h-4 w-[21px]" /> | ||
</button> | ||
</AlertDialogTrigger> | ||
<AlertDialogContent className="gap-6"> | ||
<div className="flex items-center justify-between"> | ||
<h1 className="text-[1.0625rem]/[1.5rem] font-medium ">Connect wallet</h1> | ||
<button onClick={() => setIsDialogOpen(false)}> | ||
<Icons.close className="size-6 stroke-white hover:stroke-primary-foreground" /> | ||
</button> | ||
</div> | ||
<div className="flex w-full flex-col gap-6"> | ||
<WalletButton icon="tailsManWallet" name="Tailsman" isRecommended /> | ||
<WalletButton icon="subWallet" name="Subwallet" /> | ||
</div> | ||
</AlertDialogContent> | ||
</AlertDialog> | ||
); | ||
} | ||
|
||
interface WalletButtonProps extends React.HTMLAttributes<HTMLButtonElement> { | ||
name: string; | ||
icon: WalletIconType; | ||
isRecommended?: boolean; | ||
} | ||
|
||
export function WalletButton({ name, icon, isRecommended, ...props }: WalletButtonProps) { | ||
const Icon = WalletIcon[icon]; | ||
return ( | ||
<button | ||
className="flex w-full items-center justify-between rounded-lg border border-white px-4 py-2 transition-colors duration-300 hover:border-primary-foreground" | ||
{...props} | ||
> | ||
<div className="flex items-center gap-2"> | ||
<Icon className="size-[42px]" /> | ||
<span className="text-[1rem]/[1.5rem]">{name}</span> | ||
</div> | ||
{isRecommended ? ( | ||
<span className="rounded-lg bg-primary px-2 text-center text-[0.75rem]/[1.5rem] font-light text-primary-300"> | ||
Recommended | ||
</span> | ||
) : null} | ||
</button> | ||
); | ||
} |
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
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,124 @@ | ||
'use client'; | ||
|
||
import * as React from 'react'; | ||
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog'; | ||
|
||
import { cn } from '@/lib/utils'; | ||
import { buttonVariants } from '@/components/ui/button'; | ||
|
||
const AlertDialog = AlertDialogPrimitive.Root; | ||
|
||
const AlertDialogTrigger = AlertDialogPrimitive.Trigger; | ||
|
||
const AlertDialogPortal = AlertDialogPrimitive.Portal; | ||
|
||
const AlertDialogOverlay = React.forwardRef< | ||
React.ElementRef<typeof AlertDialogPrimitive.Overlay>, | ||
React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Overlay> | ||
>(({ className, ...props }, ref) => ( | ||
<AlertDialogPrimitive.Overlay | ||
className={cn( | ||
'fixed inset-0 z-50 bg-primary/50 backdrop-blur-[4px] backdrop-filter data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0', | ||
className | ||
)} | ||
{...props} | ||
ref={ref} | ||
/> | ||
)); | ||
AlertDialogOverlay.displayName = AlertDialogPrimitive.Overlay.displayName; | ||
|
||
const AlertDialogContent = React.forwardRef< | ||
React.ElementRef<typeof AlertDialogPrimitive.Content>, | ||
React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Content> | ||
>(({ className, ...props }, ref) => ( | ||
<AlertDialogPortal> | ||
<AlertDialogOverlay /> | ||
<AlertDialogPrimitive.Content | ||
ref={ref} | ||
className={cn( | ||
'bg-primary-500 fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] rounded-lg p-6 shadow-header duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg', | ||
className | ||
)} | ||
{...props} | ||
/> | ||
</AlertDialogPortal> | ||
)); | ||
AlertDialogContent.displayName = AlertDialogPrimitive.Content.displayName; | ||
|
||
const AlertDialogHeader = ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => ( | ||
<div | ||
className={cn('flex flex-col space-y-2 text-center sm:text-left', className)} | ||
{...props} | ||
/> | ||
); | ||
AlertDialogHeader.displayName = 'AlertDialogHeader'; | ||
|
||
const AlertDialogFooter = ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => ( | ||
<div | ||
className={cn('flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2', className)} | ||
{...props} | ||
/> | ||
); | ||
AlertDialogFooter.displayName = 'AlertDialogFooter'; | ||
|
||
const AlertDialogTitle = React.forwardRef< | ||
React.ElementRef<typeof AlertDialogPrimitive.Title>, | ||
React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Title> | ||
>(({ className, ...props }, ref) => ( | ||
<AlertDialogPrimitive.Title | ||
ref={ref} | ||
className={cn('text-lg font-semibold', className)} | ||
{...props} | ||
/> | ||
)); | ||
AlertDialogTitle.displayName = AlertDialogPrimitive.Title.displayName; | ||
|
||
const AlertDialogDescription = React.forwardRef< | ||
React.ElementRef<typeof AlertDialogPrimitive.Description>, | ||
React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Description> | ||
>(({ className, ...props }, ref) => ( | ||
<AlertDialogPrimitive.Description | ||
ref={ref} | ||
className={cn('text-sm text-muted-foreground', className)} | ||
{...props} | ||
/> | ||
)); | ||
AlertDialogDescription.displayName = AlertDialogPrimitive.Description.displayName; | ||
|
||
const AlertDialogAction = React.forwardRef< | ||
React.ElementRef<typeof AlertDialogPrimitive.Action>, | ||
React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Action> | ||
>(({ className, ...props }, ref) => ( | ||
<AlertDialogPrimitive.Action | ||
ref={ref} | ||
className={cn(buttonVariants(), className)} | ||
{...props} | ||
/> | ||
)); | ||
AlertDialogAction.displayName = AlertDialogPrimitive.Action.displayName; | ||
|
||
const AlertDialogCancel = React.forwardRef< | ||
React.ElementRef<typeof AlertDialogPrimitive.Cancel>, | ||
React.ComponentPropsWithoutRef<typeof AlertDialogPrimitive.Cancel> | ||
>(({ className, ...props }, ref) => ( | ||
<AlertDialogPrimitive.Cancel | ||
ref={ref} | ||
className={cn(buttonVariants({ variant: 'outline' }), 'mt-2 sm:mt-0', className)} | ||
{...props} | ||
/> | ||
)); | ||
AlertDialogCancel.displayName = AlertDialogPrimitive.Cancel.displayName; | ||
|
||
export { | ||
AlertDialog, | ||
AlertDialogPortal, | ||
AlertDialogOverlay, | ||
AlertDialogTrigger, | ||
AlertDialogContent, | ||
AlertDialogHeader, | ||
AlertDialogFooter, | ||
AlertDialogTitle, | ||
AlertDialogDescription, | ||
AlertDialogAction, | ||
AlertDialogCancel | ||
}; |
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
Oops, something went wrong.