I have a context that is used to show a full page spinner while my application is performing long running tasks.
When I attempt to access it inside useEffect
I get a the react-hooks/exhaustive-deps
ESLint message. For example the following code, although it works as expected, states that busyIndicator
is a missing dependency:
const busyIndicator = useContext(GlobalBusyIndicatorContext);
useEffect(() => {
busyIndicator.show('Please wait...');
}, []);
This article suggests that I could wrap the function with useCallback
which might look as follows:
const busyIndicator = useContext(GlobalBusyIndicatorContext);
const showBusyIndicator = useCallback(() => busyIndicator.show('Please wait...'), []);
useEffect(() => {
showBusyIndicator();
}, [showBusyIndicator]);
Although this works it has moved the issue to the useCallback
line which now complains about the missing dependency.
Is it ok to ignore the ESLint message in this scenario or am I missing the something?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…