79 lines
2.4 KiB
TypeScript
79 lines
2.4 KiB
TypeScript
import axios, { AxiosInstance } from 'axios';
|
|
import { boot } from 'quasar/wrappers';
|
|
import { getToken } from 'src/services/keycloak';
|
|
import { dialog } from 'stores/utils';
|
|
import useLoader from 'stores/loader';
|
|
import useFlowStore from 'src/stores/flow';
|
|
|
|
declare module '@vue/runtime-core' {
|
|
interface ComponentCustomProperties {
|
|
$axios: AxiosInstance;
|
|
$api: AxiosInstance;
|
|
}
|
|
}
|
|
|
|
// Be careful when using SSR for cross-request state pollution
|
|
// due to creating a Singleton instance here;
|
|
// If any client changes this (global) instance, it might be a
|
|
// good idea to move this instance creation inside of the
|
|
// "export default () => {}" function below (which runs individually
|
|
// for each client)
|
|
const api = axios.create({ baseURL: import.meta.env.VITE_API_BASE_URL });
|
|
|
|
function parseError(
|
|
status: number,
|
|
body?: { status: number; message: string; code: string },
|
|
) {
|
|
if (status === 422) return 'invalideData';
|
|
if (body && body.code) return body.code;
|
|
|
|
return 'errorOccure';
|
|
}
|
|
|
|
api.interceptors.request.use(async (config) => {
|
|
useLoader().show();
|
|
config.headers.Authorization = `Bearer ${await getToken()}`;
|
|
config.headers['X-Rtid'] = useFlowStore().rtid;
|
|
return config;
|
|
});
|
|
|
|
api.interceptors.response.use(
|
|
(res) => {
|
|
useLoader().hide();
|
|
return res;
|
|
},
|
|
(err) => {
|
|
useLoader().hide();
|
|
dialog({
|
|
color:
|
|
err.response.status >= 400 && err.response.status < 500
|
|
? 'warning'
|
|
: 'negative',
|
|
icon: 'mdi-alert',
|
|
title:
|
|
err.response.status >= 400 && err.response.status < 500
|
|
? 'form.warning.title'
|
|
: 'form.error.title',
|
|
persistent: true,
|
|
enablei18n: true,
|
|
message: `dialog.backend.${parseError(err.response.status, err.response.data)}`,
|
|
action: () => {
|
|
if (err.response.status === 401) window.location.reload();
|
|
},
|
|
});
|
|
},
|
|
);
|
|
|
|
export default boot(({ app }) => {
|
|
// for use inside Vue files (Options API) through this.$axios and this.$api
|
|
|
|
app.config.globalProperties.$axios = axios;
|
|
// ^ ^ ^ this will allow you to use this.$axios (for Vue Options API form)
|
|
// so you won't necessarily have to import axios in each vue file
|
|
|
|
app.config.globalProperties.$api = api;
|
|
// ^ ^ ^ this will allow you to use this.$api (for Vue Options API form)
|
|
// so you can easily perform requests against your app's API
|
|
});
|
|
|
|
export { api };
|