-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathAgenda.js
516 lines (484 loc) · 13.3 KB
/
Agenda.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
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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
import React, { useEffect, useState, useRef } from "react";
import {
Text,
View,
TouchableOpacity,
StyleSheet,
} from "react-native";
import { useTheme, ActivityIndicator } from "react-native-paper";
import {
floorDate,
monthNames,
offsetDate,
weekDaysNames,
} from "../helpers/helper";
import { EventCards } from "./EventCards";
import { FlatList } from "react-native-bidirectional-infinite-scroll";
import { MaterialIcons } from "@expo/vector-icons";
function floorDate2Date(date) {
const data = new Date(date);
return new Date(data.getTime() + new Date().getTimezoneOffset() * 60000);
}
function RenderCalendarRow(props) {
const colors = props.colors;
const date = props.date;
const open = props.open;
const marked = props.marked;
const month = props.month;
const setOpen = props.setOpen;
const selectedDate = props.selectedDate;
const setSelectedDate = props.setSelectedDate;
const weekDays = [];
const domingo = offsetDate(date, -date.getDay());
let aux = domingo;
for (let i = 0; i < 7; i++) {
weekDays.push(aux);
aux = offsetDate(aux, 1);
}
return <View style={{ flexDirection: "row" }}>
{
weekDays.map((day, index) => <RenderCalendarCell
marked={marked}
open={open}
setOpen={setOpen}
selectedDate={selectedDate}
setSelectedDate={setSelectedDate}
colors={colors}
key={index}
day={day}
month={month}
/>)
}
</View>;
}
function RenderCalendarCell(props) {
const date = props.day;
const colors = props.colors;
const month = props.month;
const open = props.open;
const setOpen = props.setOpen;
const isToday = floorDate(date) == floorDate(new Date());
const selected = floorDate(date) == floorDate(props.selectedDate);
const setSelectedDate = props.setSelectedDate;
const hasEvent = Object.keys(props.marked).includes(floorDate(date));
if (open && date.getMonth() != month) {
return <View style={{ flex: 1 }}></View>;
}
return <TouchableOpacity
style={{
width: "14.28%",
aspectRatio: 1,
alignItems: "center",
justifyContent: "center",
}}
onPress={() => { setSelectedDate(date); setOpen(false); }}
>
<View style={{
borderRadius: 30,
aspectRatio: 1,
backgroundColor: selected ? colors.primary : "transparent",
width: "80%",
alignContent: "center",
justifyContent: "center",
}}>
<Text
style={{
textAlign: "center",
color: selected ?
colors.onPrimary :
isToday ?
colors.primary :
date.getMonth() == month ?
colors.onSurface :
colors.outline,
}}>{date.getDate()}</Text>
<View
style={{
borderRadius: 30,
aspectRatio: 1,
backgroundColor: hasEvent ?
selected ?
colors.onPrimary :
colors.primary :
"transparent",
width: 10,
position: "absolute",
bottom: 0,
alignSelf: "center",
}} />
</View>
</TouchableOpacity>;
}
const sleep = (ms) => new Promise((r) => setTimeout(r, ms));
function RenderDay(props) {
const day = props.day || new Date();
const items = props.items[floorDate(day)] || [];
const semana = weekDaysNames;
const diaSemana = semana[day.getUTCDay()];
const colors = useTheme().colors;
const isToday = floorDate(day) == floorDate(new Date());
const Divisor = () => {
const yesterday = offsetDate(day, -1);
return <View style={{ alignItems: "center", justifyContent: "center" }}>
<Text style={{ fontSize: 20, color: colors.onSurface }}>
{
`Fim de ${monthNames[yesterday.getMonth()]} ` +
`${yesterday.getFullYear()}`
}
</Text>
<Text style={{ fontSize: 20, color: colors.onSurface }}>
{`Inicio de ${monthNames[day.getMonth()]} ${day.getFullYear()}`}
</Text>
</View>;
};
const styles = StyleSheet.create({
linha: {
flexDirection: "row",
flex: 1,
margin: 10,
},
diaNum: {
fontSize: 30,
color: isToday ? colors.primary : colors.onSurface,
},
dia: {
alignItems: "center",
width: 40,
paddingTop: 2,
},
diaText: {
color: isToday ? colors.primary : colors.onSurface,
},
taskContainer: {
flex: 1,
},
});
return <>
{1 == day.getDate() &&
<Divisor />
}
<View style={styles.linha}>
<View style={styles.dia}>
<Text style={styles.diaNum}>{`${day.getUTCDate()}`}</Text>
<Text style={styles.diaText}>{`${diaSemana}`}</Text>
</View>
<View style={styles.taskContainer}>
{
items.map(
(item, index) => <EventCards
style={{ marginTop: 0 }}
key={index}
task={item}
></EventCards>,
)
}
</View>
</View>
</>;
}
function nextMonth(month) {
const obj = {};
if (month.month == 11) {
obj["month"] = 0;
obj["year"] = month.year + 1;
} else {
obj["month"] = month.month + 1;
obj["year"] = month.year;
}
return obj;
}
function prevMonth(month) {
const obj = {};
if (month.month == 0) {
obj["month"] = 11;
obj["year"] = month.year - 1;
} else {
obj["month"] = month.month - 1;
obj["year"] = month.year;
}
return obj;
}
export default function Agenda(props) {
const colors = useTheme().colors;
const items = props.items;
const marked = props.marked;
const [selectedDate, setSelectedDate] = useState(new Date());
const [open, setOpen] = useState(false);
const [changedByController, setChangedByController] = useState(false);
const [loadedMonth, setLoadedMonth] = useState(
[{ month: selectedDate.getMonth(), year: selectedDate.getFullYear() }],
);
const [lastMonth, setLastMonth] = useState(
{ month: selectedDate.getMonth(), year: selectedDate.getFullYear() },
);
const [firstMonth, setFirstMonth] = useState(
{ month: selectedDate.getMonth(), year: selectedDate.getFullYear() },
);
const msetOpen = (value) => {
setOpen(value);
setChangedByController(true);
};
const loadAtEnd = async() => {
let aux = [];
let auxMonth = lastMonth;
for (let i = 0; i < 3; i++) {
auxMonth = nextMonth(auxMonth);
aux.push(auxMonth);
}
setLastMonth(auxMonth);
// await sleep(20)
setLoadedMonth([...loadedMonth, ...aux]);
return [];
};
const loadAtStart = async() => {
let aux = [];
let auxMonth = firstMonth;
for (let i = 0; i < 1; i++) {
auxMonth = prevMonth(auxMonth);
aux = [auxMonth, ...aux];
}
setFirstMonth(auxMonth);
await sleep(10);
setLoadedMonth([...aux, ...loadedMonth]);
return [];
};
if (loadedMonth.length < 2) { loadAtEnd(); }
if (open) {
return <View style={{ flex: 1, backgroundColor: colors.primaryContainer }}>
<FlatList
onStartReached={loadAtStart}
data={loadedMonth}
marked={marked}
HeaderLoadingIndicator={
() => <ActivityIndicator
style={{ padding: 10 }}
animating={true}
color={colors.primary}
/>
}
onEndReached={loadAtEnd}
renderItem={
({ item }) => <RenderMonthCalendar
marked={marked}
open={open}
setOpen={msetOpen}
colors={colors}
selectedDate={selectedDate}
setSelectedDate={setSelectedDate}
year={item.year} month={item.month}
/>
}
showDefaultLoadingIndicators={true}
/>
<TouchableOpacity
onPress={() => setOpen(false)}
style={{ alignItems: "center", justifyContent: "center", padding: 20 }}
>
<MaterialIcons name="expand-less" size={24} color={colors.primary} />
</TouchableOpacity>
</View>;
}
return <View style={{ flex: 1 }}>
<RenderMonthCalendar
marked={marked}
colors={colors}
open={open}
setOpen={msetOpen}
selectedDate={selectedDate}
setSelectedDate={setSelectedDate}
year={selectedDate.getFullYear()}
month={selectedDate.getMonth()}
/>
<View style={{ flex: 1 }}>
<AgendaList
setSelectedDate={setSelectedDate}
changedByController={changedByController}
setChangedByController={setChangedByController}
selectedDate={selectedDate}
items={items}
></AgendaList>
</View>
</View>;
}
function RenderMonthCalendar(props) {
const colors = props.colors;
const open = props.open;
const marked = props.marked;
const setOpen = props.setOpen;
const selectedDate = props.selectedDate;
const setSelectedDate = props.setSelectedDate;
let aux = new Date(props.year, props.month, 1);
let weeksRep = [];
for (let i = 0; i < 6; i++) {
weeksRep.push(aux);
aux = offsetDate(aux, 7);
if (offsetDate(aux, -aux.getDay()).getMonth() != props.month) {
break;
}
}
if (!open) {
return <View
style={{
backgroundColor: colors.primaryContainer,
padding: 20,
maargin: 20,
}}
>
<View style={{ flexDirection: "row" }}>
{weekDaysNames.map(
(day, index) => <Text
style={{
flex: 1,
color: colors.onSurface,
textAlign: "center",
fontWeight: "bold",
}}
key={index}
>
{day}
</Text>,
)}
</View>
<RenderCalendarRow
marked={marked}
open={open}
setOpen={setOpen}
selectedDate={selectedDate}
setSelectedDate={setSelectedDate}
colors={colors} date={selectedDate}
month={props.month}
/>
<TouchableOpacity
onPress={() => setOpen(true)}
style={{ alignItems: "center", justifyContent: "center" }}
>
<MaterialIcons name="expand-more" size={24} color={colors.primary} />
</TouchableOpacity>
</View>;
}
return <View
style={{
backgroundColor: colors.primaryContainer,
padding: 20,
maargin: 20,
}}
>
<View
style={{
flexDirection: "row",
alignItems: "center",
justifyContent: "center",
padding: 10,
}}
>
<Text
style={{
fontSize: 20,
color: colors.onPrimaryContainer,
}}
>
{`${monthNames[props.month]} ${props.year}`}
</Text>
</View>
<View style={{ flexDirection: "row" }}>
{
weekDaysNames.map(
(day, index) => <Text
style={{
flex: 1,
color: colors.onPrimaryContainer,
textAlign: "center",
fontWeight: "bold",
}}
key={index}
>
{day}
</Text>,
)
}
</View>
{
weeksRep.map(
(week, index) => <RenderCalendarRow
marked={marked}
open={open}
setOpen={setOpen}
selectedDate={selectedDate}
setSelectedDate={setSelectedDate}
colors={colors}
key={index}
date={week}
month={props.month}
/>,
)
}
</View>;
}
export function AgendaList(props) {
const items = props.items;
const selectedDate = props.selectedDate;
const changedByController = props.changedByController;
const setChangedByController = props.setChangedByController;
const setSelectedDate = props.setSelectedDate;
const [lastDate, setLastDate] = useState(new Date());
const offsetDown = 30;
const colors = useTheme().colors;
let [daysToRender, setDaysToRender] = useState({});
const loadAtEnd = async() => {
let daysAux = { ...daysToRender };
for (let i = 0; i <= offsetDown; i++) {
const aux = offsetDate(lastDate, i);
daysAux[floorDate(aux)] = items[floorDate(aux)] || [];
}
setLastDate(offsetDate(lastDate, offsetDown));
setDaysToRender(daysAux);
return {};
};
const _onViewableItemsChanged = React.useRef(({ viewableItems }) => {
if (viewableItems.length > 0) {
const fdate = viewableItems[0].item;
setSelectedDate(floorDate2Date(fdate));
}
}, []);
const flatlistRef = useRef();
useEffect(() => {
if (changedByController) {
setChangedByController(false);
setLastDate(selectedDate);
setDaysToRender({});
flatlistRef.current.scrollToIndex({ index: 0 });
}
}, [changedByController]);
useEffect(() => {
setLastDate(selectedDate);
setDaysToRender({});
flatlistRef.current.scrollToIndex({ index: 0 });
}, [items]);
if (Object.keys(daysToRender).length === 0) {
loadAtEnd(false);
}
const _viewabilityConfig = {
itemVisiblePercentThreshold: 0,
};
return (
<FlatList
onEndReached={loadAtEnd}
ref={flatlistRef}
onViewableItemsChanged={_onViewableItemsChanged.current}
keyExtractor={(_, index) => index.toString()}
showDefaultLoadingIndicators={true}
contentContainerStyle={{ flexGrow: 1 }}
style={{ backgroundColor: colors.surface1 }}
viewabilityConfig={_viewabilityConfig}
data={Object.keys(daysToRender).sort()}
renderItem={
({ item, index }) => <RenderDay
key={index}
day={floorDate2Date(item)}
index={index}
items={daysToRender}
/>
}
></FlatList>
);
}