37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
JavaScript
import { fetchUtils } from 'react-admin'
|
|
import { v4 as uuidv4 } from 'uuid'
|
|
import { baseUrl } from '../utils'
|
|
import config from '../config'
|
|
import { jwtDecode } from 'jwt-decode'
|
|
import { removeHomeCache } from '../utils/removeHomeCache'
|
|
|
|
const customAuthorizationHeader = 'X-ND-Authorization'
|
|
const clientUniqueIdHeader = 'X-ND-Client-Unique-Id'
|
|
const clientUniqueId = uuidv4()
|
|
|
|
const httpClient = (url, options = {}) => {
|
|
url = baseUrl(url)
|
|
if (!options.headers) {
|
|
options.headers = new Headers({ Accept: 'application/json' })
|
|
}
|
|
options.headers.set(clientUniqueIdHeader, clientUniqueId)
|
|
const token = localStorage.getItem('token')
|
|
if (token) {
|
|
options.headers.set(customAuthorizationHeader, `Bearer ${token}`)
|
|
}
|
|
return fetchUtils.fetchJson(url, options).then((response) => {
|
|
const token = response.headers.get(customAuthorizationHeader)
|
|
if (token) {
|
|
const decoded = jwtDecode(token)
|
|
localStorage.setItem('token', token)
|
|
localStorage.setItem('userId', decoded.uid)
|
|
// Avoid going to create admin dialog after logout/login without a refresh
|
|
config.firstTime = false
|
|
removeHomeCache()
|
|
}
|
|
return response
|
|
})
|
|
}
|
|
|
|
export default httpClient
|