sendou.ink/app/components/SubmitButton.tsx
2023-01-12 21:40:32 +02:00

34 lines
881 B
TypeScript

import { type FetcherWithComponents, useTransition } from "@remix-run/react";
import { Button, type ButtonProps } from "./Button";
interface SubmitButtonProps extends ButtonProps {
/** If the page has multiple forms you can pass in fetcher.state to differentiate when this SubmitButton should be in submitting state */
state?: FetcherWithComponents<any>["state"];
_action?: string;
}
export function SubmitButton({
children,
state,
_action,
testId,
...rest
}: SubmitButtonProps) {
const transition = useTransition();
const isSubmitting = state ? state !== "idle" : transition.state !== "idle";
return (
<Button
{...rest}
disabled={rest.disabled || isSubmitting}
type="submit"
name={_action ? "_action" : undefined}
value={_action}
data-testid={testId ?? "submit-button"}
>
{children}
</Button>
);
}