fix(client): On mount async method should always be called.

This commit is contained in:
Sam 2022-05-23 22:21:23 +02:00
parent 9569df4e98
commit 912e405229
No known key found for this signature in database
GPG Key ID: D004126FCD1A6DF0

View File

@ -20,23 +20,18 @@ const MountEvents = ({ children, context, triggerEvent, triggerEventAsync }) =>
const [loading, setLoading] = useState(true);
const [error, setError] = useState(null);
useEffect(() => {
let mounted = true;
setLoading(true);
const mount = async () => {
try {
await triggerEvent();
if (mounted) {
triggerEventAsync();
setLoading(false);
}
triggerEventAsync();
setLoading(false);
} catch (err) {
setError(err);
}
};
mount(); // TODO: check only run once.
return () => {
mounted = false;
};
return () => {};
}, [context]);
if (error) throw error;