-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathcalendar.tsx
461 lines (410 loc) · 18.3 KB
/
calendar.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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
import React, { FC, FocusEvent, KeyboardEvent, MouseEvent, useEffect, useRef, useState } from 'react'
import { EbayIconButton } from '../ebay-icon-button'
import { DayISO, fromISO, getWeekdayInfo, localeOverride, offsetISO, toISO } from './date-utils'
import classNames from 'classnames'
export type EbayCalendarProps = {
selected?: DayISO | DayISO[];
numMonths?: number;
navigable?: boolean;
interactive?: boolean;
range?: boolean;
locale?: string;
disableBefore?: DayISO;
disableAfter?: DayISO;
disableWeekdays?: number[];
disableList?: DayISO[];
getA11yShowMonthText?: (monthTitle: string) => string;
a11ySelectedText?: string;
a11yRangeStartText?: string;
a11yInRangeText?: string;
a11yRangeEndText?: string;
a11ySeparator?: string;
a11yTodayText?: string;
a11yDisabledText?: string;
linkBuilder?: (iso: DayISO) => string;
onMonthChange?: ({ iso }: { iso: DayISO }) => void;
onFocus?: (event: MouseEvent | KeyboardEvent | FocusEvent, { iso }: { iso: DayISO }) => void;
onSelect?: (event: MouseEvent, { iso }: { iso: DayISO }) => void;
}
const DAY_UPDATE_KEYMAP = {
ArrowRight: 1,
ArrowLeft: -1,
ArrowDown: 7,
ArrowUp: -7
}
const EbayCalendar: FC<EbayCalendarProps> = ({
selected,
numMonths = 1,
navigable,
interactive,
range,
locale,
disableBefore,
disableAfter,
disableWeekdays,
disableList,
a11ySelectedText = 'selected',
a11yRangeStartText = 'start of range',
a11yInRangeText = 'in range',
a11yRangeEndText = 'end of range',
a11ySeparator = '-',
a11yTodayText = 'today',
a11yDisabledText = 'inactive',
getA11yShowMonthText = (monthTitle) => `Show ${monthTitle}`,
linkBuilder,
onMonthChange = () => {},
onFocus = () => {},
onSelect = () => {}
}) => {
const todayISO = toISO(new Date())
const { firstDayOfWeek, weekdayLabels } = getWeekdayInfo(localeOverride(locale))
const containerRef = useRef<HTMLDivElement>(null)
const [offset, setOffset] = useState(0)
const [focusISO, setFocusISO] = useState(null)
const [tabIndexISO, setTabIndexISO] = useState(todayISO)
const baseISO = useRef(todayISO)
const getMonthDate = (monthOffset: number) => {
const baseDate = fromISO(baseISO.current)
const date = new Date(
Date.UTC(
baseDate.getUTCFullYear(),
baseDate.getUTCMonth() + monthOffset
)
)
return date
}
const getFirstVisibleISO = () =>
toISO(getMonthDate(offset))
const getLastVisibleISO = () => {
const baseDate = fromISO(baseISO.current)
return toISO(
new Date(
Date.UTC(
baseDate.getUTCFullYear(),
baseDate.getUTCMonth() + offset + (numMonths || 1),
0
)
)
)
}
useEffect(() => {
if (selected) {
const selectedISOs = Array.isArray(selected) ? selected : [selected]
const currFirstISO = getFirstVisibleISO()
const currLastISO = getLastVisibleISO()
const selectedTimeInView = selectedISOs.find(
(iso) => iso >= currFirstISO && iso <= currLastISO
)
if (selectedTimeInView === undefined) {
baseISO.current = selectedISOs[0]
setOffset(0)
}
}
}, [selected])
const calculateRangeDisplay = () => {
if (selected && range) {
let iso1: DayISO | undefined
let iso2: DayISO | undefined
if (Array.isArray(selected)) {
// Two elements are selected, we can use them as the ends of the range.
[iso1, iso2] = selected
} else if (focusISO) {
// One element is selected and the user is focused on a date,
// so we use the selected component and the focus date instead
iso1 = selected
iso2 = focusISO
}
if (iso1 && iso2) {
const [start, end] = [iso1, iso2].sort()
return {
rangeStart: start,
rangeEnd: end
}
}
}
return {
rangeStart: null,
rangeEnd: null
}
}
const monthTitle = (date: Date) => {
const formatter = new Intl.DateTimeFormat(localeOverride(locale), {
month: 'long',
year: 'numeric'
})
return formatter.format(
new Date(date.getUTCFullYear(), date.getUTCMonth())
)
}
const isDayDisabled = (iso: DayISO) =>
(disableBefore && iso < disableBefore) ||
(disableAfter && iso > disableAfter) ||
(disableWeekdays && disableWeekdays.includes(fromISO(iso).getUTCDay())) ||
(disableList && disableList.includes(iso))
const getFirstActiveISO = () => {
let iso = getFirstVisibleISO()
const lastVisible = getLastVisibleISO()
while (iso <= lastVisible && isDayDisabled(iso)) {
iso = offsetISO(iso, 1)
}
return iso > lastVisible ? null : iso
}
const getLastActiveISO = () => {
let iso = getLastVisibleISO()
const firstVisible = getFirstVisibleISO()
while (iso >= firstVisible && isDayDisabled(iso)) {
iso = offsetISO(iso, -1)
}
return iso < firstVisible ? null : iso
}
const setTabindexAndFocus = (iso: DayISO) => {
setTabIndexISO(iso)
setTimeout(() => {
const elementToFocus = containerRef.current?.querySelector(`[data-iso="${iso}"]`) as HTMLButtonElement
elementToFocus?.focus()
})
}
const prevMonth = (focus?: boolean) => {
if (disableBefore && getFirstVisibleISO() <= disableBefore) {
return false
}
setOffset((currentOffset) => currentOffset - 1)
let newTabIndexISO = tabIndexISO
const lastActiveISO = getLastActiveISO()
if (lastActiveISO && lastActiveISO < tabIndexISO) {
newTabIndexISO = lastActiveISO
setTabIndexISO(lastActiveISO)
}
if (focus) {
setTabindexAndFocus(newTabIndexISO)
}
onMonthChange({
iso: toISO(getMonthDate(offset))
})
return true
}
const nextMonth = (focus?: boolean) => {
if (disableAfter && getLastVisibleISO() >= disableAfter) {
return false
}
setOffset((currentOffset) => currentOffset + 1)
let newTabIndexISO = tabIndexISO
const firstActiveISO = getFirstActiveISO()
if (firstActiveISO && firstActiveISO > tabIndexISO) {
newTabIndexISO = firstActiveISO
setTabIndexISO(firstActiveISO)
}
if (focus) {
setTabindexAndFocus(newTabIndexISO)
}
onMonthChange({
iso: toISO(getMonthDate(offset + (numMonths || 1)))
})
}
const onKeyDown = (event: KeyboardEvent) => {
const dayChange = DAY_UPDATE_KEYMAP[event.key as keyof typeof DAY_UPDATE_KEYMAP]
if (dayChange) {
event.preventDefault()
let tries = 7
let iso = tabIndexISO
do {
iso = offsetISO(iso, dayChange)
} while (tries-- > 0 && isDayDisabled(iso))
if (tries > 0) {
const firstVisible = getFirstVisibleISO()
const lastVisible = getLastVisibleISO()
if (iso < firstVisible) {
if (navigable) {
prevMonth()
} else {
iso = firstVisible
}
} else if (iso > lastVisible) {
if (navigable) {
nextMonth()
} else {
iso = lastVisible
}
}
setTabindexAndFocus(iso)
}
} else {
switch (event.key) {
case 'PageUp':
prevMonth(true)
break
case 'PageDown':
nextMonth(true)
break
case 'Home':
setTabindexAndFocus(getFirstActiveISO())
break
case 'End':
setTabindexAndFocus(getLastActiveISO())
break
default:
}
}
}
const onDaySelect = (event: MouseEvent, iso: DayISO) => {
onSelect(event, { iso })
}
const onDayFocus = (event: FocusEvent | MouseEvent, day: DayISO) => {
setFocusISO(day)
setTabIndexISO(day)
onFocus(event, { iso: day })
}
const onDayBlur = () => {
setFocusISO(null)
}
const { rangeStart, rangeEnd } = calculateRangeDisplay()
const isDayInRange = (iso: DayISO) => {
if (!rangeStart || !rangeEnd) {
return false
}
if (iso < rangeStart || iso > rangeEnd) {
return false
}
return true
}
const monthDates = [...Array(numMonths)].map((_, i) => getMonthDate(offset + i))
return (
<div className="calendar" ref={containerRef}>
{navigable && (
<div className="calendar__header">
<div className="calendar__header--inner">
<EbayIconButton
transparent
size="small"
icon="chevronLeft24"
disabled={disableBefore && getFirstVisibleISO() <= disableBefore}
aria-label={getA11yShowMonthText(monthTitle(getMonthDate(offset - 1)))}
onClick={() => prevMonth()} />
{monthDates.map((monthDate, i) => (
<h3 key={i}>{monthTitle(monthDate)}</h3>
))}
<EbayIconButton
transparent
size="small"
icon="chevronRight24"
disabled={disableAfter && getLastVisibleISO() >= disableAfter}
aria-label={getA11yShowMonthText(monthTitle(getMonthDate(offset + numMonths)))}
onClick={() => nextMonth()} />
</div>
</div>
)}
<div className="calendar__body">
{monthDates.map((monthDate, i) => {
const numBlankDays = (monthDate.getUTCDay() - firstDayOfWeek + 7) % 7
const year = monthDate.getUTCFullYear()
const month = monthDate.getUTCMonth()
const daysInMont = new Date(year, month + 1, 0).getDate()
const calendarRows = [...Array(Math.ceil((numBlankDays + daysInMont) / 7))]
return (
<div key={i} className="calendar__month">
<table onKeyDown={onKeyDown}>
<caption>{monthTitle(monthDate)}</caption>
<thead>
<tr>
{weekdayLabels.map((dayName) => (
<th key={dayName} scope="col">{dayName}</th>
))}
</tr>
</thead>
<tbody>
{calendarRows.map((_, row) => {
let startDate = row * 7 - numBlankDays + 1
let endDate = startDate + 6
const columns = []
if (row === 0 && numBlankDays !== 0) {
startDate = 1
columns.push(<td key="pre-column" colSpan={numBlankDays} />)
} else if (endDate > daysInMont) {
endDate = daysInMont
}
for (let day = startDate; day <= endDate; day++) {
const dayISO = toISO(new Date(Date.UTC(year, month, day)))
const isToday = dayISO === todayISO
const isSelected = Array.isArray(selected)
? selected.some((iso) => iso === dayISO)
: selected === dayISO
const isRangeStart = dayISO === rangeStart
const isInRange = isDayInRange(dayISO)
const isRangeEnd = dayISO === rangeEnd
const isDisabled = isDayDisabled(dayISO)
const a11yTexts = [
'',
isSelected && a11ySelectedText,
isRangeStart && a11yRangeStartText,
!isRangeStart && !isRangeEnd && isInRange && a11yInRangeText,
isRangeEnd && a11yRangeEndText,
!interactive && isToday && a11yTodayText,
!interactive && isDisabled && a11yDisabledText
].filter((value) => typeof value !== 'boolean' || value !== false)
const link =
!interactive && !isDisabled && linkBuilder && linkBuilder(dayISO)
const NonInteractiveTag = link ? 'a' : 'span'
columns.push(
<td
key={day}
className={classNames({
'calendar__cell--selected': isSelected,
'calendar__range--start': isRangeStart,
'calendar__range': isInRange,
'calendar__range--end': isRangeEnd
})}>
{interactive ? (
<button
disabled={isDisabled}
aria-label={a11yTexts.length > 1
? `${day}${a11yTexts.join(a11ySeparator)}`
: undefined
}
tabIndex={tabIndexISO !== dayISO ? -1 : undefined}
aria-current={isToday ? 'date' : undefined}
aria-pressed={isSelected ? 'true' : undefined}
onClick={(event: MouseEvent) => onDaySelect(event, dayISO)}
onFocus={(event: FocusEvent) => onDayFocus(event, dayISO)}
onMouseOver={
(event: MouseEvent) => onDayFocus(event, dayISO)
}
onMouseOut={(event: MouseEvent) => onDayBlur()}
onBlur={() => onDayBlur()}
data-iso={dayISO}
>
{day}
</button>
) : (
<NonInteractiveTag
className={classNames({
'calendar__cell--disabled': isDisabled,
'calendar__cell--current': isToday
})}
href={link}>
{day}
{a11yTexts.length > 1 && (
<span className="clipped">
{a11yTexts.join(a11ySeparator)}
</span>
)}
</NonInteractiveTag>
)}
</td>
)
}
return (
<tr key={row}>
{columns}
</tr>
)
})}
</tbody>
</table>
</div>
)
})}
</div>
</div>
)
}
export default EbayCalendar