|
@@ -1,41 +1,245 @@
|
1
|
|
-import React, { useState } from 'react';
|
2
|
|
-import { StyleSheet, View, Text, TouchableOpacity, Modal } from 'react-native';
|
|
1
|
+import React, { Component, useCallback, useState, useEffect} from 'react';
|
|
2
|
+import { StyleSheet, View, Text, TouchableOpacity, Modal, Button } from 'react-native';
|
3
|
3
|
import Header from '../shared/header';
|
4
|
4
|
import Calendar from 'react-native-calendars/src/calendar';
|
5
|
5
|
import { Agenda, calendarTheme } from 'react-native-calendars';
|
|
6
|
+import { Ionicons } from '@expo/vector-icons';
|
|
7
|
+import { ProgressBar, MD3Colors } from 'react-native-paper';
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+const userslist = 'https://ada.uprrp.edu/~pablo.puig1/TPMG/userslist.php'
|
|
12
|
+const eventlist = 'https://ada.uprrp.edu/~pablo.puig1/TPMG/eventslist.php'
|
6
|
13
|
|
7
|
14
|
export default function Calendario({ navigation }) {
|
8
|
|
- const [items, setItems] = useState({
|
9
|
|
- '2022-12-06': [{name: 'matricula'}],
|
10
|
|
- '2022-12-07': [{name: 'seguir metiendole mano al sprint 🥵'}],
|
11
|
|
- '2022-12-08': [],
|
12
|
|
- });
|
13
|
|
-
|
14
|
|
- function renderItem(item) {
|
15
|
|
- return (
|
16
|
|
- <View>
|
17
|
|
- <Text style={[styles.item, {height: item.height}]}>{item.name}</Text>
|
18
|
|
- </View>
|
19
|
|
- );
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+ const [eventos, setEventos] = useState({});
|
|
20
|
+
|
|
21
|
+ useEffect(() => {
|
|
22
|
+ fetch(eventlist)
|
|
23
|
+ .then(response => response.json())
|
|
24
|
+ .then(dat => setEventos(dat))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+ .catch(error => console.error(error))
|
|
32
|
+ }, []);
|
|
33
|
+
|
|
34
|
+ {
|
|
35
|
+ TODO: Convert array of dictionary into a dictionary of dictionary where the keys are the `startDate
|
|
36
|
+
|
|
37
|
+ */}
|
|
38
|
+
|
|
39
|
+ var events = {}
|
|
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
|
+ const [items, setItems] = useState({
|
|
79
|
+ '2022-12-21': [{
|
|
80
|
+ id: '1',
|
|
81
|
+ activityDescription: 'aaaa',
|
|
82
|
+ subscribed: false,
|
|
83
|
+ icon: 'person-add-outline',
|
|
84
|
+ totalSubscribed: 10,
|
|
85
|
+ maxSubscribed: 10 }],
|
|
86
|
+ '2022-12-22':[{
|
|
87
|
+ id: '2',
|
|
88
|
+ activityDescription: 'Actividad de cocina para la comunidad de Santa Rita, Río Piedras 🍲',
|
|
89
|
+ subscribed: false,
|
|
90
|
+ icon: 'person-add-outline',
|
|
91
|
+ totalSubscribed: 3,
|
|
92
|
+ maxSubscribed: 7 }],
|
|
93
|
+ '2022-12-23': [{
|
|
94
|
+ id: '3',
|
|
95
|
+ activityDescription: 'Taller de aprendizaje de construcción de techos 🏠',
|
|
96
|
+ subscribed: false,
|
|
97
|
+ icon: 'person-add-outline',
|
|
98
|
+ totalSubscribed: 7,
|
|
99
|
+ maxSubscribed: 7 }],
|
|
100
|
+ '2022-12-24': [],
|
|
101
|
+ });
|
|
102
|
+
|
|
103
|
+ const [data, setData] = useState({data});
|
|
104
|
+
|
|
105
|
+ const [selectedIcon, setSelectedIcon] = useState('person-add-outline');
|
|
106
|
+
|
|
107
|
+ const formattedEvents = Object.keys(eventos).reduce((result, key) => {
|
|
108
|
+ const item = eventos[key];
|
|
109
|
+ const date = item.startDate;
|
|
110
|
+
|
|
111
|
+ if (result[date]){
|
|
112
|
+ result[date].push(item);
|
|
113
|
+ }else{
|
|
114
|
+ result[date] = [item];
|
20
|
115
|
}
|
|
116
|
+ return result;
|
|
117
|
+ }, {});
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+ console.log(formattedEvents)
|
|
122
|
+ console.log(items)
|
|
123
|
+
|
|
124
|
+ const onButtonClick = useCallback((itemClicked) => {
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+ {
|
|
129
|
+ Object.keys(items).map(key => {
|
|
130
|
+ items[key].map(item => {
|
|
131
|
+
|
|
132
|
+ if (item.id === itemClicked.id) {
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+ return{
|
|
136
|
+ ...item,
|
|
137
|
+ subscribed: true,
|
|
138
|
+ icon: 'person-sharp'
|
|
139
|
+ }
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+ }
|
|
143
|
+ else{
|
|
144
|
+ return item
|
|
145
|
+ }
|
|
146
|
+
|
|
147
|
+ })
|
|
148
|
+
|
|
149
|
+ })
|
|
150
|
+ }
|
|
151
|
+
|
|
152
|
+ }, [setItems]);
|
21
|
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
|
+ function renderItem(item) {
|
|
180
|
+ console.log('item.activityDescription: ', item.activityDescription)
|
22
|
181
|
return (
|
23
|
|
- <Agenda
|
24
|
|
- items={items}
|
25
|
|
- renderItem={renderItem}
|
26
|
|
- />
|
|
182
|
+ <View>
|
|
183
|
+ <View style={[styles.item, { height: item.height }]}>
|
|
184
|
+ <Text> {item.activityDescription}</Text>
|
|
185
|
+ {}
|
|
186
|
+ {}
|
|
187
|
+ <TouchableOpacity onPress={() => alert("Te has subcrito a la actividad!")}>
|
|
188
|
+ <Ionicons name={item.icon} />
|
|
189
|
+ </TouchableOpacity>
|
|
190
|
+ </View>
|
|
191
|
+ <ProgressBar progress={(item.totalSubscribed / item.maxSubscribed)} color={item.totalSubscribed != item.maxSubscribed ? '#1AA7EC' : '#00AB41'} style={styles.progress} />
|
|
192
|
+ </View>
|
|
193
|
+
|
27
|
194
|
);
|
|
195
|
+ }
|
|
196
|
+
|
|
197
|
+ return (
|
|
198
|
+ <Agenda
|
|
199
|
+ items={formattedEvents}
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+ renderItem={renderItem}
|
|
205
|
+
|
|
206
|
+ />
|
|
207
|
+ );
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
|
28
|
225
|
}
|
29
|
226
|
|
|
227
|
+
|
30
|
228
|
const styles = StyleSheet.create({
|
31
|
|
- container: {
|
32
|
|
- padding: 24
|
33
|
|
- },
|
34
|
|
- item: {
|
35
|
|
- backgroundColor: 'white',
|
36
|
|
- flex: 1,
|
37
|
|
- padding: 15,
|
38
|
|
- marginRight: 10,
|
39
|
|
- marginTop: 32
|
40
|
|
- }
|
41
|
|
-});
|
|
229
|
+ container: {
|
|
230
|
+ padding: 24
|
|
231
|
+ },
|
|
232
|
+ item: {
|
|
233
|
+ flexDirection: 'row',
|
|
234
|
+ justifyContent: 'space-between',
|
|
235
|
+ backgroundColor: 'white',
|
|
236
|
+ flex: 1,
|
|
237
|
+ padding: 15,
|
|
238
|
+ marginRight: 10,
|
|
239
|
+ marginTop: 32
|
|
240
|
+ },
|
|
241
|
+ progress: {
|
|
242
|
+ height: 5,
|
|
243
|
+ width: 355.2
|
|
244
|
+ }
|
|
245
|
+});
|