-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: use credentials route to remove u-kit
- Loading branch information
Showing
5 changed files
with
214 additions
and
12 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
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
11 changes: 11 additions & 0 deletions
11
apps/dashboard-for-dapps/src/components/ui/link-button.tsx
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,11 @@ | ||
"use client"; | ||
|
||
import type { HTMLChakraProps, RecipeProps } from "@chakra-ui/react"; | ||
import { createRecipeContext } from "@chakra-ui/react"; | ||
|
||
export interface LinkButtonProps extends HTMLChakraProps<"a", RecipeProps<"button">> {} | ||
|
||
const { withContext } = createRecipeContext({ key: "button" }); | ||
|
||
// Replace "a" with your framework's link component | ||
export const LinkButton = withContext<HTMLAnchorElement, LinkButtonProps>("a"); |
188 changes: 188 additions & 0 deletions
188
apps/dashboard-for-dapps/src/components/ui/pagination.tsx
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,188 @@ | ||
"use client"; | ||
|
||
import type { ButtonProps, TextProps } from "@chakra-ui/react"; | ||
import { | ||
Button, | ||
Pagination as ChakraPagination, | ||
IconButton, | ||
Text, | ||
createContext, | ||
usePaginationContext, | ||
} from "@chakra-ui/react"; | ||
import * as React from "react"; | ||
import { HiChevronLeft, HiChevronRight, HiMiniEllipsisHorizontal } from "react-icons/hi2"; | ||
import { LinkButton } from "./link-button"; | ||
|
||
interface ButtonVariantMap { | ||
current: ButtonProps["variant"]; | ||
default: ButtonProps["variant"]; | ||
ellipsis: ButtonProps["variant"]; | ||
} | ||
|
||
type PaginationVariant = "outline" | "solid" | "subtle"; | ||
|
||
interface ButtonVariantContext { | ||
size: ButtonProps["size"]; | ||
variantMap: ButtonVariantMap; | ||
getHref?: (page: number) => string; | ||
} | ||
|
||
const [RootPropsProvider, useRootProps] = createContext<ButtonVariantContext>({ | ||
name: "RootPropsProvider", | ||
}); | ||
|
||
export interface PaginationRootProps extends Omit<ChakraPagination.RootProps, "type"> { | ||
size?: ButtonProps["size"]; | ||
variant?: PaginationVariant; | ||
getHref?: (page: number) => string; | ||
} | ||
|
||
const variantMap: Record<PaginationVariant, ButtonVariantMap> = { | ||
outline: { default: "ghost", ellipsis: "plain", current: "outline" }, | ||
solid: { default: "outline", ellipsis: "outline", current: "solid" }, | ||
subtle: { default: "ghost", ellipsis: "plain", current: "subtle" }, | ||
}; | ||
|
||
export const PaginationRoot = React.forwardRef<HTMLDivElement, PaginationRootProps>( | ||
function PaginationRoot(props, ref) { | ||
const { size = "sm", variant = "outline", getHref, ...rest } = props; | ||
return ( | ||
<RootPropsProvider value={{ size, variantMap: variantMap[variant], getHref }}> | ||
<ChakraPagination.Root ref={ref} type={getHref ? "link" : "button"} {...rest} /> | ||
</RootPropsProvider> | ||
); | ||
}, | ||
); | ||
|
||
export const PaginationEllipsis = React.forwardRef<HTMLDivElement, ChakraPagination.EllipsisProps>( | ||
function PaginationEllipsis(props, ref) { | ||
const { size, variantMap } = useRootProps(); | ||
return ( | ||
<ChakraPagination.Ellipsis ref={ref} {...props} asChild> | ||
<Button as="span" variant={variantMap.ellipsis} size={size}> | ||
<HiMiniEllipsisHorizontal /> | ||
</Button> | ||
</ChakraPagination.Ellipsis> | ||
); | ||
}, | ||
); | ||
|
||
export const PaginationItem = React.forwardRef<HTMLButtonElement, ChakraPagination.ItemProps>( | ||
function PaginationItem(props, ref) { | ||
const { page } = usePaginationContext(); | ||
const { size, variantMap, getHref } = useRootProps(); | ||
|
||
const current = page === props.value; | ||
const variant = current ? variantMap.current : variantMap.default; | ||
|
||
if (getHref) { | ||
return ( | ||
<LinkButton href={getHref(props.value)} variant={variant} size={size}> | ||
{props.value} | ||
</LinkButton> | ||
); | ||
} | ||
|
||
return ( | ||
<ChakraPagination.Item ref={ref} {...props} asChild> | ||
<Button variant={variant} size={size}> | ||
{props.value} | ||
</Button> | ||
</ChakraPagination.Item> | ||
); | ||
}, | ||
); | ||
|
||
export const PaginationPrevTrigger = React.forwardRef< | ||
HTMLButtonElement, | ||
ChakraPagination.PrevTriggerProps | ||
>(function PaginationPrevTrigger(props, ref) { | ||
const { size, variantMap, getHref } = useRootProps(); | ||
const { previousPage } = usePaginationContext(); | ||
|
||
if (getHref) { | ||
return ( | ||
<LinkButton | ||
href={previousPage != null ? getHref(previousPage) : undefined} | ||
variant={variantMap.default} | ||
size={size} | ||
> | ||
<HiChevronLeft /> | ||
</LinkButton> | ||
); | ||
} | ||
|
||
return ( | ||
<ChakraPagination.PrevTrigger ref={ref} asChild {...props}> | ||
<IconButton variant={variantMap.default} size={size}> | ||
<HiChevronLeft /> | ||
</IconButton> | ||
</ChakraPagination.PrevTrigger> | ||
); | ||
}); | ||
|
||
export const PaginationNextTrigger = React.forwardRef< | ||
HTMLButtonElement, | ||
ChakraPagination.NextTriggerProps | ||
>(function PaginationNextTrigger(props, ref) { | ||
const { size, variantMap, getHref } = useRootProps(); | ||
const { nextPage } = usePaginationContext(); | ||
|
||
if (getHref) { | ||
return ( | ||
<LinkButton | ||
href={nextPage != null ? getHref(nextPage) : undefined} | ||
variant={variantMap.default} | ||
size={size} | ||
> | ||
<HiChevronRight /> | ||
</LinkButton> | ||
); | ||
} | ||
|
||
return ( | ||
<ChakraPagination.NextTrigger ref={ref} asChild {...props}> | ||
<IconButton variant={variantMap.default} size={size}> | ||
<HiChevronRight /> | ||
</IconButton> | ||
</ChakraPagination.NextTrigger> | ||
); | ||
}); | ||
|
||
export const PaginationItems = (props: React.HTMLAttributes<HTMLElement>) => { | ||
return ( | ||
<ChakraPagination.Context> | ||
{({ pages }) => | ||
pages.map((page, index) => { | ||
return page.type === "ellipsis" ? ( | ||
<PaginationEllipsis key={index} index={index} {...props} /> | ||
) : ( | ||
<PaginationItem key={index} type="page" value={page.value} {...props} /> | ||
); | ||
}) | ||
} | ||
</ChakraPagination.Context> | ||
); | ||
}; | ||
|
||
interface PageTextProps extends TextProps { | ||
format?: "short" | "compact" | "long"; | ||
} | ||
|
||
export const PaginationPageText = React.forwardRef<HTMLParagraphElement, PageTextProps>( | ||
function PaginationPageText(props, ref) { | ||
const { format = "compact", ...rest } = props; | ||
const { page, totalPages, pageRange, count } = usePaginationContext(); | ||
const content = React.useMemo(() => { | ||
if (format === "short") return `${page} / ${totalPages}`; | ||
if (format === "compact") return `${page} of ${totalPages}`; | ||
return `${pageRange.start + 1} - ${pageRange.end} of ${count}`; | ||
}, [format, page, totalPages, pageRange, count]); | ||
|
||
return ( | ||
<Text fontWeight="medium" ref={ref} {...rest}> | ||
{content} | ||
</Text> | ||
); | ||
}, | ||
); |
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