Change Dispute Flag
The ideal schema for this endpoint.
Schema
import { z } from "zod";
export const formSchema = z.object({
contractId: z.string().min(1, "Contract ID is required"),
signer: z.string().min(1, "Signer address is required"),
});
Custom Hook
import { useEscrowContext } from "@/providers/escrow.provider";
import { useWalletContext } from "@/providers/wallet.provider";
import { zodResolver } from "@hookform/resolvers/zod";
import { useState } from "react";
import { useForm } from "react-hook-form";
import { z } from "zod";
import { formSchema } from "../schemas/start-dispute-form.schema";
import { escrowService } from "../services/escrow.service";
import { Escrow } from "@/@types/escrows/escrow.entity";
import { toast } from "sonner";
import { EscrowRequestResponse } from "@/@types/escrows/escrow-response.entity";
import { StartDisputePayload } from "@/@types/escrows/escrow-payload.entity";
export const useStartDisputeForm = () => {
const { escrow } = useEscrowContext();
const { setEscrow } = useEscrowContext();
const { walletAddress } = useWalletContext();
const [loading, setLoading] = useState(false);
const [response, setResponse] = useState<EscrowRequestResponse | null>(null);
const form = useForm<z.infer<typeof formSchema>>({
resolver: zodResolver(formSchema),
defaultValues: {
contractId: escrow?.contractId || "",
signer: walletAddress || "Connect your wallet to get your address",
},
});
const onSubmit = async (payload: StartDisputePayload) => {
setLoading(true);
setResponse(null);
try {
/**
* API call by using the escrow service
* @Note:
* - We need to specify the endpoint and the method
* - We need to specify that the returnEscrowDataIsRequired is false
* - The result will be an EscrowRequestResponse
*/
const result = (await escrowService.execute({
payload,
endpoint: "/escrow/change-dispute-flag",
method: "post",
returnEscrowDataIsRequired: false,
})) as EscrowRequestResponse;
/**
* @Responses:
* result.status === "SUCCESS"
* - Escrow updated successfully
* - Set the escrow in the context
* - Show a success toast
*
* result.status !== "SUCCESS"
* - Show an error toast
*/
if (result.status === "SUCCESS") {
const escrowUpdated: Escrow = {
...escrow!,
flags: {
disputeFlag: true,
},
};
setEscrow(escrowUpdated);
toast.info("Dispute Started");
setResponse(result);
}
} catch (err) {
toast.error(
err instanceof Error ? err.message : "An unknown error occurred"
);
} finally {
setLoading(false);
}
};
return { form, loading, response, onSubmit };
};
Form
Last updated