mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-26 00:46:52 +08:00
Fix:Add a component of calendar (#8923)
### What problem does this PR solve? fix:Add a component of calendar [#3221](https://github.com/infiniflow/ragflow/issues/3221) ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
19
web/src/components/originui/calendar/index.less
Normal file
19
web/src/components/originui/calendar/index.less
Normal file
@ -0,0 +1,19 @@
|
||||
.rdp-selected {
|
||||
background-color: #f5f5f529;
|
||||
}
|
||||
.range-start {
|
||||
background-color: #f5f5f5;
|
||||
border-top-left-radius: 10px;
|
||||
border-bottom-left-radius: 10px;
|
||||
button {
|
||||
color: rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
}
|
||||
.range-end {
|
||||
background-color: #f5f5f5;
|
||||
border-top-right-radius: 10px;
|
||||
border-bottom-right-radius: 10px;
|
||||
button {
|
||||
color: rgba(0, 0, 0, 0.8);
|
||||
}
|
||||
}
|
||||
95
web/src/components/originui/calendar/index.tsx
Normal file
95
web/src/components/originui/calendar/index.tsx
Normal file
@ -0,0 +1,95 @@
|
||||
'use client';
|
||||
|
||||
import { cn } from '@/lib/utils';
|
||||
import { ChevronLeftIcon, ChevronRightIcon } from 'lucide-react';
|
||||
import * as React from 'react';
|
||||
import { DayPicker } from 'react-day-picker';
|
||||
import { buttonVariants } from '../../ui/button';
|
||||
import './index.less';
|
||||
type DateRange = {
|
||||
from: Date;
|
||||
to?: Date;
|
||||
};
|
||||
function Calendar({
|
||||
className,
|
||||
classNames,
|
||||
showOutsideDays = true,
|
||||
components: userComponents,
|
||||
...props
|
||||
}: React.ComponentProps<typeof DayPicker>) {
|
||||
const defaultClassNames = {
|
||||
months: 'relative flex flex-col sm:flex-row gap-4',
|
||||
month: 'w-full',
|
||||
month_caption:
|
||||
'relative mx-10 mb-1 flex h-9 items-center justify-center z-20',
|
||||
caption_label: 'text-sm font-medium',
|
||||
nav: 'absolute top-0 flex w-full justify-between z-10',
|
||||
button_previous: cn(
|
||||
buttonVariants({ variant: 'ghost' }),
|
||||
'size-9 text-muted-foreground/80 hover:text-foreground p-0',
|
||||
),
|
||||
button_next: cn(
|
||||
buttonVariants({ variant: 'ghost' }),
|
||||
'size-9 text-muted-foreground/80 hover:text-foreground p-0',
|
||||
),
|
||||
weekday: 'size-9 p-0 text-xs font-medium text-muted-foreground/80',
|
||||
day_button:
|
||||
'relative flex size-9 items-center justify-center whitespace-nowrap rounded-md p-0 text-foreground group-[[data-selected]:not(.range-middle)]:[transition-property:color,background-color,border-radius,box-shadow] group-[[data-selected]:not(.range-middle)]:duration-150 group-data-disabled:pointer-events-none focus-visible:z-10 hover:not-in-data-selected:bg-accent group-data-selected:bg-primary hover:not-in-data-selected:text-foreground group-data-selected:text-primary-foreground group-data-disabled:text-foreground/30 group-data-disabled:line-through group-data-outside:text-foreground/30 group-data-selected:group-data-outside:text-primary-foreground outline-none focus-visible:ring-ring/50 focus-visible:ring-[3px] group-[.range-start:not(.range-end)]:rounded-e-none group-[.range-end:not(.range-start)]:rounded-s-none group-[.range-middle]:rounded-none group-[.range-middle]:group-data-selected:bg-accent group-[.range-middle]:group-data-selected:text-foreground',
|
||||
day: 'group size-9 px-0 py-px text-sm',
|
||||
range_start: 'range-start',
|
||||
range_end: 'range-end',
|
||||
range_middle: 'range-middle',
|
||||
today:
|
||||
'*:after:pointer-events-none *:after:absolute *:after:bottom-1 *:after:start-1/2 *:after:z-10 *:after:size-[3px] *:after:-translate-x-1/2 *:after:rounded-full *:after:bg-primary [&[data-selected]:not(.range-middle)>*]:after:bg-background [&[data-disabled]>*]:after:bg-foreground/30 *:after:transition-colors',
|
||||
outside:
|
||||
'text-muted-foreground data-selected:bg-accent/50 data-selected:text-muted-foreground',
|
||||
hidden: 'invisible',
|
||||
week_number: 'size-9 p-0 text-xs font-medium text-muted-foreground/80',
|
||||
};
|
||||
|
||||
const mergedClassNames: typeof defaultClassNames = Object.keys(
|
||||
defaultClassNames,
|
||||
).reduce(
|
||||
(acc, key) => ({
|
||||
...acc,
|
||||
[key]: classNames?.[key as keyof typeof classNames]
|
||||
? cn(
|
||||
defaultClassNames[key as keyof typeof defaultClassNames],
|
||||
classNames[key as keyof typeof classNames],
|
||||
)
|
||||
: defaultClassNames[key as keyof typeof defaultClassNames],
|
||||
}),
|
||||
{} as typeof defaultClassNames,
|
||||
);
|
||||
|
||||
const defaultComponents = {
|
||||
Chevron: (props: {
|
||||
className?: string;
|
||||
size?: number;
|
||||
disabled?: boolean;
|
||||
orientation?: 'left' | 'right' | 'up' | 'down';
|
||||
}) => {
|
||||
if (props.orientation === 'left') {
|
||||
return <ChevronLeftIcon size={16} {...props} aria-hidden="true" />;
|
||||
}
|
||||
return <ChevronRightIcon size={16} {...props} aria-hidden="true" />;
|
||||
},
|
||||
};
|
||||
|
||||
const mergedComponents = {
|
||||
...defaultComponents,
|
||||
...userComponents,
|
||||
};
|
||||
|
||||
return (
|
||||
<DayPicker
|
||||
showOutsideDays={showOutsideDays}
|
||||
className={cn('w-fit', className)}
|
||||
classNames={mergedClassNames}
|
||||
components={mergedComponents}
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
export { Calendar, DateRange };
|
||||
Reference in New Issue
Block a user