* feat: Add price preference to sdk * feat: Plug tax inclusivity settings for region in UI * feat: Add price inclusivity indicator to variant and shipping price table columns * fix: Rename price title to correct variable name * feat: Add support for tax inclusive crud on region * fix: Use the region endpoint for updating tax inclusivity * chore: Factor out price columns from hooks
114 lines
2.9 KiB
TypeScript
114 lines
2.9 KiB
TypeScript
import { FetchError } from "@medusajs/js-sdk"
|
|
import { HttpTypes } from "@medusajs/types"
|
|
import {
|
|
QueryKey,
|
|
UseMutationOptions,
|
|
UseQueryOptions,
|
|
useMutation,
|
|
useQuery,
|
|
} from "@tanstack/react-query"
|
|
import { sdk } from "../../lib/client"
|
|
import { queryClient } from "../../lib/query-client"
|
|
import { queryKeysFactory } from "../../lib/query-key-factory"
|
|
|
|
const PRICE_PREFERENCES_QUERY_KEY = "price-preferences" as const
|
|
export const pricePreferencesQueryKeys = queryKeysFactory(
|
|
PRICE_PREFERENCES_QUERY_KEY
|
|
)
|
|
|
|
export const usePricePreference = (
|
|
id: string,
|
|
query?: HttpTypes.AdminPricePreferenceParams,
|
|
options?: Omit<
|
|
UseQueryOptions<
|
|
HttpTypes.AdminPricePreferenceResponse,
|
|
FetchError,
|
|
HttpTypes.AdminPricePreferenceResponse,
|
|
QueryKey
|
|
>,
|
|
"queryKey" | "queryFn"
|
|
>
|
|
) => {
|
|
const { data, ...rest } = useQuery({
|
|
queryFn: () => sdk.admin.pricePreference.retrieve(id, query),
|
|
queryKey: pricePreferencesQueryKeys.detail(id),
|
|
...options,
|
|
})
|
|
|
|
return { ...data, ...rest }
|
|
}
|
|
|
|
export const usePricePreferences = (
|
|
query?: HttpTypes.AdminPricePreferenceListParams,
|
|
options?: Omit<
|
|
UseQueryOptions<
|
|
HttpTypes.AdminPricePreferenceListResponse,
|
|
FetchError,
|
|
HttpTypes.AdminPricePreferenceListResponse,
|
|
QueryKey
|
|
>,
|
|
"queryKey" | "queryFn"
|
|
>
|
|
) => {
|
|
const { data, ...rest } = useQuery({
|
|
queryFn: () => sdk.admin.pricePreference.list(query),
|
|
queryKey: pricePreferencesQueryKeys.list(query),
|
|
...options,
|
|
})
|
|
|
|
return { ...data, ...rest }
|
|
}
|
|
|
|
export const useUpsertPricePreference = (
|
|
id?: string | undefined,
|
|
query?: HttpTypes.AdminPricePreferenceParams,
|
|
options?: UseMutationOptions<
|
|
HttpTypes.AdminPricePreferenceResponse,
|
|
FetchError,
|
|
HttpTypes.AdminUpdatePricePreference | HttpTypes.AdminCreatePricePreference
|
|
>
|
|
) => {
|
|
return useMutation({
|
|
mutationFn: (payload) => {
|
|
if (id) {
|
|
return sdk.admin.pricePreference.update(id, payload, query)
|
|
}
|
|
return sdk.admin.pricePreference.create(payload, query)
|
|
},
|
|
onSuccess: (data, variables, context) => {
|
|
queryClient.invalidateQueries({
|
|
queryKey: pricePreferencesQueryKeys.list(),
|
|
})
|
|
if (id) {
|
|
queryClient.invalidateQueries({
|
|
queryKey: pricePreferencesQueryKeys.detail(id),
|
|
})
|
|
}
|
|
|
|
options?.onSuccess?.(data, variables, context)
|
|
},
|
|
...options,
|
|
})
|
|
}
|
|
|
|
export const useDeletePricePreference = (
|
|
id: string,
|
|
options?: UseMutationOptions<
|
|
HttpTypes.AdminPricePreferenceDeleteResponse,
|
|
FetchError,
|
|
void
|
|
>
|
|
) => {
|
|
return useMutation({
|
|
mutationFn: () => sdk.admin.pricePreference.delete(id),
|
|
onSuccess: (data, variables, context) => {
|
|
queryClient.invalidateQueries({
|
|
queryKey: pricePreferencesQueryKeys.list(),
|
|
})
|
|
|
|
options?.onSuccess?.(data, variables, context)
|
|
},
|
|
...options,
|
|
})
|
|
}
|