mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 00:39:13 +00:00
86 lines
2.8 KiB
TypeScript
86 lines
2.8 KiB
TypeScript
/*
|
|
* Copyright (c) 2021 - 2024, Ludvig Lundgren and the autobrr contributors.
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
import { QueryCache, QueryClient } from "@tanstack/react-query";
|
|
import { toast } from "react-hot-toast";
|
|
import Toast from "@components/notifications/Toast";
|
|
import { AuthContext } from "@utils/Context";
|
|
import { getRouteApi, redirect } from "@tanstack/react-router";
|
|
|
|
const MAX_RETRIES = 6;
|
|
|
|
export const queryClient = new QueryClient({
|
|
queryCache: new QueryCache({
|
|
onError: (error, query) => {
|
|
const loginRoute = getRouteApi("/login");
|
|
console.error(`Caught error for query '${query.queryKey}': `, error);
|
|
|
|
if (error.message === "Cookie expired or invalid.") {
|
|
AuthContext.reset();
|
|
redirect({
|
|
to: loginRoute.id,
|
|
search: {
|
|
// Use the current location to power a redirect after login
|
|
// (Do not use `router.state.resolvedLocation` as it can
|
|
// potentially lag behind the actual current location)
|
|
redirect: location.href
|
|
},
|
|
});
|
|
return;
|
|
} else {
|
|
toast.custom((t) => <Toast type="error" body={ error?.message } t={ t }/>);
|
|
}
|
|
}
|
|
}),
|
|
defaultOptions: {
|
|
queries: {
|
|
// The retries will have exponential delay.
|
|
// See https://tanstack.com/query/v4/docs/guides/query-retries#retry-delay
|
|
// delay = Math.min(1000 * 2 ** attemptIndex, 30000)
|
|
// retry: false,
|
|
throwOnError: (error) => {
|
|
return error.message !== "Cookie expired or invalid.";
|
|
|
|
},
|
|
retry: (failureCount, error) => {
|
|
/*
|
|
console.debug("retry count:", failureCount)
|
|
console.error("retry err: ", error)
|
|
|
|
// @ts-expect-error TS2339: ignore
|
|
if (HTTP_STATUS_TO_NOT_RETRY.includes(error.status)) {
|
|
// @ts-expect-error TS2339: ignore
|
|
console.log(`retry: Aborting retry due to ${error.status} status`);
|
|
return false;
|
|
}
|
|
*/
|
|
if (error.message === "Cookie expired or invalid.") {
|
|
return false;
|
|
}
|
|
|
|
console.error(`Retrying query (N=${failureCount}): `, error);
|
|
return failureCount <= MAX_RETRIES;
|
|
},
|
|
},
|
|
mutations: {
|
|
onError: (error) => {
|
|
console.log("mutation error: ", error)
|
|
|
|
// TODO: Maybe unneeded with our little HttpClient refactor.
|
|
if (error instanceof Response) {
|
|
return;
|
|
}
|
|
|
|
// Use a format string to convert the error object to a proper string without much hassle.
|
|
const message = (
|
|
typeof (error) === "object" && typeof ((error as Error).message) ?
|
|
(error as Error).message :
|
|
`${error}`
|
|
);
|
|
toast.custom((t) => <Toast type="error" body={message} t={t}/>);
|
|
}
|
|
}
|
|
}
|
|
});
|