Last active
August 8, 2024 04:25
-
-
Save paulsturgess/ebfae1d1ac1779f18487d3dee80d1258 to your computer and use it in GitHub Desktop.
An example Service class wrapper for Axios
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import axios from 'axios'; | |
class Service { | |
constructor() { | |
let service = axios.create({ | |
headers: {csrf: 'token'} | |
}); | |
service.interceptors.response.use(this.handleSuccess, this.handleError); | |
this.service = service; | |
} | |
handleSuccess(response) { | |
return response; | |
} | |
handleError = (error) => { | |
switch (error.response.status) { | |
case 401: | |
this.redirectTo(document, '/') | |
break; | |
case 404: | |
this.redirectTo(document, '/404') | |
break; | |
default: | |
this.redirectTo(document, '/500') | |
break; | |
} | |
return Promise.reject(error) | |
} | |
redirectTo = (document, path) => { | |
document.location = path | |
} | |
get(path, callback) { | |
return this.service.get(path).then( | |
(response) => callback(response.status, response.data) | |
); | |
} | |
patch(path, payload, callback) { | |
return this.service.request({ | |
method: 'PATCH', | |
url: path, | |
responseType: 'json', | |
data: payload | |
}).then((response) => callback(response.status, response.data)); | |
} | |
post(path, payload, callback) { | |
return this.service.request({ | |
method: 'POST', | |
url: path, | |
responseType: 'json', | |
data: payload | |
}).then((response) => callback(response.status, response.data)); | |
} | |
} | |
export default new Service; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Sovai if any time you need to change the axios for XYZ reasons you don't have to do it manually in all of your requests you can change it in a single file. It will save your time and efforts