Last active
June 9, 2019 13:32
-
-
Save ajcastro/73363f737b27890b0d5aa9e88f872a8e to your computer and use it in GitHub Desktop.
This file contains hidden or 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' | |
export default class Cancellable { | |
constructor(cancelMessage) { | |
this.cancelMessage = cancelMessage | |
this.cancelToken = null | |
} | |
axios(fn) { | |
if (this.cancelToken) { | |
this.cancelToken.cancel(this.cancelMessage) | |
this.cancelToken = null | |
} | |
this.cancelToken = axios.CancelToken.source() | |
fn(this.cancelToken) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment