* Icon and IconName * Button and ButtonGroup * UserAvatar * AvatarGroup * Avatar * WizardLayout * Dialogs * EmptyScreen * showToast and TextField * Editor * Skeleton * Skeleton * TopBanner and showToast * Button again * more * perf: Remove app-store reference from @calcom/ui * more * Fixing types * Icon * Fixed casing * dropdown * more * Select * more * Badge * List * more * Divider * more * fix * fix type check * refactor * fix * fix * fix * fix * fix * fix * fix * fix type check * fix * fix * fix * fix * more * more * more * more * add index file to components/command * fix * fix * fix * fix imports * fix * fix * fix * fix * fix * fix * fix * fix build errors * fix build errors * fix --------- Co-authored-by: Keith Williams <keithwillcode@gmail.com>
82 lines
2.8 KiB
TypeScript
82 lines
2.8 KiB
TypeScript
import type {
|
|
QueryObserverPendingResult,
|
|
QueryObserverRefetchErrorResult,
|
|
QueryObserverSuccessResult,
|
|
QueryObserverLoadingErrorResult,
|
|
UseQueryResult,
|
|
} from "@tanstack/react-query";
|
|
import type { ReactNode } from "react";
|
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { Alert } from "@calcom/ui/components/alert";
|
|
import { Loader } from "@calcom/ui/components/skeleton";
|
|
|
|
type ErrorLike = {
|
|
message: string;
|
|
};
|
|
type JSXElementOrNull = JSX.Element | null;
|
|
|
|
interface QueryCellOptionsBase<TData, TError extends ErrorLike> {
|
|
query: UseQueryResult<TData, TError>;
|
|
customLoader?: ReactNode;
|
|
error?: (
|
|
query: QueryObserverLoadingErrorResult<TData, TError> | QueryObserverRefetchErrorResult<TData, TError>
|
|
) => JSXElementOrNull;
|
|
loading?: (query: QueryObserverPendingResult<TData, TError> | null) => JSXElementOrNull;
|
|
}
|
|
|
|
interface QueryCellOptionsNoEmpty<TData, TError extends ErrorLike>
|
|
extends QueryCellOptionsBase<TData, TError> {
|
|
success: (query: QueryObserverSuccessResult<TData, TError>) => JSXElementOrNull;
|
|
}
|
|
|
|
interface QueryCellOptionsWithEmpty<TData, TError extends ErrorLike>
|
|
extends QueryCellOptionsBase<TData, TError> {
|
|
success: (query: QueryObserverSuccessResult<NonNullable<TData>, TError>) => JSXElementOrNull;
|
|
/**
|
|
* If there's no data (`null`, `undefined`, or `[]`), render this component
|
|
*/
|
|
empty: (query: QueryObserverSuccessResult<TData, TError>) => JSXElementOrNull;
|
|
}
|
|
|
|
export function QueryCell<TData, TError extends ErrorLike>(
|
|
opts: QueryCellOptionsWithEmpty<TData, TError>
|
|
): JSXElementOrNull;
|
|
export function QueryCell<TData, TError extends ErrorLike>(
|
|
opts: QueryCellOptionsNoEmpty<TData, TError>
|
|
): JSXElementOrNull;
|
|
/** @deprecated Use `trpc.useQuery` instead. */
|
|
export function QueryCell<TData, TError extends ErrorLike>(
|
|
opts: QueryCellOptionsNoEmpty<TData, TError> | QueryCellOptionsWithEmpty<TData, TError>
|
|
) {
|
|
const { query } = opts;
|
|
const { isLocaleReady } = useLocale();
|
|
const StatusLoader = opts.customLoader || <Loader />; // Fixes edge case where this can return null form query cell
|
|
|
|
if (!isLocaleReady) {
|
|
return opts.loading?.(query.status === "pending" ? query : null) ?? StatusLoader;
|
|
}
|
|
if (query.status === "pending") {
|
|
return opts.loading?.(query) ?? StatusLoader;
|
|
}
|
|
|
|
if (query.status === "success") {
|
|
if ("empty" in opts && (query.data == null || (Array.isArray(query.data) && query.data.length === 0))) {
|
|
return opts.empty(query);
|
|
}
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
return opts.success(query as any);
|
|
}
|
|
|
|
if (query.status === "error") {
|
|
return (
|
|
opts.error?.(query) ?? (
|
|
<Alert severity="error" title="Something went wrong" message={query.error.message} />
|
|
)
|
|
);
|
|
}
|
|
|
|
// impossible state
|
|
return null;
|
|
}
|