forked from github/plane
febf19ccc0
* feat: changemod space * fix: space app dir fixes * fix: build errors
57 lines
1.4 KiB
TypeScript
57 lines
1.4 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
import axios, { AxiosInstance } from "axios";
|
|
// store
|
|
// import { rootStore } from "@/lib/store-context";
|
|
|
|
abstract class APIService {
|
|
protected baseURL: string;
|
|
private axiosInstance: AxiosInstance;
|
|
|
|
constructor(baseURL: string) {
|
|
this.baseURL = baseURL;
|
|
this.axiosInstance = axios.create({
|
|
baseURL,
|
|
withCredentials: true,
|
|
});
|
|
|
|
this.setupInterceptors();
|
|
}
|
|
|
|
private setupInterceptors() {
|
|
// this.axiosInstance.interceptors.response.use(
|
|
// (response) => response,
|
|
// (error) => {
|
|
// const store = rootStore;
|
|
// if (error.response && error.response.status === 401 && store.user.data) store.user.reset();
|
|
// return Promise.reject(error);
|
|
// }
|
|
// );
|
|
}
|
|
|
|
get(url: string, params = {}) {
|
|
return this.axiosInstance.get(url, { params });
|
|
}
|
|
|
|
post(url: string, data: any, config = {}) {
|
|
return this.axiosInstance.post(url, data, config);
|
|
}
|
|
|
|
put(url: string, data: any, config = {}) {
|
|
return this.axiosInstance.put(url, data, config);
|
|
}
|
|
|
|
patch(url: string, data: any, config = {}) {
|
|
return this.axiosInstance.patch(url, data, config);
|
|
}
|
|
|
|
delete(url: string, data?: any, config = {}) {
|
|
return this.axiosInstance.delete(url, { data, ...config });
|
|
}
|
|
|
|
request(config = {}) {
|
|
return this.axiosInstance(config);
|
|
}
|
|
}
|
|
|
|
export default APIService;
|