mirror of
https://github.com/hexastack/hexabot
synced 2025-06-26 18:27:28 +00:00
109 lines
3.1 KiB
TypeScript
109 lines
3.1 KiB
TypeScript
/*
|
|
* Copyright © 2024 Hexastack. All rights reserved.
|
|
*
|
|
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
|
|
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
|
|
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
|
|
*/
|
|
|
|
import axios from "axios";
|
|
import { stringify } from "qs";
|
|
import { useContext, useMemo } from "react";
|
|
|
|
import { ApiClientContext } from "@/contexts/apiClient.context";
|
|
import { useTranslate } from "@/hooks/useTranslate";
|
|
import { ApiClient, EntityApiClient } from "@/services/api.class";
|
|
import { EntityType } from "@/services/types";
|
|
import { IBaseSchema } from "@/types/base.types";
|
|
|
|
import { useLogoutRedirection } from "./useAuth";
|
|
import { useConfig } from "./useConfig";
|
|
import { useToast } from "./useToast";
|
|
|
|
export const useAxiosInstance = () => {
|
|
const { apiUrl } = useConfig();
|
|
const { logoutRedirection } = useLogoutRedirection();
|
|
const { toast } = useToast();
|
|
const { t } = useTranslate();
|
|
const axiosInstance = useMemo(() => {
|
|
const instance = axios.create({
|
|
baseURL: apiUrl,
|
|
withCredentials: true,
|
|
});
|
|
// Added the same Query String (de)Serializer as NestJS,
|
|
|
|
instance.defaults.paramsSerializer = function (params) {
|
|
// config was made with trial and error and reading the docs
|
|
return stringify(params, {
|
|
arrayFormat: "indices",
|
|
charsetSentinel: false,
|
|
skipNulls: true,
|
|
charset: "utf-8",
|
|
});
|
|
};
|
|
|
|
// Response Interceptor
|
|
instance.interceptors.response.use(
|
|
(resp) => resp,
|
|
(error) => {
|
|
if (!error.response) {
|
|
// Optionally redirect to an error page or show a notification
|
|
toast.error(t("message.network_error"));
|
|
|
|
return Promise.reject(new Error("Network error"));
|
|
}
|
|
if (error.response.status === 401) {
|
|
logoutRedirection(true);
|
|
}
|
|
|
|
return Promise.reject(error.response.data);
|
|
},
|
|
);
|
|
|
|
return instance;
|
|
}, [logoutRedirection, toast]);
|
|
|
|
return axiosInstance;
|
|
};
|
|
|
|
export const entityApiClients = new Map();
|
|
|
|
export const getApiClientByEntity = <
|
|
TAttr,
|
|
TStub extends IBaseSchema,
|
|
TFull = never,
|
|
>(
|
|
type: EntityType,
|
|
apiClient: ApiClient,
|
|
) => {
|
|
if (!entityApiClients.has(type)) {
|
|
const client = apiClient.buildEntityClient<TAttr, TStub, TFull>(type);
|
|
|
|
entityApiClients.set(type, client);
|
|
}
|
|
|
|
return entityApiClients.get(type) as EntityApiClient<TAttr, TStub, TFull>;
|
|
};
|
|
|
|
export const useApiClient = (): ApiClientContext => {
|
|
const context = useContext(ApiClientContext);
|
|
|
|
if (!context) {
|
|
throw new Error("useApiClient must be used within an ApiClientContext");
|
|
}
|
|
|
|
return context;
|
|
};
|
|
|
|
export const useEntityApiClient = <
|
|
TAttr,
|
|
TStub extends IBaseSchema,
|
|
TFull = never,
|
|
>(
|
|
type: EntityType,
|
|
) => {
|
|
const { getApiClientByEntity } = useApiClient();
|
|
|
|
return getApiClientByEntity<TAttr, TStub, TFull>(type);
|
|
};
|