2021-04-06 17:38:12 +00:00
|
|
|
export class TimeoutError extends Error {
|
2016-10-21 06:42:17 +00:00
|
|
|
constructor(message) {
|
|
|
|
super(message);
|
2017-05-14 14:59:23 +00:00
|
|
|
this.name = 'TimeoutError';
|
2016-10-21 06:42:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-26 16:57:52 +00:00
|
|
|
/**
|
|
|
|
An error to be thrown when the request is aborted by AbortController.
|
|
|
|
DOMException is thrown instead of this Error when DOMException is available.
|
|
|
|
*/
|
|
|
|
export class AbortError extends Error {
|
|
|
|
constructor(message) {
|
|
|
|
super();
|
|
|
|
this.name = 'AbortError';
|
|
|
|
this.message = message;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
TODO: Remove AbortError and just throw DOMException when targeting Node 18.
|
|
|
|
*/
|
2022-07-25 16:24:32 +00:00
|
|
|
const getDOMException = errorMessage => globalThis.DOMException === undefined
|
|
|
|
? new AbortError(errorMessage)
|
|
|
|
: new DOMException(errorMessage);
|
2022-05-26 16:57:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
TODO: Remove below function and just 'reject(signal.reason)' when targeting Node 18.
|
|
|
|
*/
|
|
|
|
const getAbortedReason = signal => {
|
2022-07-25 16:24:32 +00:00
|
|
|
const reason = signal.reason === undefined
|
|
|
|
? getDOMException('This operation was aborted.')
|
|
|
|
: signal.reason;
|
2022-05-26 16:57:52 +00:00
|
|
|
|
|
|
|
return reason instanceof Error ? reason : getDOMException(reason);
|
|
|
|
};
|
|
|
|
|
2022-07-25 16:16:27 +00:00
|
|
|
export default function pTimeout(promise, options) {
|
2022-07-25 16:24:32 +00:00
|
|
|
const {
|
|
|
|
milliseconds,
|
|
|
|
fallback,
|
|
|
|
message,
|
|
|
|
customTimers = {setTimeout, clearTimeout},
|
|
|
|
} = options;
|
|
|
|
|
2020-12-26 10:42:06 +00:00
|
|
|
let timer;
|
2022-05-26 16:57:52 +00:00
|
|
|
|
2020-12-26 10:42:06 +00:00
|
|
|
const cancelablePromise = new Promise((resolve, reject) => {
|
2021-10-23 13:54:29 +00:00
|
|
|
if (typeof milliseconds !== 'number' || Math.sign(milliseconds) !== 1) {
|
2021-10-08 06:15:55 +00:00
|
|
|
throw new TypeError(`Expected \`milliseconds\` to be a positive number, got \`${milliseconds}\``);
|
2020-12-26 10:42:06 +00:00
|
|
|
}
|
2016-10-21 06:42:17 +00:00
|
|
|
|
2021-04-06 17:38:12 +00:00
|
|
|
if (milliseconds === Number.POSITIVE_INFINITY) {
|
2020-12-26 10:42:06 +00:00
|
|
|
resolve(promise);
|
|
|
|
return;
|
|
|
|
}
|
2019-09-17 15:09:28 +00:00
|
|
|
|
2022-05-26 16:57:52 +00:00
|
|
|
if (options.signal) {
|
|
|
|
const {signal} = options;
|
|
|
|
if (signal.aborted) {
|
|
|
|
reject(getAbortedReason(signal));
|
|
|
|
}
|
|
|
|
|
|
|
|
signal.addEventListener('abort', () => {
|
|
|
|
reject(getAbortedReason(signal));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-07-25 16:24:32 +00:00
|
|
|
timer = customTimers.setTimeout.call(undefined, () => {
|
2022-07-25 16:16:27 +00:00
|
|
|
if (fallback) {
|
2020-12-26 10:42:06 +00:00
|
|
|
try {
|
|
|
|
resolve(fallback());
|
|
|
|
} catch (error) {
|
|
|
|
reject(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
2017-11-28 20:05:54 +00:00
|
|
|
}
|
2019-03-12 08:17:11 +00:00
|
|
|
|
2022-07-25 16:16:27 +00:00
|
|
|
const errorMessage = typeof message === 'string' ? message : `Promise timed out after ${milliseconds} milliseconds`;
|
|
|
|
const timeoutError = message instanceof Error ? message : new TimeoutError(errorMessage);
|
2016-10-21 06:42:17 +00:00
|
|
|
|
2020-12-26 10:42:06 +00:00
|
|
|
if (typeof promise.cancel === 'function') {
|
|
|
|
promise.cancel();
|
|
|
|
}
|
2016-10-21 06:42:17 +00:00
|
|
|
|
2020-12-26 10:42:06 +00:00
|
|
|
reject(timeoutError);
|
|
|
|
}, milliseconds);
|
|
|
|
|
|
|
|
(async () => {
|
|
|
|
try {
|
|
|
|
resolve(await promise);
|
|
|
|
} catch (error) {
|
|
|
|
reject(error);
|
|
|
|
} finally {
|
2022-07-25 16:24:32 +00:00
|
|
|
customTimers.clearTimeout.call(undefined, timer);
|
2020-12-26 10:42:06 +00:00
|
|
|
}
|
|
|
|
})();
|
|
|
|
});
|
2017-11-19 09:33:44 +00:00
|
|
|
|
2020-12-26 10:42:06 +00:00
|
|
|
cancelablePromise.clear = () => {
|
2022-07-25 16:24:32 +00:00
|
|
|
customTimers.clearTimeout.call(undefined, timer);
|
2020-12-26 10:42:06 +00:00
|
|
|
timer = undefined;
|
|
|
|
};
|
2016-10-21 06:42:17 +00:00
|
|
|
|
2020-12-26 10:42:06 +00:00
|
|
|
return cancelablePromise;
|
2021-04-06 17:38:12 +00:00
|
|
|
}
|