shlink-web-client/shlink-web-component/utils/dates/DateInput.tsx

43 lines
1.5 KiB
TypeScript
Raw Normal View History

2023-02-18 13:11:01 +03:00
import { faCalendarAlt as calendarIcon } from '@fortawesome/free-regular-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import classNames from 'classnames';
import { isNil } from 'ramda';
2023-02-18 13:11:01 +03:00
import { useRef } from 'react';
2023-02-18 12:40:37 +03:00
import type { ReactDatePickerProps } from 'react-datepicker';
import DatePicker from 'react-datepicker';
import { STANDARD_DATE_FORMAT } from './helpers/date';
2018-09-08 14:28:40 +03:00
import './DateInput.scss';
2018-07-31 22:24:34 +03:00
export type DateInputProps = ReactDatePickerProps;
export const DateInput = (props: DateInputProps) => {
2022-10-18 23:02:09 +03:00
const { className, isClearable, selected, dateFormat } = props;
const showCalendarIcon = !isClearable || isNil(selected);
const ref = useRef<{ input: HTMLInputElement }>();
2018-08-09 21:13:46 +03:00
return (
2023-03-14 10:50:53 +03:00
<div className="icon-input-container">
<DatePicker
{...props}
popperModifiers={[
{
name: 'arrow',
options: { padding: 24 }, // This prevents the arrow to be placed on the very edge, which looks ugly
},
]}
dateFormat={dateFormat ?? STANDARD_DATE_FORMAT}
2023-03-14 10:50:53 +03:00
className={classNames('icon-input-container__input form-control', className)}
// @ts-expect-error The DatePicker type definition is wrong. It has a ref prop
ref={ref}
/>
{showCalendarIcon && (
<FontAwesomeIcon
icon={calendarIcon}
2023-03-14 10:50:53 +03:00
className="icon-input-container__icon"
2020-08-26 21:03:23 +03:00
onClick={() => ref.current?.input.focus()}
2018-07-31 22:24:34 +03:00
/>
)}
</div>
);
};