'use client';
import React from 'react';
import {
DateField as AriaDateField,
DateFieldProps as AriaDateFieldProps,
DateInput as AriaDateInput,
DateInputProps,
DateSegment,
DateValue,
ValidationResult
} from 'react-aria-components';
import { tv } from 'tailwind-variants';
import { Description, FieldError, Label, fieldGroupStyles } from '@/registry/react-aria/ui/Field';
import { composeTailwindRenderProps } from '@/registry/react-aria/lib/react-aria-utils';
export interface DateFieldProps<T extends DateValue> extends AriaDateFieldProps<T> {
label?: string;
description?: string;
errorMessage?: string | ((validation: ValidationResult) => string);
}
export function DateField<T extends DateValue>(
{ label, description, errorMessage, ...props }: DateFieldProps<T>
) {
return (
<AriaDateField {...props} className={composeTailwindRenderProps(props.className, 'flex flex-col gap-1')}>
{label && <Label>{label}</Label>}
<DateInput />
{description && <Description>{description}</Description>}
<FieldError>{errorMessage}</FieldError>
</AriaDateField>
);
}
const segmentStyles = tv({
base: 'inline p-0.5 whitespace-nowrap type-literal:p-0 rounded-xs outline outline-0 forced-color-adjust-none caret-transparent text-neutral-800 dark:text-neutral-200 forced-colors:text-[ButtonText] [-webkit-tap-highlight-color:transparent]',
variants: {
isPlaceholder: {
true: 'text-neutral-600 dark:text-neutral-400'
},
isDisabled: {
true: 'text-neutral-200 dark:text-neutral-600 forced-colors:text-[GrayText]'
},
isFocused: {
true: 'bg-blue-600 text-white dark:text-white forced-colors:bg-[Highlight] forced-colors:text-[HighlightText]'
}
}
});
export function DateInput(props: Omit<DateInputProps, 'children'>) {
return (
<AriaDateInput className={renderProps => fieldGroupStyles({...renderProps, class: 'inline min-w-[150px] px-3 h-9 text-sm leading-8.5 font-sans cursor-text disabled:cursor-default whitespace-nowrap overflow-x-auto [scrollbar-width:none]'})} {...props}>
{(segment) => <DateSegment segment={segment} className={segmentStyles} />}
</AriaDateInput>
);
}