0.1.4 • Published 3 years ago

@aesoper/axios-wrapper v0.1.4

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Axios-wrapper

wrapper for Axios.

Using

init axios in main.ts

const config: Config = {
  // baseURL: import.meta.env.VITE_BASE_URL,
  withCredentials: true,
  // 3000ms
  timeout: 3000,
};

setUpHttp(config)

OR

import { createApp } from "vue";
import App from "./App.vue";
import AxiosPlugin, { Config, AxiosInterceptorConfig, HttpError } from "@aesoper/axios-wrapper";

const config: Config = {
  withCredentials: true,
  // 3000ms
  timeout: 3000,
};

const interceptors: AxiosInterceptorConfig = {
  requestInterceptor: [
    {
      onFulfilled: (value) => {
        console.log("----------");
        return value;
      },
      onRejected: (error) => console.log(error),
    },
    {
      onFulfilled: (value) => {
        console.log("=========");
        value.params = { id: 2 };
        return Promise.resolve(value);
      },
      onRejected: (error) => console.log(error),
    },
  ],
  responseInterceptor: [
    {
      onFulfilled: (value) => Promise.resolve(value),
      onRejected: (error: HttpError) => console.log(111, error.message),
    },
    {
      onFulfilled: (value) => Promise.resolve(value),
      onRejected: (error) => console.log(222, error),
    },
  ],
};

createApp(App)
  .use(AxiosPlugin, { ...config, ...interceptors })
  .mount("#app");

Now you can call this function useClient anywhere

const http = useClient();

http.get("http://xxxx.com/");
0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago