This commit is contained in:
focp212@naver.com
2025-09-16 17:40:27 +09:00
parent ee9f56f298
commit bf26e9ff05
21 changed files with 154 additions and 113 deletions

View File

@@ -0,0 +1,29 @@
import axios from 'axios';
import { API_URL_PAYMENT } from '@/shared/api/api-url-payment';
import { resultify } from '@/shared/lib/resultify';
import { CBDCAxiosError } from '@/shared/@types/error';
import {
PaymentCardParams,
PaymentCardResponse
} from '../model/types';
import {
useMutation,
UseMutationOptions
} from '@tanstack/react-query';
export const paymentCard = (params: PaymentCardParams) => {
return resultify(
axios.post<PaymentCardResponse>(API_URL_PAYMENT.paymentCard(), params),
);
};
export const usePaymentCardMutation = (options?: UseMutationOptions<PaymentCardResponse, CBDCAxiosError, PaymentCardParams>) => {
const mutation = useMutation<PaymentCardResponse, CBDCAxiosError, PaymentCardParams>({
...options,
mutationFn: (params: PaymentCardParams) => paymentCard(params),
});
return {
...mutation,
};
};