-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Expand file tree
/
Copy pathcalendar-picker-view.tsx
More file actions
422 lines (378 loc) · 12.9 KB
/
calendar-picker-view.tsx
File metadata and controls
422 lines (378 loc) · 12.9 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
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
import classNames from 'classnames'
import dayjs from 'dayjs'
import isoWeek from 'dayjs/plugin/isoWeek'
import isSameOrBefore from 'dayjs/plugin/isSameOrBefore'
import React, {
forwardRef,
ReactNode,
useContext,
useEffect,
useImperativeHandle,
useMemo,
useRef,
useState,
} from 'react'
import { NativeProps, withNativeProps } from '../../utils/native-props'
import { usePropsValue } from '../../utils/use-props-value'
import { mergeProps } from '../../utils/with-default-props'
import { useConfig } from '../config-provider'
import {
convertPageToDayjs,
convertValueToRange,
DateRange,
Page,
} from './convert'
import useSyncScroll from './useSyncScroll'
dayjs.extend(isoWeek)
dayjs.extend(isSameOrBefore)
const classPrefix = 'adm-calendar-picker-view'
export const Context = React.createContext<{
visible: boolean
}>({
visible: false,
})
export type CalendarPickerViewRef = {
jumpTo: (page: Page | ((page: Page) => Page)) => void
jumpToToday: () => void
getDateRange: () => DateRange
}
export type CalendarPickerViewColumRender = (date: Date) => ReactNode
export type CalendarPickerViewProps = {
title?: React.ReactNode | false
confirmText?: string
weekStartsOn?: 'Monday' | 'Sunday'
renderTop?: CalendarPickerViewColumRender | false
renderDate?: CalendarPickerViewColumRender
renderBottom?: CalendarPickerViewColumRender | false
allowClear?: boolean
max?: Date
min?: Date
shouldDisableDate?: (date: Date) => boolean
} & (
| {
selectionMode?: undefined
value?: undefined
defaultValue?: undefined
onChange?: undefined
}
| {
selectionMode: 'single'
value?: Date | null
defaultValue?: Date | null
onChange?: (val: Date | null) => void
}
| {
selectionMode: 'range'
value?: [Date, Date] | null
defaultValue?: [Date, Date] | null
onChange?: (val: [Date, Date] | null) => void
}
) &
NativeProps
const defaultProps = {
weekStartsOn: 'Sunday',
defaultValue: null,
allowClear: true,
usePopup: true,
selectionMode: 'single',
}
export const CalendarPickerView = forwardRef<
CalendarPickerViewRef,
CalendarPickerViewProps
>((p, ref) => {
const bodyRef = useRef<HTMLDivElement>(null)
const today = dayjs()
const props = mergeProps(defaultProps, p)
const { locale } = useConfig()
const markItems = [...locale.Calendar.markItems]
if (props.weekStartsOn === 'Sunday') {
const item = markItems.pop()
if (item) markItems.unshift(item)
}
const [dateRange, setDateRange] = usePropsValue<DateRange>({
value:
props.value === undefined
? undefined
: convertValueToRange(props.selectionMode, props.value),
defaultValue: convertValueToRange(props.selectionMode, props.defaultValue),
onChange: v => {
if (props.selectionMode === 'single') {
props.onChange?.(v ? v[0] : null)
} else if (props.selectionMode === 'range') {
props.onChange?.(v)
}
},
})
const [intermediate, setIntermediate] = useState(false)
const [current, setCurrent] = useState(() =>
dayjs(dateRange ? dateRange[0] : today).date(1)
)
const onDateChange = (v: DateRange) => {
if (v) {
setCurrent(dayjs(v[0]).date(1))
}
setDateRange(v)
}
const showHeader = props.title !== false
// =============================== Scroll ===============================
const context = useContext(Context)
const scrollTo = useSyncScroll(current, context.visible, bodyRef)
// ============================== Boundary ==============================
// 记录默认的 min 和 max,并在外部的值超出边界时自动扩充
const [defaultMin, setDefaultMin] = useState(current)
const [defaultMax, setDefaultMax] = useState(() => current.add(6, 'month'))
useEffect(() => {
if (dateRange) {
const [startDate, endDate] = dateRange
if (!props.min && startDate && dayjs(startDate).isBefore(defaultMin)) {
setDefaultMin(dayjs(startDate).date(1))
}
if (!props.max && endDate && dayjs(endDate).isAfter(defaultMax)) {
setDefaultMax(dayjs(endDate).endOf('month'))
}
}
}, [dateRange])
const maxDay = useMemo(
() => (props.max ? dayjs(props.max) : defaultMax),
[props.max, defaultMax]
)
const minDay = useMemo(
() => (props.min ? dayjs(props.min) : defaultMin),
[props.min, defaultMin]
)
// ================================ Refs ================================
const jumpToPage = (page: Page) => {
const next = convertPageToDayjs(page)
if (!props.min && next.isBefore(defaultMin)) {
setDefaultMin(next.date(1))
}
if (!props.max && next.isAfter(defaultMax)) {
setDefaultMax(next.endOf('month'))
}
setCurrent(next)
scrollTo(next)
}
useImperativeHandle(ref, () => ({
jumpTo: pageOrPageGenerator => {
let page: Page
if (typeof pageOrPageGenerator === 'function') {
page = pageOrPageGenerator({
year: current.year(),
month: current.month() + 1,
})
} else {
page = pageOrPageGenerator
}
jumpToPage(page)
},
jumpToToday: () => {
const today = dayjs()
jumpToPage({ year: today.year(), month: today.month() + 1 })
},
getDateRange: () => dateRange,
}))
// =============================== Render ===============================
const header = (
<div className={`${classPrefix}-header`}>
<div className={`${classPrefix}-title`}>
{props.title ?? locale.Calendar.title}
</div>
</div>
)
function renderBody() {
const cells: ReactNode[] = []
let monthIterator = minDay
// 遍历月份
while (monthIterator.isSameOrBefore(maxDay, 'month')) {
const year = monthIterator.year()
const month = monthIterator.month() + 1
const renderMap = {
year,
month,
}
const yearMonth = `${year}-${month}`
// 获取需要预先填充的空格,如果是 7 天则不需要填充
const presetEmptyCellCount =
props.weekStartsOn === 'Monday'
? monthIterator.date(1).isoWeekday() - 1
: monthIterator.date(1).isoWeekday()
const presetEmptyCells =
presetEmptyCellCount == 7
? null
: Array(presetEmptyCellCount)
.fill(null)
.map((_, index) => (
<div key={index} className={`${classPrefix}-cell`}></div>
))
cells.push(
<div key={yearMonth} data-year-month={yearMonth}>
<div className={`${classPrefix}-title`}>
{locale.Calendar.yearAndMonth?.replace(
/\${(.*?)}/g,
(_, variable: keyof typeof renderMap) => {
return renderMap[variable]?.toString()
}
)}
</div>
<div className={`${classPrefix}-cells`}>
{/* 空格填充 */}
{presetEmptyCells}
{/* 遍历每月 */}
{Array(monthIterator.daysInMonth())
.fill(null)
.map((_, index) => {
const d = monthIterator.date(index + 1)
let isSelect = false
let isBegin = false
let isEnd = false
let isSelectRowBegin = false
let isSelectRowEnd = false
if (dateRange) {
const [begin, end] = dateRange
isBegin = d.isSame(begin, 'day')
isEnd = d.isSame(end, 'day')
isSelect =
isBegin ||
isEnd ||
(d.isAfter(begin, 'day') && d.isBefore(end, 'day'))
if (isSelect) {
isSelectRowBegin =
(cells.length % 7 === 0 ||
d.isSame(d.startOf('month'), 'day')) &&
!isBegin
isSelectRowEnd =
(cells.length % 7 === 6 ||
d.isSame(d.endOf('month'), 'day')) &&
!isEnd
}
}
const disabled = props.shouldDisableDate
? props.shouldDisableDate(d.toDate())
: (maxDay && d.isAfter(maxDay, 'day')) ||
(minDay && d.isBefore(minDay, 'day'))
const renderTop = () => {
if (props.renderTop === false) return null
const contentWrapper = (content: ReactNode) => (
<div className={`${classPrefix}-cell-top`}>{content}</div>
)
const top = props.renderTop?.(d.toDate())
if (top) {
return contentWrapper(top)
}
if (props.selectionMode === 'range') {
if (isBegin && isEnd) {
return contentWrapper(locale.Calendar.startAndEnd)
}
if (isBegin) {
return contentWrapper(locale.Calendar.start)
}
if (isEnd) {
return contentWrapper(locale.Calendar.end)
}
}
if (d.isSame(today, 'day') && !isSelect) {
return contentWrapper(locale.Calendar.today)
}
return contentWrapper(null)
}
const renderBottom = () => {
if (props.renderBottom === false) return null
return (
<div className={`${classPrefix}-cell-bottom`}>
{props.renderBottom?.(d.toDate())}
</div>
)
}
return (
<div
key={d.valueOf()}
className={classNames(`${classPrefix}-cell`, {
[`${classPrefix}-cell-today`]: d.isSame(today, 'day'),
[`${classPrefix}-cell-selected`]: isSelect,
[`${classPrefix}-cell-selected-begin`]: isBegin,
[`${classPrefix}-cell-selected-end`]: isEnd,
[`${classPrefix}-cell-selected-row-begin`]:
isSelectRowBegin,
[`${classPrefix}-cell-selected-row-end`]: isSelectRowEnd,
[`${classPrefix}-cell-disabled`]: !!disabled,
})}
onClick={() => {
if (!props.selectionMode) return
if (disabled) return
const date = d.toDate()
function shouldClear() {
if (!props.allowClear) return false
if (!dateRange) return false
const [begin, end] = dateRange
return d.isSame(begin, 'date') && d.isSame(end, 'day')
}
if (props.selectionMode === 'single') {
if (props.allowClear && shouldClear()) {
onDateChange(null)
return
}
onDateChange([date, date])
} else if (props.selectionMode === 'range') {
if (!dateRange) {
onDateChange([date, date])
setIntermediate(true)
return
}
if (shouldClear()) {
onDateChange(null)
setIntermediate(false)
return
}
if (intermediate) {
const another = dateRange[0]
onDateChange(
another > date ? [date, another] : [another, date]
)
setIntermediate(false)
} else {
onDateChange([date, date])
setIntermediate(true)
}
}
}}
>
{renderTop()}
<div className={`${classPrefix}-cell-date`}>
{props.renderDate
? props.renderDate(d.toDate())
: d.date()}
</div>
{renderBottom()}
</div>
)
})}
</div>
</div>
)
monthIterator = monthIterator.add(1, 'month')
}
return cells
}
const body = (
<div className={`${classPrefix}-body`} ref={bodyRef}>
{renderBody()}
</div>
)
const mark = (
<div className={`${classPrefix}-mark`}>
{markItems.map((item, index) => (
<div key={index} className={`${classPrefix}-mark-cell`}>
{item}
</div>
))}
</div>
)
return withNativeProps(
props,
<div className={classPrefix}>
{showHeader && header}
{mark}
{body}
</div>
)
})