-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDatepicker.tsx
276 lines (255 loc) · 9.66 KB
/
Datepicker.tsx
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
import React, {useState, useEffect, useRef, MouseEvent} from 'react';
import {motion, AnimatePresence} from 'framer-motion';
import {ChevronLeft, ChevronRight, ChevronsLeft, ChevronsRight, ChevronUp, Dot} from 'lucide-react';
const MONTHS = [
'January',
'Febuary',
'March',
'April',
'May',
'June',
'July',
'August',
'September',
'October',
'November',
'December',
];
const DAYS = ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa']
export interface DatePickerProps {
onChange: (date: Date) => void;
}
/**
*
* @param element
*/
function isNode(element: EventTarget | null): element is Node {
return element instanceof Node;
}
/**
*
* @param root0
* @param root0.onChange
*/
export default function DatePicker({onChange}: DatePickerProps) {
const [month, setMonth] = useState(new Date().getMonth());
const [year, setYear] = useState(new Date().getFullYear());
const [no_of_days, setNumDays] = useState<number[]>([]);
const [blankdays, setBlankDays] = useState<number[]>([]);
const [showDatepicker, setShowDatepicker] = useState(false);
const [date, setDate] = useState<Date>(new Date());
const ref = useRef<HTMLDivElement>(null);
useEffect(() => {
const checkIfClickedOutside = (e: MouseEvent) => {
if (ref.current && !isNode(e.target)) {
setShowDatepicker(false);
}
};
const eventListener: EventListener = e => checkIfClickedOutside(e as unknown as MouseEvent);
document.addEventListener('click', eventListener);
return () => {
document.removeEventListener('click', eventListener);
};
}, [setShowDatepicker]);
useEffect(() => {
getNoOfDays();
}, [month, year]);
const isToday = (date: number) => {
const today = new Date();
const d = new Date(year, month, date);
return today.toDateString() === d.toDateString();
};
const isSelectedDate = (pickedDay: number) => {
const newDate = new Date(year, month, pickedDay);
return newDate.toDateString() == date.toDateString();
};
const getNoOfDays = () => {
const daysInMonth = new Date(year, month + 1, 0).getDate();
const dayOfWeek = new Date(year, month).getDay();
const blankDaysArray = Array.from({ length: dayOfWeek }, (_, index) => index + 1);
const daysArray = Array.from({ length: daysInMonth }, (_, index) => index + 1);
setBlankDays(blankDaysArray);
setNumDays(daysArray);
};
return (
<div className="mx-auto px-4 py-2" ref={ref}>
<div className="w-80">
<div className="relative">
<div
onClick={() => {
setShowDatepicker(() => !showDatepicker);
}}
className="flex justify-center items-center border border-neutral-100 rounded m-2 w-auto h-8 cursor-pointer text-neutral-800 bg-white"
>
<p className="text-sm mx-4">{date.toDateString()}</p>
<motion.span
animate={{rotate: showDatepicker ? 180 : 0}}
transition={{
duration: 0.2,
ease: 'easeInOut',
}}
>
<ChevronUp />
</motion.span>
</div>
<AnimatePresence initial={false}>
{showDatepicker && (
<motion.div
className="bg-white mt-10 rounded shadow p-4 absolute top-0 left-0 w-full"
initial="collapsed"
animate="open"
exit="collapsed"
variants={{
open: {opacity: 1},
collapsed: {opacity: 0},
}}
transition={{duration: 0.3, ease: 'easeInOut'}}
>
<motion.div
className="flex justify-between items-center mb-3"
initial="collapsed"
animate="open"
exit="collapsed"
variants={{
open: {opacity: 1},
collapsed: {opacity: 0},
}}
transition={{duration: 0.3, ease: 'easeInOut'}}
>
<div>
<span className="text-lg font-bold text-neutral-800">{MONTHS[month]}</span>
<span className="ml-1 text-lg text-neutral-600 font-normal ">{year}</span>
</div>{' '}
<div>
<button
type="button"
className="transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-spring-wood-100 p-0.5 rounded-full"
onClick={() => {
setYear(prev => prev - 1);
}}
>
<ChevronsLeft size={20} />
</button>
<button
type="button"
className="transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-spring-wood-100 p-0.5 rounded-full"
onClick={() => {
if (month == 0) {
setYear(prev => prev - 1);
setMonth(11);
} else {
setMonth(prev => prev - 1);
}
}}
>
<ChevronLeft size={20} />
</button>
<button
type="button"
className="transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-spring-wood-100 p-0.5 rounded-full"
onClick={() => {
setMonth(new Date().getMonth());
setYear(new Date().getFullYear());
}}
>
<Dot size={20} />
</button>
<button
type="button"
className="transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-spring-wood-100 p-0.5 rounded-full"
onClick={() => {
if (month == 11) {
setYear(prev => prev + 1);
setMonth(0);
} else {
setMonth(prev => prev + 1);
}
}}
>
<ChevronRight size={20} />
</button>
<button
type="button"
className="transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-spring-wood-100 p-0.5 rounded-full"
onClick={() => {
setYear(prev => prev + 1);
}}
>
<ChevronsRight size={20} />
</button>
</div>
</motion.div>
<motion.div
className="mb-3 -mx-1 grid grid-cols-7"
initial="collapsed"
animate="open"
exit="collapsed"
variants={{
open: {opacity: 1},
collapsed: {opacity: 0},
}}
transition={{duration: 0.3, ease: 'easeInOut'}}
>
{DAYS.map((day, index) => {
return (
<div className="px-1" key={index}>
<div key={index} className="text-neutral-800 font-medium text-center text-xs w-7 ">
{day}
</div>
</div>
);
})}
</motion.div>
<motion.div
className="flex-wrap -mx-1 grid grid-cols-7"
initial="collapsed"
animate="open"
exit="collapsed"
variants={{
open: {opacity: 1},
collapsed: {opacity: 0},
}}
transition={{duration: 0.3, ease: 'easeInOut'}}
>
{blankdays.map((day, index) => {
return (
<div className="px-1 mb-1" key={index}>
<div
key={index}
className="cursor-pointer text-center text-sm rounded-lg leading-loose w-7 text-neutral-700"
>
{}
</div>
</div>
);
})}
{no_of_days.map((day, index) => {
return (
<div className="px-1 mb-1" key={index}>
<button
key={index}
onClick={e => {
e.preventDefault();
const selectedDate = new Date(year, month, day);
setDate(selectedDate);
onChange(new Date(year, month, day));
setShowDatepicker(false);
}}
className={`${isToday(day) ? 'border border-neutral-300' : ''} ${
isSelectedDate(day) ? 'bg-neutral-200' : 'white'
} cursor-pointer text-center text-sm rounded-lg leading-loose w-7 hover:bg-neutral-200 transition ease-in-out`}
>
{day}
</button>
</div>
);
})}
</motion.div>
</motion.div>
)}
</AnimatePresence>
</div>
</div>
</div>
);
}