Instantly share code, notes, and snippets.
Last active
November 11, 2024 01:27
-
Star
0
(0)
You must be signed in to star a gist -
Fork
0
(0)
You must be signed in to fork a gist
-
Save Ernesto-tha-great/56e3c848e990ab5da32dbbd2b38e5640 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| "use client"; | |
| import { | |
| AlertDialog, | |
| AlertDialogCancel, | |
| AlertDialogContent, | |
| AlertDialogFooter, | |
| AlertDialogHeader, | |
| AlertDialogTitle, | |
| AlertDialogTrigger, | |
| } from "@/components/ui/alert-dialog"; | |
| import { useEffect } from "react"; | |
| import { | |
| OkidoTokenAbi, | |
| okidoFinance, | |
| okidoFinanceAbi, | |
| okidoToken, | |
| } from "@/constants"; | |
| import { toast } from "sonner"; | |
| import { | |
| Form, | |
| FormControl, | |
| FormField, | |
| FormItem, | |
| FormLabel, | |
| FormMessage, | |
| } from "@/components/ui/form"; | |
| import { useWaitForTransactionReceipt, useWriteContract } from "wagmi"; | |
| import { z } from "zod"; | |
| import { zodResolver } from "@hookform/resolvers/zod"; | |
| import { useForm } from "react-hook-form"; | |
| import { Input } from "@/components/ui/input"; | |
| import { Button } from "@/components/ui/button"; | |
| import { MoveLeft, XIcon } from "lucide-react"; | |
| import { parseUnits } from "viem"; | |
| interface InvestModalProps { | |
| children: React.ReactNode; | |
| } | |
| const BuySharesModal = ({ children }: InvestModalProps) => { | |
| const { | |
| data: hash, | |
| error, | |
| isPending, | |
| writeContractAsync, | |
| } = useWriteContract(); | |
| const { isLoading: isConfirming, isSuccess: isConfirmed } = | |
| useWaitForTransactionReceipt({ | |
| hash, | |
| }); | |
| useEffect(() => { | |
| if (isConfirming) { | |
| toast.loading("Transaction Pending"); | |
| } | |
| if (isConfirmed) { | |
| toast.success("Transaction Successful", { | |
| action: { | |
| label: "View on Etherscan", | |
| onClick: () => { | |
| window.open(`https://explorer-holesky.morphl2.io/tx/${hash}`); | |
| }, | |
| }, | |
| }); | |
| } | |
| if (error) { | |
| toast.error("Transaction Failed"); | |
| } | |
| }, [isConfirming, isConfirmed, error, hash]); | |
| const formSchema = z.object({ | |
| // ensure to enforce validation regarding symbol and others | |
| propertyId: z.any(), | |
| shares: z.any(), | |
| }); | |
| const form = useForm<z.infer<typeof formSchema>>({ | |
| resolver: zodResolver(formSchema), | |
| defaultValues: { | |
| propertyId: 0, | |
| shares: 0, | |
| }, | |
| }); | |
| const BuyShares = async (data: z.infer<typeof formSchema>) => { | |
| console.log(data); | |
| try { | |
| const approveSharesTx = await writeContractAsync({ | |
| address: okidoToken, | |
| abi: OkidoTokenAbi, | |
| functionName: "approve", | |
| args: [okidoFinance, parseUnits("100000000", 18)], | |
| }); | |
| console.log("property transaction hash:", approveSharesTx); | |
| const buySharesTx = await writeContractAsync({ | |
| address: okidoFinance, | |
| abi: okidoFinanceAbi, | |
| functionName: "buyShares", | |
| args: [data.propertyId, data.shares], | |
| }); | |
| console.log("property transaction hash:", buySharesTx); | |
| } catch (err: any) { | |
| toast.error("Transaction Failed: " + err.message); | |
| console.log("Transaction Failed: " + err.message); | |
| } | |
| }; | |
| return ( | |
| <AlertDialog> | |
| <AlertDialogTrigger asChild>{children}</AlertDialogTrigger> | |
| <AlertDialogContent> | |
| <AlertDialogHeader> | |
| <AlertDialogTitle> | |
| <div className="flex items-center gap-6 justify-between"> | |
| <h1>Add a Property</h1> | |
| <AlertDialogCancel className="border-none"> | |
| <XIcon size={28} /> | |
| </AlertDialogCancel> | |
| </div> | |
| </AlertDialogTitle> | |
| </AlertDialogHeader> | |
| <div> | |
| <Form {...form}> | |
| <form onSubmit={form.handleSubmit(BuyShares)} className="space-y-8"> | |
| <FormField | |
| control={form.control} | |
| name="propertyId" | |
| render={({ field }) => ( | |
| <FormItem> | |
| <FormLabel className=""> | |
| <h1 className="text-[#32393A]">Property Id</h1> | |
| </FormLabel> | |
| <FormControl> | |
| <Input | |
| className="bg-[#14A800]/10 rounded-lg focus:outline-none border-none" | |
| type="number" | |
| placeholder="0" | |
| {...field} | |
| /> | |
| </FormControl> | |
| <FormMessage /> | |
| </FormItem> | |
| )} | |
| /> | |
| <FormField | |
| control={form.control} | |
| name="shares" | |
| render={({ field }) => ( | |
| <FormItem> | |
| <FormLabel className=""> | |
| <h1 className="text-[#32393A]">No of shares</h1> | |
| </FormLabel> | |
| <FormControl> | |
| <Input | |
| className="bg-[#14A800]/10 rounded-lg focus:outline-none border-none" | |
| type="number" | |
| placeholder="0" | |
| {...field} | |
| /> | |
| </FormControl> | |
| <FormMessage /> | |
| </FormItem> | |
| )} | |
| /> | |
| <div className="flex items-center justify-center gap-4"> | |
| <AlertDialogCancel className="bg-[#14A800]/10 rounded-full px-20 py-6"> | |
| Cancel | |
| </AlertDialogCancel> | |
| <Button | |
| className="bg-[#14A800] w-fit my-8 rounded-full px-20 py-6" | |
| size="lg" | |
| disabled={isPending} | |
| type="submit" | |
| > | |
| {isPending ? "Loading" : "Submit"} | |
| </Button> | |
| </div> | |
| </form> | |
| </Form> | |
| </div> | |
| </AlertDialogContent> | |
| </AlertDialog> | |
| ); | |
| }; | |
| export default BuySharesModal; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment