-
Notifications
You must be signed in to change notification settings - Fork 1
/
DatePicker.js
85 lines (74 loc) · 2.15 KB
/
DatePicker.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// @flow
import React, { useEffect, useRef, useState } from 'react';
import Calendar from 'react-calendar';
import { Icon, Transition } from 'semantic-ui-react';
import DateInput from './DateInput';
import './DatePicker.css';
type Props = {
closeOnSelection?: boolean,
formatOptions?: any,
locale?: string,
onChange: (date: ?Date) => void,
value: ?Date
};
const DatePicker = (props: Props) => {
const [calendar, setCalendar] = useState(false);
const calendarWrapper = useRef<any>(null);
const onDocumentClick = (event: Event) => {
const calendarInstance = calendarWrapper.current;
if (calendarInstance && !calendarInstance.contains(event.target)) {
setCalendar(false);
}
};
useEffect(() => {
// Bind the event listener
document.addEventListener('mousedown', onDocumentClick);
// Unbind the event listener
return () => document.removeEventListener('mousedown', onDocumentClick);
}, [calendarWrapper]);
return (
<>
<DateInput
formatOptions={props.formatOptions}
locale={props.locale}
onChange={props.onChange.bind(this)}
onClick={() => setCalendar(true)}
value={props.value}
/>
<Transition
visible={calendar}
>
<div
ref={calendarWrapper}
style={{
position: 'absolute',
zIndex: '999'
}}
>
<Calendar
locale={props.locale}
onChange={(date) => {
props.onChange(date);
if (props.closeOnSelection) {
setCalendar(false);
}
}}
next2AriaLabel='Next Year'
next2Label={<Icon name='angle double right' />}
nextAriaLabel='Next Month'
nextLabel={<Icon name='chevron right' />}
prev2AriaLabel='Previous Year'
prev2Label={<Icon name='angle double left' />}
prevAriaLabel='Previous Month'
prevLabel={<Icon name='chevron left' />}
value={props.value}
/>
</div>
</Transition>
</>
);
};
DatePicker.defaultProps = {
closeOnSelection: true
};
export default DatePicker;