mirror of
https://github.com/rjNemo/melon_frontend
synced 2026-06-06 02:16:45 +00:00
50 lines
1.1 KiB
TypeScript
50 lines
1.1 KiB
TypeScript
import axios from 'axios';
|
|
import { Bill, BillForm } from '../types/bill';
|
|
|
|
const BASE_URL = process.env.REACT_APP_API_URL;
|
|
const client = axios.create({ baseURL: BASE_URL });
|
|
|
|
export const createBill = async (data: BillForm) => {
|
|
try {
|
|
const { data: response } = await client.post<number>('/', data);
|
|
return response;
|
|
} catch (error) {
|
|
console.error(error);
|
|
return 0;
|
|
}
|
|
};
|
|
|
|
type Response<T> = {
|
|
data?: T;
|
|
error?: any;
|
|
};
|
|
|
|
export const fetchOneBill = async (id: number): Promise<Response<Bill>> => {
|
|
try {
|
|
const { data } = await client.get<Bill>(`/${id}`);
|
|
return { data };
|
|
} catch (error) {
|
|
console.error(error);
|
|
return { error };
|
|
}
|
|
};
|
|
|
|
export const fetchAllBills = async () => {
|
|
try {
|
|
const { data } = await client.get<Bill[]>('/');
|
|
return data;
|
|
} catch (error) {
|
|
console.error(error);
|
|
return [] as Bill[];
|
|
}
|
|
};
|
|
|
|
export const sendBillAsPDF = async (id: number) => {
|
|
try {
|
|
const { data } = await client.post<boolean>(`/${id}/send`);
|
|
return data;
|
|
} catch (error) {
|
|
console.error(error);
|
|
return false;
|
|
}
|
|
};
|