public commit

This commit is contained in:
dswbx
2024-11-16 12:01:47 +01:00
commit 90f80c4280
582 changed files with 49291 additions and 0 deletions
+75
View File
@@ -0,0 +1,75 @@
import type React from "react";
import { forwardRef } from "react";
import { twMerge } from "tailwind-merge";
import { Link } from "ui/components/wouter/Link";
const sizes = {
small: "px-2 py-1.5 rounded-md gap-1.5 text-sm",
default: "px-3 py-2.5 rounded-md gap-2.5",
large: "px-4 py-3 rounded-md gap-3 text-lg"
};
const iconSizes = {
small: 15,
default: 18,
large: 22
};
const styles = {
default: "bg-primary/5 hover:bg-primary/10 link text-primary/70",
primary: "bg-primary hover:bg-primary/80 link text-background",
ghost: "bg-transparent hover:bg-primary/5 link text-primary/70",
outline: "border border-primary/70 bg-transparent hover:bg-primary/5 link text-primary/70",
red: "dark:bg-red-950 dark:hover:bg-red-900 bg-red-100 hover:bg-red-200 link text-primary/70",
subtlered:
"dark:text-red-950 text-red-700 dark:hover:bg-red-900 bg-transparent hover:bg-red-50 link"
};
export type BaseProps = {
className?: string;
children?: React.ReactNode;
IconLeft?: React.ComponentType<any>;
IconRight?: React.ComponentType<any>;
iconSize?: number;
iconProps?: Record<string, any>;
size?: keyof typeof sizes;
variant?: keyof typeof styles;
labelClassName?: string;
};
const Base = ({
children,
size,
variant,
IconLeft,
IconRight,
iconSize = iconSizes[size ?? "default"],
iconProps,
labelClassName,
...props
}: BaseProps) => ({
...props,
className: twMerge(
"flex flex-row flex-nowrap items-center font-semibold disabled:opacity-50 cursor-pointer disabled:cursor-not-allowed",
sizes[size ?? "default"],
styles[variant ?? "default"],
props.className
),
children: (
<>
{IconLeft && <IconLeft size={iconSize} {...iconProps} />}
{children && <span className={twMerge("leading-none", labelClassName)}>{children}</span>}
{IconRight && <IconRight size={iconSize} {...iconProps} />}
</>
)
});
export type ButtonProps = React.ComponentPropsWithoutRef<"button"> & BaseProps;
export const Button = forwardRef<HTMLButtonElement, ButtonProps>((props, ref) => (
<button type="button" ref={ref} {...Base(props)} />
));
export type ButtonLinkProps = React.ComponentPropsWithoutRef<"a"> & BaseProps & { href: string };
export const ButtonLink = forwardRef<HTMLAnchorElement, ButtonLinkProps>((props, ref) => (
<Link ref={ref} href="#" {...Base(props)} />
));
@@ -0,0 +1,42 @@
import type { Icon, IconProps } from "@tabler/icons-react";
import { type ComponentPropsWithoutRef, forwardRef } from "react";
import type { IconType as RI_IconType } from "react-icons";
import { twMerge } from "tailwind-merge";
import { Button, type ButtonProps } from "./Button";
export type IconType =
| RI_IconType
| React.ForwardRefExoticComponent<IconProps & React.RefAttributes<Icon>>;
const styles = {
xs: { className: "p-0.5", size: 13 },
sm: { className: "p-0.5", size: 16 },
md: { className: "p-1", size: 20 },
lg: { className: "p-1.5", size: 24 }
} as const;
interface IconButtonProps extends ComponentPropsWithoutRef<"button"> {
Icon: IconType;
iconProps?: Record<string, any>;
variant?: ButtonProps["variant"];
size?: keyof typeof styles;
}
export const IconButton = forwardRef<HTMLButtonElement, IconButtonProps>(
({ Icon, size, variant = "ghost", onClick, disabled, iconProps, ...rest }, ref) => {
const style = styles[size ?? "md"];
return (
<Button
ref={ref}
variant={variant}
iconSize={style.size}
iconProps={iconProps}
IconLeft={Icon}
className={twMerge(style.className, rest.className)}
onClick={onClick}
disabled={disabled}
/>
);
}
);