import { Axios, AxiosError } from "axios"; import { Credentials, Token, User, Flight, FlightCreate } from "./Types"; const instance = new Axios({ baseURL: process.env.REACT_APP_ENDPOINT ? process.env.REACT_APP_ENDPOINT : "http://127.0.0.1:5000/", headers: { accept: "application/json", "Content-Type": "application/json", }, validateStatus: (x) => { return !(x < 200 || x > 204) } }); instance.interceptors.request.use((request) => { request.data = JSON.stringify(request.data); return request; }); instance.interceptors.response.use( (response) => { console.log(response.headers) if (response.headers["x-count"]) { let json: any = {} json["flights"] = JSON.parse(response.data); json["count"] = response.headers["x-count"] console.log(json) return json } return JSON.parse(response.data); }, (error) => { const err = error as AxiosError; return Promise.reject(err); } ); export const createUser = ( credentials: Credentials ): Promise<{ id?: string; message: string }> => { return instance.post("users", credentials); }; export const fetchUserById = (id: number, token: string): Promise => { return instance.get("users/" + id, { headers: { Authorization: `Bearer ${token}` }, }); }; export const logIn = ( credentials: Credentials ): Promise> => { return instance.post("auth/login", credentials); }; export const tokenStatus = ( token: string ): Promise => { return instance.get("auth/status", { headers: { Authorization: `Bearer ${token}` }, }); }; interface FlightData { flights: Flight[] count: number } export const fetchFlights = (origin: string | null, page: number | null): Promise => { return instance.get("flights" + (origin ? "?origin=" + origin : "") + (page ? "?page=" + page : "")) }; export const createFlight = ( flight_data: FlightCreate, token: string ): Promise => { return instance.post("flights", flight_data, { headers: { Authorization: `Bearer ${token}` }, }); };