mirror of
https://github.com/mediacms-io/mediacms.git
synced 2025-11-07 07:58:53 -05:00
* fix: Disable Segment Tools and Reset Preview State During Playback * chore: remove some unnecessary comments * chore: build assets * fix: do not display the handles (left/right) on preview mode * fix: Disable all tools on preview mode (undo, redo, reset, etc.) * Update README.md * feat: Prettier configuration for video editor * Update README.md * Update .prettierrc * style: Format entire codebase (video-editor) with Prettier * fix: During segments playback mode, disable button interactions but keep hover working * feat: Add yarn format * prettier format * Update package.json * feat: Install prettier and improve formatting * build assets * Update version.py 6.2.0
56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
import { QueryClient, QueryFunction } from "@tanstack/react-query";
|
|
|
|
async function throwIfResNotOk(res: Response) {
|
|
if (!res.ok) {
|
|
const text = (await res.text()) || res.statusText;
|
|
throw new Error(`${res.status}: ${text}`);
|
|
}
|
|
}
|
|
|
|
export async function apiRequest(
|
|
method: string,
|
|
url: string,
|
|
data?: unknown | undefined
|
|
): Promise<Response> {
|
|
const res = await fetch(url, {
|
|
method,
|
|
headers: data ? { "Content-Type": "application/json" } : {},
|
|
body: data ? JSON.stringify(data) : undefined,
|
|
credentials: "include"
|
|
});
|
|
|
|
await throwIfResNotOk(res);
|
|
return res;
|
|
}
|
|
|
|
type UnauthorizedBehavior = "returnNull" | "throw";
|
|
export const getQueryFn: <T>(options: { on401: UnauthorizedBehavior }) => QueryFunction<T> =
|
|
({ on401: unauthorizedBehavior }) =>
|
|
async ({ queryKey }) => {
|
|
const res = await fetch(queryKey[0] as string, {
|
|
credentials: "include"
|
|
});
|
|
|
|
if (unauthorizedBehavior === "returnNull" && res.status === 401) {
|
|
return null;
|
|
}
|
|
|
|
await throwIfResNotOk(res);
|
|
return await res.json();
|
|
};
|
|
|
|
export const queryClient = new QueryClient({
|
|
defaultOptions: {
|
|
queries: {
|
|
queryFn: getQueryFn({ on401: "throw" }),
|
|
refetchInterval: false,
|
|
refetchOnWindowFocus: false,
|
|
staleTime: Infinity,
|
|
retry: false
|
|
},
|
|
mutations: {
|
|
retry: false
|
|
}
|
|
}
|
|
});
|