mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
34 lines
881 B
TypeScript
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>
|
|
);
|
|
}
|