|
@@ -6,183 +6,38 @@ import { Agenda, calendarTheme } from 'react-native-calendars';
|
6
|
6
|
import { Ionicons } from '@expo/vector-icons';
|
7
|
7
|
import { ProgressBar, MD3Colors } from 'react-native-paper';
|
8
|
8
|
|
9
|
|
-
|
10
|
|
-
|
11
|
9
|
const userslist = 'https://ada.uprrp.edu/~pablo.puig1/TPMG/userslist.php'
|
12
|
10
|
const eventlist = 'https://ada.uprrp.edu/~pablo.puig1/TPMG/eventslist.php'
|
13
|
11
|
|
14
|
12
|
export default function Calendario({ navigation }) {
|
15
|
13
|
|
16
|
|
-
|
17
|
|
-
|
18
|
|
-
|
19
|
14
|
const [eventos, setEventos] = useState({});
|
20
|
15
|
|
21
|
16
|
useEffect(() => {
|
22
|
17
|
fetch(eventlist)
|
23
|
18
|
.then(response => response.json())
|
24
|
19
|
.then(dat => setEventos(dat))
|
25
|
|
-
|
26
|
|
-
|
27
|
|
-
|
28
|
|
-
|
29
|
|
-
|
30
|
|
-
|
31
|
20
|
.catch(error => console.error(error))
|
32
|
21
|
}, []);
|
33
|
22
|
|
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
|
23
|
const formattedEvents = Object.keys(eventos).reduce((result, key) => {
|
108
|
24
|
const item = eventos[key];
|
109
|
25
|
const date = item.startDate;
|
110
|
|
-
|
111
|
|
- if (result[date]){
|
112
|
|
- result[date].push(item);
|
113
|
|
- }else{
|
114
|
|
- result[date] = [item];
|
115
|
|
- }
|
|
26
|
+ if (result[date]){ result[date].push(item);}
|
|
27
|
+ else{result[date] = [item];}
|
116
|
28
|
return result;
|
117
|
29
|
}, {});
|
118
|
30
|
|
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]);
|
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
|
31
|
function renderItem(item) {
|
180
|
32
|
console.log('item.activityDescription: ', item.activityDescription)
|
181
|
33
|
return (
|
182
|
34
|
<View>
|
183
|
35
|
<View style={[styles.item, { height: item.height }]}>
|
184
|
|
- <Text> {item.activityDescription}</Text>
|
185
|
|
- {}
|
|
36
|
+ <View>
|
|
37
|
+ <Text style = {[styles.activity_name]}> {item.activityName}</Text>
|
|
38
|
+ <Text style = {[styles.time]}> 10:00AM-2:00PM</Text>
|
|
39
|
+ <Text style = {[styles.activity_description]}> {item.activityDescription}</Text>
|
|
40
|
+ </View>
|
186
|
41
|
{}
|
187
|
42
|
<TouchableOpacity onPress={() => alert("Te has subcrito a la actividad!")}>
|
188
|
43
|
<Ionicons name={item.icon} />
|
|
@@ -197,34 +52,11 @@ export default function Calendario({ navigation }) {
|
197
|
52
|
return (
|
198
|
53
|
<Agenda
|
199
|
54
|
items={formattedEvents}
|
200
|
|
-
|
201
|
|
-
|
202
|
|
-
|
203
|
|
-
|
204
|
55
|
renderItem={renderItem}
|
205
|
|
-
|
206
|
56
|
/>
|
207
|
57
|
);
|
208
|
|
-
|
209
|
|
-
|
210
|
|
-
|
211
|
|
-
|
212
|
|
-
|
213
|
|
-
|
214
|
|
-
|
215
|
|
-
|
216
|
|
-
|
217
|
|
-
|
218
|
|
-
|
219
|
|
-
|
220
|
|
-
|
221
|
|
-
|
222
|
|
-
|
223
|
|
-
|
224
|
|
-
|
225
|
58
|
}
|
226
|
59
|
|
227
|
|
-
|
228
|
60
|
const styles = StyleSheet.create({
|
229
|
61
|
container: {
|
230
|
62
|
padding: 24
|
|
@@ -238,6 +70,16 @@ const styles = StyleSheet.create({
|
238
|
70
|
marginRight: 10,
|
239
|
71
|
marginTop: 32
|
240
|
72
|
},
|
|
73
|
+ activity_name :{
|
|
74
|
+
|
|
75
|
+ fontSize : 25,
|
|
76
|
+ },
|
|
77
|
+ time : {
|
|
78
|
+
|
|
79
|
+ },
|
|
80
|
+ activity_description : {
|
|
81
|
+ fontSize : 16,
|
|
82
|
+ },
|
241
|
83
|
progress: {
|
242
|
84
|
height: 5,
|
243
|
85
|
width: 355.2
|