mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
31 lines
742 B
JavaScript
31 lines
742 B
JavaScript
import { memoize } from 'lodash';
|
|
import { SECOND } from '../constants/time';
|
|
|
|
const getFetchWithTimeout = memoize((timeout = SECOND * 30) => {
|
|
if (!Number.isInteger(timeout) || timeout < 1) {
|
|
throw new Error('Must specify positive integer timeout.');
|
|
}
|
|
|
|
return async function _fetch(url, opts) {
|
|
const abortController = new window.AbortController();
|
|
const { signal } = abortController;
|
|
const f = window.fetch(url, {
|
|
...opts,
|
|
signal,
|
|
});
|
|
|
|
const timer = setTimeout(() => abortController.abort(), timeout);
|
|
|
|
try {
|
|
const res = await f;
|
|
clearTimeout(timer);
|
|
return res;
|
|
} catch (e) {
|
|
clearTimeout(timer);
|
|
throw e;
|
|
}
|
|
};
|
|
});
|
|
|
|
export default getFetchWithTimeout;
|