mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
115 lines
3.0 KiB
TypeScript
115 lines
3.0 KiB
TypeScript
// "use client";
|
|
//
|
|
// import { Button } from "@/components/ui/button";
|
|
// import { ButtonHTMLAttributes } from "react";
|
|
// import { Loader2 } from "lucide-react";
|
|
//
|
|
// export type VariantButton = {
|
|
// secondary: string;
|
|
// default: string;
|
|
// outline: string;
|
|
// ghost: string;
|
|
// link: string;
|
|
// destructive: string;
|
|
// };
|
|
// export type sizeButton = {
|
|
// default: string;
|
|
// icon: string;
|
|
// sm: string;
|
|
// lg: string;
|
|
// };
|
|
//
|
|
// export type ButtonWithConfirmProps = {
|
|
// icon?: any;
|
|
// text: string;
|
|
// variant?: keyof VariantButton;
|
|
// className?: string;
|
|
// onClick: () => void;
|
|
// isPending?: boolean;
|
|
// size: keyof sizeButton;
|
|
// };
|
|
//
|
|
// export const ButtonWithLoading = ({
|
|
// icon,
|
|
// text,
|
|
// variant,
|
|
// className,
|
|
// onClick,
|
|
// isPending,
|
|
// size,
|
|
// ...props // catch all remaining props
|
|
// }: ButtonWithConfirmProps & ButtonHTMLAttributes<HTMLButtonElement>) => {
|
|
// return (
|
|
// <Button
|
|
// onClick={() => {
|
|
// onClick();
|
|
// }}
|
|
// variant={variant ? variant : "default"}
|
|
// className={className}
|
|
// {...props} // forward the remaining props to the Button component
|
|
// size={size || "default"}
|
|
// >
|
|
// {isPending && <Loader2 className="animate-spin mr-4" size={16} />}
|
|
// {text}
|
|
// <>{icon ? icon : null}</>
|
|
// </Button>
|
|
// );
|
|
// };
|
|
|
|
'use client'
|
|
|
|
import { ButtonHTMLAttributes, ReactNode } from "react";
|
|
import { Loader2 } from "lucide-react";
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
export type VariantButton = {
|
|
secondary: string;
|
|
default: string;
|
|
outline: string;
|
|
ghost: string;
|
|
link: string;
|
|
destructive: string;
|
|
};
|
|
|
|
export type SizeButton = {
|
|
default: string;
|
|
icon: string;
|
|
sm: string;
|
|
lg: string;
|
|
};
|
|
|
|
export type ButtonWithLoadingProps = {
|
|
children?: string | ReactNode;
|
|
icon?: ReactNode;
|
|
variant?: keyof VariantButton;
|
|
className?: string;
|
|
onClick?: (e: React.MouseEvent<HTMLButtonElement>) => void;
|
|
isPending?: boolean;
|
|
size?: keyof SizeButton;
|
|
} & ButtonHTMLAttributes<HTMLButtonElement>;
|
|
|
|
export const ButtonWithLoading = ({
|
|
icon,
|
|
children,
|
|
variant = "default",
|
|
className,
|
|
onClick,
|
|
isPending,
|
|
size = "default",
|
|
...rest
|
|
}: ButtonWithLoadingProps) => {
|
|
return (
|
|
<Button
|
|
onClick={(e) => onClick?.(e)}
|
|
variant={variant}
|
|
className={className}
|
|
size={size}
|
|
{...rest}
|
|
>
|
|
{isPending && <Loader2 className="mr-2 animate-spin" size={16} />}
|
|
{children && children}
|
|
<>{icon ? icon : null}</>
|
|
</Button>
|
|
);
|
|
};
|