PromucFlow_constructor/app/client/src/api/Api.tsx
Nikhil Nandagopal be5c516db8 added json path
added action interfaces
2019-09-12 16:49:38 +05:30

69 lines
1.8 KiB
TypeScript

import _ from "lodash"
import {
BASE_URL,
REQUEST_TIMEOUT_MS,
REQUEST_HEADERS
} from "../constants/ApiConstants"
const axios = require("axios")
const axiosInstance = axios.create({
baseURL: BASE_URL,
timeout: REQUEST_TIMEOUT_MS,
headers: REQUEST_HEADERS
})
axiosInstance.interceptors.response.use(
function(response: any) {
// Do something with response data
return response.data
},
function(error: any) {
if (error.response) {
// The request was made and the server responded with a status code
// that falls out of the range of 2xx
console.log(error.response.data)
console.log(error.response.status)
console.log(error.response.headers)
} else if (error.request) {
// The request was made but no response was received
// `error.request` is an instance of XMLHttpRequest in the browser and an instance of
// http.ClientRequest in node.js
console.log(error.request)
} else {
// Something happened in setting up the request that triggered an Error
console.log("Error", error.message)
}
console.log(error.config)
return Promise.reject(error)
}
)
class Api {
static get(url: string, queryParams: any) {
return axiosInstance.get(url + this.convertObjectToQueryParams(queryParams))
}
static post(url: string, queryParams?: any, body?: any) {
return axiosInstance.post(
url + this.convertObjectToQueryParams(queryParams),
body
)
}
static convertObjectToQueryParams(object: any): string {
if (!_.isNil(object)) {
const paramArray: string[] = _.map(_.keys(object), key => {
return encodeURIComponent(key) + "=" + encodeURIComponent(object[key])
})
return "?" + _.join(paramArray, "&")
} else {
return ""
}
}
}
export type HttpMethod = "GET" | "POST" | "PUT" | "DELETE"
export default Api