All files / src/components/Merchants/MerchantPreview/hooks useListParentBankAccounts.ts

100% Statements 11/11
33.33% Branches 1/3
100% Functions 4/4
100% Lines 11/11

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40        42x             39x   39x 2x           39x     2x   1x             39x 39x 3x     39x    
import { customInstance } from "@services/api";
import { UseQueryOptions, useQuery } from "react-query";
import { useMerchantBankAccountsParser } from "../helpers/parsers";
 
export const useListParentBankAccounts = (
  parentAccID: number,
  options: Omit<
    UseQueryOptions<any, any, any, any>,
    "queryKey" | "queryFn"
  > = {},
) => {
  const { merchantBankAccountsParser } = useMerchantBankAccountsParser();
 
  const getMerchantBankAccounts = (id: number) => {
    return customInstance({
      url: `/merchants/${id}/bank-accounts`,
      method: "GET",
    });
  };
 
  const { data, isLoading } = useQuery(
    ["get-parent-bank-accounts", parentAccID],
    async () => {
      const bankAccounts = await getMerchantBankAccounts(parentAccID);
 
      return {
        bankAccounts: bankAccounts.data || [],
      };
    },
    { refetchOnWindowFocus: false, refetchOnMount: false, ...options },
  );
 
  const bankAccountList = merchantBankAccountsParser(data?.bankAccounts, true);
  const firstApprovedBankAccount = bankAccountList?.find(
    (b) => b.status === "approved",
  );
 
  return { bankAccountList, firstApprovedBankAccount, isLoading };
};