Created component for DateTimeInputs

This commit is contained in:
Alejandro Celaya
2022-10-18 22:02:09 +02:00
parent 894934fd08
commit 57a17d7e92
3 changed files with 19 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ import './DateInput.scss';
export type DateInputProps = ReactDatePickerProps;
export const DateInput = (props: DateInputProps) => {
const { className, isClearable, selected } = props;
const { className, isClearable, selected, dateFormat } = props;
const showCalendarIcon = !isClearable || isNil(selected);
const ref = useRef<{ input: HTMLInputElement }>();
@@ -23,7 +23,7 @@ export const DateInput = (props: DateInputProps) => {
options: { padding: 24 }, // This prevents the arrow to be placed on the very edge, which looks ugly
},
]}
dateFormat="yyyy-MM-dd"
dateFormat={dateFormat ?? 'yyyy-MM-dd'}
className={classNames('date-input-container__input form-control', className)}
// @ts-expect-error The DatePicker type definition is wrong. It has a ref prop
ref={ref}

View File

@@ -0,0 +1,14 @@
import { ReactDatePickerProps } from 'react-datepicker';
import { FC } from 'react';
import { DateInput } from '../DateInput';
export type DateTimeInputProps = Omit<ReactDatePickerProps, 'showTimeSelect' | 'dateFormat' | 'timeIntervals'>;
export const DateTimeInput: FC<DateTimeInputProps> = (props) => (
<DateInput
{...props}
dateFormat="yyyy-MM-dd HH:mm"
showTimeSelect
timeIntervals={5}
/>
);