mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-30 08:09:15 +01:00
34 lines
1.0 KiB
JavaScript
34 lines
1.0 KiB
JavaScript
|
import { useEffect } from 'react';
|
||
|
import {
|
||
|
disconnectGasFeeEstimatePoller,
|
||
|
getGasFeeEstimatesAndStartPolling,
|
||
|
} from '../store/actions';
|
||
|
|
||
|
/**
|
||
|
* Provides a reusable hook that can be used for safely updating the polling
|
||
|
* data in the gas fee controller. It makes a request to get estimates and
|
||
|
* begin polling, keeping track of the poll token for the lifetime of the hook.
|
||
|
* It then disconnects polling upon unmount. If the hook is unmounted while waiting
|
||
|
* for `getGasFeeEstimatesAndStartPolling` to resolve, the `active` flag ensures
|
||
|
* that a call to disconnect happens after promise resolution.
|
||
|
*/
|
||
|
export function useSafeGasEstimatePolling() {
|
||
|
useEffect(() => {
|
||
|
let active = true;
|
||
|
let pollToken;
|
||
|
getGasFeeEstimatesAndStartPolling().then((newPollToken) => {
|
||
|
if (active) {
|
||
|
pollToken = newPollToken;
|
||
|
} else {
|
||
|
disconnectGasFeeEstimatePoller(newPollToken);
|
||
|
}
|
||
|
});
|
||
|
return () => {
|
||
|
active = false;
|
||
|
if (pollToken) {
|
||
|
disconnectGasFeeEstimatePoller(pollToken);
|
||
|
}
|
||
|
};
|
||
|
}, []);
|
||
|
}
|