Skip to content

Commit

Permalink
completed payouts page
Browse files Browse the repository at this point in the history
  • Loading branch information
Pritam12F committed Aug 11, 2024
1 parent daf9531 commit 029fe11
Show file tree
Hide file tree
Showing 8 changed files with 252 additions and 5 deletions.
32 changes: 32 additions & 0 deletions src/app/api/getwallets/route.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import prisma from '@/db';
import { authOptions } from '@/lib/auth';
import { getServerSession } from 'next-auth';
import { NextResponse } from 'next/server';

export async function GET() {
const session = await getServerSession(authOptions);

if (!session || !session.user) {
return NextResponse.json(
{
message: 'Unauthorized!',
},
{ status: 403 },
);
}

const wallets = await prisma.user.findFirst({
where: {
id: session.user.id,
},
select: {
upis: true,
solanaAddresses: true,
},
});

return NextResponse.json({
upiWallets: wallets?.upis,
solanaWallets: wallets?.solanaAddresses,
});
}
4 changes: 3 additions & 1 deletion src/app/payout-methods/page.tsx → src/app/payouts/page.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { AddPayout } from '@/components/AddNewPayout';
import { Wallets } from '@/components/WalletDialog';

export default async function Payout() {
return (
<main>
<main className="flex flex-col items-center justify-center">
<AddPayout />
<Wallets />
</main>
);
}
4 changes: 2 additions & 2 deletions src/components/AddNewPayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ export const AddPayout = () => {
};

return (
<diV className="mx-auto my-10 max-w-[450px] space-y-5 rounded-md border-2 p-10">
<diV className="mx-auto my-10 space-y-5 rounded-md border-2 p-10 sm:max-w-[300px] md:max-w-[450px]">
<Label htmlFor="address" className="text-xl">
Enter details
Enter details of wallet to add
</Label>
<div className="space-y-5">
<div>
Expand Down
18 changes: 18 additions & 0 deletions src/components/Address.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { Card, CardContent } from '@/components/ui/card';
import { Button } from '@/components/ui/button';
import React from 'react';

export function WalletAddress({ children }: { children: React.ReactNode }) {
return (
<Card className="w-full max-w-md">
<CardContent className="grid gap-4">
<div className="mb-3 mt-5 flex items-center justify-between rounded-md border border-muted bg-background px-4 py-3">
<div className="text-sm text-muted-foreground">{children}</div>
</div>
<div className="flex justify-end">
<Button className="w-full max-w-[200px]">Payout</Button>
</div>
</CardContent>
</Card>
);
}
44 changes: 44 additions & 0 deletions src/components/WalletDialog.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
'use client';

import {
Dialog,
DialogContent,
DialogDescription,
DialogHeader,
DialogTitle,
DialogTrigger,
} from '@/components/ui/dialog';
import { useWallets } from '@/hooks/useWallets';
import { WalletAddress } from './Address';
import { Button } from './ui/button';

export const Wallets = () => {
const { upiWallets, solanaWallets } = useWallets();
return (
<Dialog>
<DialogTrigger>
<Button variant={'outline'}>Show wallets</Button>
</DialogTrigger>
<DialogContent className="h-4/5 max-h-[60vh] overflow-y-auto">
<DialogHeader className="space-y-5">
<div className="space-y-3">
<DialogTitle>UPI wallets</DialogTitle>
<DialogDescription className="space-y-3">
{upiWallets?.map((wallet) => (
<WalletAddress>{wallet.address}</WalletAddress>
))}
</DialogDescription>
</div>
<div className="space-y-3">
<DialogTitle>Solana wallets</DialogTitle>
<DialogDescription className="space-y-3">
{solanaWallets?.map((wallet) => (
<WalletAddress>{wallet.address}</WalletAddress>
))}
</DialogDescription>
</div>
</DialogHeader>
</DialogContent>
</Dialog>
);
};
4 changes: 2 additions & 2 deletions src/components/profile-menu/ProfileDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ const ProfileDropdown = () => {
label: 'Questions',
},
{
href: 'payout-methods',
href: 'payouts',
icon: <Wallet className="mr-2 h-4 w-4" />,
label: 'Payout methods',
label: 'Payouts',
},
];

Expand Down
122 changes: 122 additions & 0 deletions src/components/ui/dialog.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
'use client';

import * as React from 'react';
import * as DialogPrimitive from '@radix-ui/react-dialog';
import { X } from 'lucide-react';

import { cn } from '@/lib/utils';

const Dialog = DialogPrimitive.Root;

const DialogTrigger = DialogPrimitive.Trigger;

const DialogPortal = DialogPrimitive.Portal;

const DialogClose = DialogPrimitive.Close;

const DialogOverlay = React.forwardRef<
React.ElementRef<typeof DialogPrimitive.Overlay>,
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Overlay>
>(({ className, ...props }, ref) => (
<DialogPrimitive.Overlay
ref={ref}
className={cn(
'fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0',
className,
)}
{...props}
/>
));
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;

const DialogContent = React.forwardRef<
React.ElementRef<typeof DialogPrimitive.Content>,
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>
>(({ className, children, ...props }, ref) => (
<DialogPortal>
<DialogOverlay />
<DialogPrimitive.Content
ref={ref}
className={cn(
'fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg 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}
>
{children}
<DialogPrimitive.Close className="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground">
<X className="h-4 w-4" />
<span className="sr-only">Close</span>
</DialogPrimitive.Close>
</DialogPrimitive.Content>
</DialogPortal>
));
DialogContent.displayName = DialogPrimitive.Content.displayName;

const DialogHeader = ({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) => (
<div
className={cn(
'flex flex-col space-y-1.5 text-center sm:text-left',
className,
)}
{...props}
/>
);
DialogHeader.displayName = 'DialogHeader';

const DialogFooter = ({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) => (
<div
className={cn(
'flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2',
className,
)}
{...props}
/>
);
DialogFooter.displayName = 'DialogFooter';

const DialogTitle = React.forwardRef<
React.ElementRef<typeof DialogPrimitive.Title>,
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Title>
>(({ className, ...props }, ref) => (
<DialogPrimitive.Title
ref={ref}
className={cn(
'text-lg font-semibold leading-none tracking-tight',
className,
)}
{...props}
/>
));
DialogTitle.displayName = DialogPrimitive.Title.displayName;

const DialogDescription = React.forwardRef<
React.ElementRef<typeof DialogPrimitive.Description>,
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Description>
>(({ className, ...props }, ref) => (
<DialogPrimitive.Description
ref={ref}
className={cn('text-sm text-muted-foreground', className)}
{...props}
/>
));
DialogDescription.displayName = DialogPrimitive.Description.displayName;

export {
Dialog,
DialogPortal,
DialogOverlay,
DialogClose,
DialogTrigger,
DialogContent,
DialogHeader,
DialogFooter,
DialogTitle,
DialogDescription,
};
29 changes: 29 additions & 0 deletions src/hooks/useWallets.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import axios from 'axios';
import { useEffect, useState } from 'react';

type Wallets = {
id: number;
parentId: string;
address: string;
addedAt: Date;
};
export const useWallets = () => {
const [upiWallets, setUpiWallets] = useState<Wallets[]>();
const [solanaWallets, setSolanaWallets] = useState<Wallets[]>();

useEffect(() => {
const fetchData = () => {
axios.get('api/getwallets').then((res) => {
setUpiWallets(res.data.upiWallets);
setSolanaWallets(res.data.solanaWallets);
});
};

fetchData();
}, []);

return {
upiWallets,
solanaWallets,
};
};

0 comments on commit 029fe11

Please sign in to comment.