-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCalendarInput.jsx
More file actions
131 lines (124 loc) · 3.35 KB
/
CalendarInput.jsx
File metadata and controls
131 lines (124 loc) · 3.35 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import i18n from '@dhis2/d2-i18n'
import { Button, Card, InputField, Layer, Popper, Calendar } from '@dhis2/ui'
import PropTypes from 'prop-types'
import React, { useRef, useState } from 'react'
import styles from './styles/CalendarInput.style.js'
const offsetModifier = {
name: 'offset',
options: {
offset: [0, 2],
},
}
export const CalendarInput = ({
onDateSelect,
calendar,
date,
dir,
locale,
numberingSystem,
weekDayFormat,
timeZone,
width,
cellSize,
clearable,
dataTest = 'calendar-inputfield',
...rest
} = {}) => {
const ref = useRef()
const [open, setOpen] = useState(false)
const calendarProps = React.useMemo(() => {
const onDateSelectWrapper = (selectedDate) => {
setOpen(false)
onDateSelect?.(selectedDate)
}
return {
onDateSelect: onDateSelectWrapper,
calendar,
date,
dir,
locale,
numberingSystem,
weekDayFormat,
timeZone,
width,
cellSize,
}
}, [
calendar,
cellSize,
date,
dir,
locale,
numberingSystem,
onDateSelect,
timeZone,
weekDayFormat,
width,
])
const onFocus = () => {
setOpen(true)
}
const onChange = (e) => {
setOpen(false)
rest.onChange(e)
}
return (
<>
<div className="calendarInputWrapper" ref={ref}>
<InputField
{...rest}
dataTest={dataTest}
type="text"
onFocus={onFocus}
onChange={onChange}
value={date}
/>
{clearable && (
<div className="calendarClearButton">
<Button
dataTest="calendar-clear-button"
secondary
small
onClick={() => calendarProps.onDateSelect(null)}
type="button"
>
{i18n.t('Clear')}
</Button>
</div>
)}
</div>
{open && (
<Layer
onBackdropClick={() => {
setOpen(false)
}}
>
<Popper
reference={ref}
placement="bottom-start"
modifiers={[offsetModifier]}
>
<Card>
<Calendar {...calendarProps} date={date} />
</Card>
</Popper>
</Layer>
)}
<style jsx>{styles}</style>
</>
)
}
CalendarInput.propTypes = {
calendar: PropTypes.object,
cellSize: PropTypes.number,
clearable: PropTypes.bool,
dataTest: PropTypes.string,
date: PropTypes.string,
dir: PropTypes.string,
locale: PropTypes.string,
numberingSystem: PropTypes.string,
timeZone: PropTypes.string,
weekDayFormat: PropTypes.string,
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
onDateSelect: PropTypes.func,
}