mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
58bf056ddb
* fix: login redirection * dev: log the user out when deactivating the account * dev: update redirect uris for google and github * fix: redirection url and invitation api and add redirection to god mode in nginx * dev: add reset password redirection * dev: update nginx headers * dev: fix setup sh and env example and put validation for use minio when fetching project covers * dev: stabilize dev setup * fix: handled redirection error in web, space, and admin apps * fix: resovled build errors --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
54 lines
1.7 KiB
TypeScript
54 lines
1.7 KiB
TypeScript
import axios, { AxiosInstance, AxiosRequestConfig, AxiosResponse } from "axios";
|
|
// store
|
|
import { rootStore } from "@/lib/store-context";
|
|
|
|
export 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.currentUser) store.user.reset();
|
|
return Promise.reject(error);
|
|
}
|
|
);
|
|
}
|
|
|
|
get<ResponseType>(url: string, params = {}): Promise<AxiosResponse<ResponseType>> {
|
|
return this.axiosInstance.get(url, { params });
|
|
}
|
|
|
|
post<RequestType, ResponseType>(url: string, data: RequestType, config = {}): Promise<AxiosResponse<ResponseType>> {
|
|
return this.axiosInstance.post(url, data, config);
|
|
}
|
|
|
|
put<RequestType, ResponseType>(url: string, data: RequestType, config = {}): Promise<AxiosResponse<ResponseType>> {
|
|
return this.axiosInstance.put(url, data, config);
|
|
}
|
|
|
|
patch<RequestType, ResponseType>(url: string, data: RequestType, config = {}): Promise<AxiosResponse<ResponseType>> {
|
|
return this.axiosInstance.patch(url, data, config);
|
|
}
|
|
|
|
delete<RequestType>(url: string, data?: RequestType, config = {}) {
|
|
return this.axiosInstance.delete(url, { data, ...config });
|
|
}
|
|
|
|
request<T>(config: AxiosRequestConfig = {}): Promise<AxiosResponse<T>> {
|
|
return this.axiosInstance(config);
|
|
}
|
|
}
|