**What** - Cleanup of domains - Adds toasts - Adds delete customer hook - Fixes validation of create and update customer endpoints.
110 lines
2.8 KiB
TypeScript
110 lines
2.8 KiB
TypeScript
import {
|
|
AdminCustomerListResponse,
|
|
AdminCustomerResponse,
|
|
DeleteResponse,
|
|
} from "@medusajs/types"
|
|
import {
|
|
QueryKey,
|
|
UseMutationOptions,
|
|
UseQueryOptions,
|
|
useMutation,
|
|
useQuery,
|
|
} from "@tanstack/react-query"
|
|
import { client } from "../../lib/client"
|
|
import { queryClient } from "../../lib/medusa"
|
|
import { queryKeysFactory } from "../../lib/query-key-factory"
|
|
import { CreateCustomerReq, UpdateCustomerReq } from "../../types/api-payloads"
|
|
|
|
const CUSTOMERS_QUERY_KEY = "customers" as const
|
|
export const customersQueryKeys = queryKeysFactory(CUSTOMERS_QUERY_KEY)
|
|
|
|
export const useCustomer = (
|
|
id: string,
|
|
query?: Record<string, any>,
|
|
options?: Omit<
|
|
UseQueryOptions<
|
|
AdminCustomerResponse,
|
|
Error,
|
|
AdminCustomerResponse,
|
|
QueryKey
|
|
>,
|
|
"queryFn" | "queryKey"
|
|
>
|
|
) => {
|
|
const { data, ...rest } = useQuery({
|
|
queryKey: customersQueryKeys.detail(id),
|
|
queryFn: async () => client.customers.retrieve(id, query),
|
|
...options,
|
|
})
|
|
|
|
return { ...data, ...rest }
|
|
}
|
|
|
|
export const useCustomers = (
|
|
query?: Record<string, any>,
|
|
options?: Omit<
|
|
UseQueryOptions<
|
|
AdminCustomerListResponse,
|
|
Error,
|
|
AdminCustomerListResponse,
|
|
QueryKey
|
|
>,
|
|
"queryFn" | "queryKey"
|
|
>
|
|
) => {
|
|
const { data, ...rest } = useQuery({
|
|
queryFn: () => client.customers.list(query),
|
|
queryKey: customersQueryKeys.list(query),
|
|
...options,
|
|
})
|
|
|
|
return { ...data, ...rest }
|
|
}
|
|
|
|
export const useCreateCustomer = (
|
|
options?: UseMutationOptions<AdminCustomerResponse, Error, CreateCustomerReq>
|
|
) => {
|
|
return useMutation({
|
|
mutationFn: (payload) => client.customers.create(payload),
|
|
onSuccess: (data, variables, context) => {
|
|
queryClient.invalidateQueries({ queryKey: customersQueryKeys.lists() })
|
|
options?.onSuccess?.(data, variables, context)
|
|
},
|
|
...options,
|
|
})
|
|
}
|
|
|
|
export const useUpdateCustomer = (
|
|
id: string,
|
|
options?: UseMutationOptions<AdminCustomerResponse, Error, UpdateCustomerReq>
|
|
) => {
|
|
return useMutation({
|
|
mutationFn: (payload) => client.customers.update(id, payload),
|
|
onSuccess: (data, variables, context) => {
|
|
queryClient.invalidateQueries({ queryKey: customersQueryKeys.lists() })
|
|
queryClient.invalidateQueries({ queryKey: customersQueryKeys.detail(id) })
|
|
|
|
options?.onSuccess?.(data, variables, context)
|
|
},
|
|
...options,
|
|
})
|
|
}
|
|
|
|
export const useDeleteCustomer = (
|
|
id: string,
|
|
options?: UseMutationOptions<DeleteResponse, Error, void>
|
|
) => {
|
|
return useMutation({
|
|
mutationFn: () => client.customers.delete(id),
|
|
onSuccess: (data, variables, context) => {
|
|
queryClient.invalidateQueries({ queryKey: customersQueryKeys.lists() })
|
|
queryClient.invalidateQueries({
|
|
queryKey: customersQueryKeys.detail(id),
|
|
})
|
|
|
|
options?.onSuccess?.(data, variables, context)
|
|
},
|
|
...options,
|
|
})
|
|
}
|