34 lines
962 B
TypeScript
34 lines
962 B
TypeScript
import axios from 'axios';
|
|
import { API_URL } from '@/shared/api/urls';
|
|
import { resultify } from '@/shared/lib/resultify';
|
|
import { CBDCAxiosError } from '@/shared/@types/error';
|
|
import {
|
|
CodesGroupByCodeClParams,
|
|
CodesGroupByCodeClResponse
|
|
} from '../model/types';
|
|
import {
|
|
useMutation,
|
|
UseMutationOptions
|
|
} from '@tanstack/react-query';
|
|
|
|
export const codesGroupByCodeCl = ({ codeCl }: CodesGroupByCodeClParams) => {
|
|
return resultify(
|
|
axios.get<CodesGroupByCodeClResponse>(API_URL.codesGroupByCodeCl(codeCl)),
|
|
);
|
|
};
|
|
|
|
export const useCodesGroupByCodeClMutation = (options?: UseMutationOptions<CodesGroupByCodeClResponse, CBDCAxiosError, CodesGroupByCodeClParams>) => {
|
|
const mutation = useMutation<CodesGroupByCodeClResponse, CBDCAxiosError, CodesGroupByCodeClParams>({
|
|
...options,
|
|
mutationFn: ({
|
|
codeCl
|
|
}: CodesGroupByCodeClParams) => codesGroupByCodeCl({
|
|
codeCl
|
|
}),
|
|
});
|
|
|
|
return {
|
|
...mutation,
|
|
};
|
|
};
|