sendou.ink/app/components/FormWithConfirm.tsx
Kalle 40ac14eb68
Some checks are pending
E2E Tests / e2e (push) Waiting to run
Tests and checks on push / run-checks-and-tests (push) Waiting to run
Updates translation progress / update-translation-progress-issue (push) Waiting to run
Auto-cancel overlapping pending scrim posts/requests on booking
Closes #3150
2026-06-15 17:21:00 +03:00

126 lines
3.4 KiB
TypeScript

import * as React from "react";
import { createPortal } from "react-dom";
import { useTranslation } from "react-i18next";
import { type FetcherWithComponents, useFetcher } from "react-router";
import type { SendouButtonProps } from "~/components/elements/Button";
import { SendouDialog } from "~/components/elements/Dialog";
import { useHydrated } from "~/hooks/useHydrated";
import invariant from "~/utils/invariant";
import { FormMessage } from "./FormMessage";
import { SubmitButton } from "./SubmitButton";
interface ChildProps {
onPress?: () => void;
type?: "button";
}
export function FormWithConfirm({
fields,
children,
dialogHeading,
description,
submitButtonText,
action,
submitButtonTestId = "submit-button",
submitButtonVariant = "destructive",
fetcher: _fetcher,
isOpen,
onOpenChange,
}: {
fields?: (
| [name: string, value: string | number]
| readonly [name: string, value: string | number]
)[];
children?: React.ReactElement<ChildProps>;
dialogHeading: string;
/** Optional explanatory text shown below the heading in the confirm dialog */
description?: React.ReactNode;
submitButtonText?: string;
action?: string;
submitButtonTestId?: string;
submitButtonVariant?: SendouButtonProps["variant"];
fetcher?: FetcherWithComponents<any>;
/** Controls the dialog open state. When provided, no child trigger is needed. */
isOpen?: boolean;
onOpenChange?: (isOpen: boolean) => void;
}) {
const componentsFetcher = useFetcher();
const fetcher = _fetcher ?? componentsFetcher;
const isHydrated = useHydrated();
const { t } = useTranslation(["common"]);
const [internalOpen, setInternalOpen] = React.useState(false);
const formRef = React.useRef<HTMLFormElement>(null);
const id = React.useId();
const isControlled = isOpen !== undefined;
const dialogOpen = isControlled ? isOpen : internalOpen;
const openDialog = React.useCallback(() => {
onOpenChange?.(true);
setInternalOpen(true);
}, [onOpenChange]);
const closeDialog = React.useCallback(() => {
onOpenChange?.(false);
setInternalOpen(false);
}, [onOpenChange]);
invariant(!children || React.isValidElement(children));
React.useEffect(() => {
if (fetcher.state === "loading") {
closeDialog();
}
}, [fetcher.state, closeDialog]);
return (
<>
{isHydrated
? // using portal here makes nesting this component in another form work
createPortal(
<fetcher.Form
id={id}
className="hidden"
ref={formRef}
method="post"
action={action}
>
{fields?.map(([name, value]) => (
<input type="hidden" key={name} name={name} value={value} />
))}
</fetcher.Form>,
document.body,
)
: null}
<SendouDialog
isOpen={dialogOpen}
onClose={closeDialog}
onOpenChange={closeDialog}
isDismissable
>
<div className="stack md">
<h2 className="text-md text-center">{dialogHeading}</h2>
{description ? (
<FormMessage type="info">{description}</FormMessage>
) : null}
<div className="stack horizontal md justify-center mt-2">
<SubmitButton
form={id}
variant={submitButtonVariant}
testId={dialogOpen ? "confirm-button" : submitButtonTestId}
>
{submitButtonText ?? t("common:actions.delete")}
</SubmitButton>
</div>
</div>
</SendouDialog>
{children
? React.cloneElement(children, {
onPress: openDialog,
type: "button",
})
: null}
</>
);
}