import Calendar from 'components/common/Calendar'; import { FormButtons } from 'components/layout/FormLayout'; import { isAfter, isBefore, isSameDay } from 'date-fns'; import { getDateRangeValues } from 'lib/date'; import { useState } from 'react'; import { Button, ButtonGroup } from 'react-basics'; import { FormattedMessage } from 'react-intl'; import styles from './DatePickerForm.module.css'; const FILTER_DAY = 0; const FILTER_RANGE = 1; export default function DatePickerForm({ startDate: defaultStartDate, endDate: defaultEndDate, minDate, maxDate, onChange, onClose, }) { const [selected, setSelected] = useState( isSameDay(defaultStartDate, defaultEndDate) ? FILTER_DAY : FILTER_RANGE, ); const [date, setDate] = useState(defaultStartDate); const [startDate, setStartDate] = useState(defaultStartDate); const [endDate, setEndDate] = useState(defaultEndDate); const disabled = selected === FILTER_DAY ? isAfter(minDate, date) && isBefore(maxDate, date) : isAfter(startDate, endDate); const buttons = [ { label: , value: FILTER_DAY, }, { label: , value: FILTER_RANGE, }, ]; function handleSave() { if (selected === FILTER_DAY) { onChange({ ...getDateRangeValues(date, date), value: 'custom' }); } else { onChange({ ...getDateRangeValues(startDate, endDate), value: 'custom' }); } } return (
{selected === FILTER_DAY ? ( ) : ( <> )}
); }