sendou.ink/app/components/elements/DatePicker.tsx
Kalle 3925b73d32 Replace useIsMounted with useHydrated
Strict improvement because we avoid the flash on clientside navigation.
One practical bug was scroll restoration between tournament teams list
and user page. When user pressed back they ended up at the bottom
of the page because the placeholder (smaller height than actual
content) rendered. With useHydrated this placeholder is no longer
rendered for client side navigations.
2026-03-28 07:44:52 +02:00

81 lines
1.8 KiB
TypeScript

import { Calendar } from "lucide-react";
import {
Button,
DateInput,
type DatePickerProps,
DateSegment,
type DateValue,
Dialog,
Group,
Popover,
DatePicker as ReactAriaDatePicker,
} from "react-aria-components";
import { SendouBottomTexts } from "~/components/elements/BottomTexts";
import { SendouCalendar } from "~/components/elements/Calendar";
import { useHydrated } from "~/hooks/useHydrated";
import styles from "./DatePicker.module.css";
import { SendouLabel } from "./Label";
interface SendouDatePickerProps<T extends DateValue>
extends DatePickerProps<T> {
label: string;
bottomText?: string;
errorText?: string;
errorId?: string;
}
export function SendouDatePicker<T extends DateValue>({
label,
errorText,
errorId,
bottomText,
isRequired,
...rest
}: SendouDatePickerProps<T>) {
const isHydrated = useHydrated();
if (!isHydrated) {
return (
<div>
<SendouLabel required={isRequired}>{label}</SendouLabel>
<input type="text" disabled />
<SendouBottomTexts
bottomText={bottomText}
errorText={errorText}
errorId={errorId}
/>
</div>
);
}
return (
<ReactAriaDatePicker
{...rest}
validationBehavior="aria"
className={styles.root}
>
<SendouLabel required={isRequired}>{label}</SendouLabel>
<Group className={styles.group}>
<DateInput className={styles.dateInput}>
{(segment) => (
<DateSegment segment={segment} className={styles.segment} />
)}
</DateInput>
<Button data-testid="open-calendar-button" className={styles.button}>
<Calendar className={styles.icon} />
</Button>
</Group>
<SendouBottomTexts
bottomText={bottomText}
errorText={errorText}
errorId={errorId}
/>
<Popover>
<Dialog>
<SendouCalendar />
</Dialog>
</Popover>
</ReactAriaDatePicker>
);
}