-
Notifications
You must be signed in to change notification settings - Fork 501
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into cypress-parallel
- Loading branch information
Showing
11 changed files
with
479 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,167 @@ | ||
import { createContext, useContext, useState } from "react"; | ||
import { PaginatedResponse, QueryRoute } from "../../Utils/request/types"; | ||
import useQuery, { QueryOptions } from "../../Utils/request/useQuery"; | ||
import ButtonV2, { | ||
CommonButtonProps, | ||
} from "../../Components/Common/components/ButtonV2"; | ||
import CareIcon from "../icons/CareIcon"; | ||
import { classNames } from "../../Utils/utils"; | ||
import Pagination from "../../Components/Common/Pagination"; | ||
|
||
const DEFAULT_PER_PAGE_LIMIT = 14; | ||
|
||
interface PaginatedListContext<TItem> | ||
extends ReturnType<typeof useQuery<PaginatedResponse<TItem>>> { | ||
items: TItem[]; | ||
perPage: number; | ||
currentPage: number; | ||
setPage: (page: number) => void; | ||
} | ||
|
||
const context = createContext<PaginatedListContext<object> | null>(null); | ||
|
||
function useContextualized<TItem>() { | ||
const ctx = useContext(context); | ||
|
||
if (ctx === null) { | ||
throw new Error("PaginatedList must be used within a PaginatedList"); | ||
} | ||
|
||
return ctx as PaginatedListContext<TItem>; | ||
} | ||
|
||
interface Props<TItem> extends QueryOptions { | ||
route: QueryRoute<PaginatedResponse<TItem>>; | ||
perPage?: number; | ||
children: (ctx: PaginatedListContext<TItem>) => JSX.Element | JSX.Element[]; | ||
} | ||
|
||
export default function PaginatedList<TItem extends object>({ | ||
children, | ||
route, | ||
perPage = DEFAULT_PER_PAGE_LIMIT, | ||
...queryOptions | ||
}: Props<TItem>) { | ||
const query = useQuery(route, { | ||
...queryOptions, | ||
query: { ...queryOptions.query, limit: perPage }, | ||
}); | ||
const [currentPage, setPage] = useState(1); | ||
|
||
const items = query.data?.results ?? []; | ||
|
||
return ( | ||
<context.Provider | ||
value={{ ...query, items, perPage, currentPage, setPage }} | ||
> | ||
<context.Consumer> | ||
{(ctx) => children(ctx as PaginatedListContext<TItem>)} | ||
</context.Consumer> | ||
</context.Provider> | ||
); | ||
} | ||
|
||
interface WhenEmptyProps { | ||
className?: string; | ||
children: JSX.Element | JSX.Element[]; | ||
} | ||
|
||
const WhenEmpty = <TItem extends object>(props: WhenEmptyProps) => { | ||
const { items, loading } = useContextualized<TItem>(); | ||
|
||
if (loading || items.length > 0) { | ||
return null; | ||
} | ||
|
||
return <div className={props.className}>{props.children}</div>; | ||
}; | ||
|
||
PaginatedList.WhenEmpty = WhenEmpty; | ||
|
||
const WhenLoading = <TItem extends object>(props: WhenEmptyProps) => { | ||
const { loading } = useContextualized<TItem>(); | ||
|
||
if (!loading) { | ||
return null; | ||
} | ||
|
||
return <div className={props.className}>{props.children}</div>; | ||
}; | ||
|
||
PaginatedList.WhenLoading = WhenLoading; | ||
|
||
const Refresh = ({ label = "Refresh", ...props }: CommonButtonProps) => { | ||
const { loading, refetch } = useContextualized<object>(); | ||
|
||
return ( | ||
<ButtonV2 | ||
variant="secondary" | ||
border | ||
{...props} | ||
onClick={() => refetch()} | ||
disabled={loading} | ||
> | ||
<CareIcon | ||
icon="l-sync" | ||
className={classNames("text-lg", loading && "animate-spin")} | ||
/> | ||
<span>{label}</span> | ||
</ButtonV2> | ||
); | ||
}; | ||
|
||
PaginatedList.Refresh = Refresh; | ||
|
||
interface ItemsProps<TItem> { | ||
className?: string; | ||
children: (item: TItem) => JSX.Element | JSX.Element[]; | ||
shimmer?: JSX.Element; | ||
shimmerCount?: number; | ||
} | ||
|
||
const Items = <TItem extends object>(props: ItemsProps<TItem>) => { | ||
const { loading, items } = useContextualized<TItem>(); | ||
|
||
return ( | ||
<ul className={props.className}> | ||
{loading && props.shimmer | ||
? Array.from({ length: props.shimmerCount ?? 8 }).map((_, i) => ( | ||
<li key={i} className="w-full"> | ||
{props.shimmer} | ||
</li> | ||
)) | ||
: items.map((item, index) => ( | ||
<li key={index} className="w-full"> | ||
{props.children(item)} | ||
</li> | ||
))} | ||
</ul> | ||
); | ||
}; | ||
|
||
PaginatedList.Items = Items; | ||
|
||
interface PaginatorProps { | ||
className?: string; | ||
hideIfSinglePage?: boolean; | ||
} | ||
|
||
const Paginator = ({ className, hideIfSinglePage }: PaginatorProps) => { | ||
const { data, perPage, currentPage, setPage } = useContextualized<object>(); | ||
|
||
if (hideIfSinglePage && (data?.count ?? 0) <= perPage) { | ||
return null; | ||
} | ||
|
||
return ( | ||
<Pagination | ||
className={className} | ||
cPage={currentPage} | ||
data={{ totalCount: data?.count ?? 0 }} | ||
defaultPerPage={perPage} | ||
onChange={setPage} | ||
/> | ||
); | ||
}; | ||
|
||
PaginatedList.Paginator = Paginator; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.