I’m having trouble getting my loading status to appear before the longRunningCode executes. I tried making it async to no avail.
const [loadingStatus, setLoadingStatus] = useState(undefined);
const [myAction, setMyAction] = useState(undefined);
useEffect(async () => {
if (myAction) {
setLoadingStatus('Do the thing...')
const result = await longRunningCode()
// ...
setLoadingStatus(undefined)
setMyAction(undefined)
}
}, [myAction])
//...
return <p>{loadingStatus}</p><button onClick={() => setMyAction({})} />