Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 1x 2x 3x 3x | "use client";
import { useFormStatus } from "react-dom";
import { cn } from "@/lib/utils";
import { Button } from "@/components/ui/button";
import { Loader2 } from "lucide-react";
function Loader({ text }: { readonly text: string }) {
return (
<div className="flex items-center space-x-2">
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
<p>{text}</p>
</div>
);
}
interface SubmitButtonProps {
text: string;
loadingText: string;
className?: string;
loading?: boolean;
}
export function SubmitButton({
text,
loadingText,
loading,
className,
}: Readonly<SubmitButtonProps>) {
const status = useFormStatus();
return (
<Button
type="submit"
aria-disabled={status.pending || loading}
disabled={status.pending || loading}
className={cn(className)}
>
{status.pending || loading ? <Loader text={loadingText} /> : text}
</Button>
);
} |