2022-09-12 22:08:34 +00:00
|
|
|
import axios from 'axios';
|
2022-09-12 22:18:21 +00:00
|
|
|
import Vue from 'vue';
|
2022-09-12 22:08:34 +00:00
|
|
|
|
|
|
|
class AxiosPlugin {
|
2022-09-12 22:18:21 +00:00
|
|
|
public install(vue: typeof Vue) {
|
2022-09-12 22:08:34 +00:00
|
|
|
// Full config: https://github.com/axios/axios#request-config
|
|
|
|
// axios.defaults.baseURL = process.env.baseURL || process.env.apiUrl || '';
|
|
|
|
// axios.defaults.headers.common['Authorization'] = AUTH_TOKEN;
|
|
|
|
// axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded';
|
|
|
|
|
|
|
|
const config = {
|
|
|
|
// baseURL: process.env.baseURL || process.env.apiUrl || ""
|
|
|
|
// timeout: 60 * 1000, // Timeout
|
|
|
|
// withCredentials: true, // Check cross-site Access-Control
|
|
|
|
};
|
|
|
|
|
|
|
|
const _axios = axios.create(config);
|
|
|
|
|
|
|
|
_axios.interceptors.request.use(
|
|
|
|
function (config) {
|
|
|
|
// Do something before request is sent
|
|
|
|
return config;
|
|
|
|
},
|
|
|
|
function (error) {
|
|
|
|
// Do something with request error
|
|
|
|
return Promise.reject(error);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
// Add a response interceptor
|
|
|
|
_axios.interceptors.response.use(
|
|
|
|
function (response) {
|
|
|
|
// Do something with response data
|
|
|
|
return response;
|
|
|
|
},
|
|
|
|
function (error) {
|
|
|
|
// Do something with response error
|
|
|
|
return Promise.reject(error);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2022-09-12 22:18:21 +00:00
|
|
|
vue.prototype.$axios = _axios;
|
2022-09-12 22:08:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default new AxiosPlugin();
|