2022-09-01 10:09:08 +00:00
|
|
|
// @see: https://github.com/wojtekmaj/react-daterange-picker/issues/91
|
|
|
|
import "@wojtekmaj/react-daterange-picker/dist/DateRangePicker.css";
|
|
|
|
import PrimitiveDateRangePicker from "@wojtekmaj/react-daterange-picker/dist/entry.nostyle";
|
|
|
|
|
2023-01-26 22:51:03 +00:00
|
|
|
import { FiArrowRight, FiCalendar, FiChevronLeft, FiChevronRight } from "../../icon";
|
2022-11-23 02:55:25 +00:00
|
|
|
import "./styles.css";
|
2022-09-01 10:09:08 +00:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
disabled?: boolean | undefined;
|
|
|
|
startDate: Date;
|
|
|
|
endDate: Date;
|
|
|
|
onDatesChange?: ((arg: { startDate: Date; endDate: Date }) => void) | undefined;
|
|
|
|
};
|
|
|
|
|
|
|
|
const DateRangePicker = ({ disabled, startDate, endDate, onDatesChange }: Props) => {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<PrimitiveDateRangePicker
|
|
|
|
disabled={disabled || false}
|
|
|
|
className="rounded-sm border-gray-300 text-sm"
|
|
|
|
clearIcon={null}
|
2023-01-23 23:08:01 +00:00
|
|
|
calendarIcon={<FiCalendar className="h-4 w-4 text-gray-500" />}
|
|
|
|
rangeDivider={<FiArrowRight className="h-4 w-4 text-gray-400 ltr:mr-2 rtl:ml-2" />}
|
2022-09-01 10:09:08 +00:00
|
|
|
value={[startDate, endDate]}
|
|
|
|
onChange={([startDate, endDate]: [Date, Date]) => {
|
|
|
|
if (typeof onDatesChange === "function") onDatesChange({ startDate, endDate });
|
|
|
|
}}
|
2023-01-23 23:08:01 +00:00
|
|
|
nextLabel={<FiChevronRight className="h-4 w-4 text-gray-500" />}
|
|
|
|
prevLabel={<FiChevronLeft className="h-4 w-4 text-gray-500" />}
|
2022-09-01 10:09:08 +00:00
|
|
|
/>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default DateRangePicker;
|