Created
June 16, 2020 19:54
-
-
Save vanaf1979/09773a670af1b38704a139fae4c5236b to your computer and use it in GitHub Desktop.
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 React, {useState, useEffect} from "react"; | |
import axios from "axios"; | |
const ComponentWithRequest = props => { | |
const [apiData, setApiData] = useState(null); | |
useEffect(() => { | |
const source = axios.CancelToken.source(); | |
axios.get("https://jsonplaceholder.typicode.com/todos", { | |
cancelToken: source.token | |
}).then(response => { | |
setApiData(response.data); | |
}).catch(err => { | |
console.log("Catched error: " + e.message); | |
}); | |
props.toggleMounted(); | |
return () => { | |
source.cancel("Component got unmounted"); | |
}; | |
}, [props]); | |
return ( | |
<div className="box"> | |
<p>I will immediately get unmounted.</p> | |
</div> | |
); | |
}; | |
export default ComponentWithRequest; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment