Created
April 3, 2020 23:32
-
-
Save kentcdodds/b36572b6e9227207e6c71fd80e63f3b4 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
| function useAbortController() { | |
| const abortControllerRef = React.useRef() | |
| const getAbortController = React.useCallback(() => { | |
| if (!abortControllerRef.current) { | |
| abortControllerRef.current = new AbortController() | |
| } | |
| return abortControllerRef.current | |
| }, []) | |
| React.useEffect(() => { | |
| return () => getAbortController().abort() | |
| }, [getAbortController]) | |
| const getSignal = React.useCallback(() => getAbortController().signal, [ | |
| getAbortController, | |
| ]) | |
| return getSignal | |
| } |
Hmm good point, I may have overdone it with the get signal() { ... } haha
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@rejhgadellaa that code has
get signal() { return getAbortController().signal; }and thenconst { abort, signal } = useAbortController();I think it will call getter right away, why not just
in versions above controller is created only when fetch is issued,
for example if there is some button that issues a request, we do not need abortController until it is pressed