Ei kuvausta

CurrentCourses.js 8.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. import React, {useState, useEffect} from 'react';
  2. import { FlatList, StatusBar, StyleSheet, Text, TouchableOpacity, TextInput, View, Button, ActivityIndicator, Alert, ScrollView, RefreshControl } from "react-native";
  3. import axios from 'axios'
  4. import * as SecureStore from 'expo-secure-store';
  5. import Modal from 'react-native-modal';
  6. const Item = ({ item, onPress, style }) => (
  7. <TouchableOpacity onPress={onPress} style={[styles.item, style]}>
  8. <Text style={styles.title}>{`${item.code}`}</Text>
  9. </TouchableOpacity>
  10. );
  11. // separates results, taken from https://stackoverflow.com/questions/60350768/how-to-make-search-bar-with-dropdown-list-in-react-native
  12. const renderSeparator = () => {
  13. return (
  14. <View
  15. style={{
  16. height: 1,
  17. width: '100%',
  18. backgroundColor: '#CED0CE',
  19. }}
  20. />
  21. );
  22. };
  23. const CurrentCourses = () =>{
  24. const [courses, setCourses] = useState(null)
  25. const [refreshing, setRefreshing] = useState(false)
  26. const [selectedId, setSelectedId] = useState(null); // course_id
  27. const [animating, setAnimating] = useState('')
  28. const [modalVisible, setModalVisible] = useState(false)
  29. const [code, setCode] = useState(null)
  30. const [days, setDays] = useState(null)
  31. const [courseName, setCourseName] = useState(null)
  32. const [prof, setProf] = useState(null)
  33. const [rooms, setRooms] = useState(null)
  34. const [section, setSection] = useState(null)
  35. const [hours, setHours] = useState(null)
  36. const [year, setYear] = useState(null)
  37. const [semestre, setSemestre] = useState(null)
  38. const toggle = ()=>{
  39. setModalVisible(!modalVisible)
  40. setSelectedId(null)
  41. }
  42. const getMyCurrentCourses = async()=>{
  43. const token = await SecureStore.getItemAsync('token')
  44. let id = await SecureStore.getItemAsync('id')
  45. let user_id = parseInt(id)
  46. try {
  47. let response = await axios(`http://da0406585426.ngrok.io/api/get_current_courses`, {
  48. method: 'POST',
  49. headers: {
  50. 'content-type': 'application/json',
  51. Authorization: `Token ${token}`
  52. },
  53. data:{
  54. user_id: user_id
  55. }
  56. })
  57. if(response.data.list){
  58. setCourses(response.data.list)
  59. }
  60. else{
  61. setCourses(response.data.msg)
  62. }
  63. console.log(courses)
  64. } catch(error){
  65. console.log(error)
  66. }
  67. }
  68. const deleteOneCourse = async()=>{
  69. const token = await SecureStore.getItemAsync('token')
  70. let id = await SecureStore.getItemAsync('id')
  71. let user_id = parseInt(id)
  72. console.log(semestre)
  73. console.log(year)
  74. try {
  75. let response = await axios(`http://da0406585426.ngrok.io/api/delete_course`, {
  76. method: 'DELETE',
  77. headers: {
  78. 'content-type': 'application/json',
  79. Authorization: `Token ${token}`
  80. },
  81. data:{
  82. user_id: user_id,
  83. course_id: selectedId,
  84. year: year,
  85. semestre: semestre
  86. }
  87. })
  88. setAnimating(true)
  89. // after 3 seconds, the courses, the modal and the activity indicator will disappear
  90. setTimeout(()=>{
  91. setAnimating(false)
  92. setModalVisible(false)
  93. setSelectedId(null)
  94. }, 3000)
  95. setTimeout(()=>{
  96. Alert.alert(response.data.msg)
  97. }, 5000)
  98. getMyCurrentCourses() // get current courses again
  99. setSection(null)
  100. setDays(null)
  101. setHours(null)
  102. setRooms(null)
  103. setProf(null)
  104. } catch(error){
  105. console.log(error)
  106. }
  107. }
  108. const onRefresh = React.useCallback(async ()=>{
  109. setRefreshing(true)
  110. getMyCurrentCourses()
  111. setRefreshing(false)
  112. }, [refreshing])
  113. useEffect(()=>{
  114. console.log('dimelo')
  115. getMyCurrentCourses()
  116. },[])
  117. const renderItem = ({ item }) => {
  118. const backgroundColor = item.id === selectedId ? "#e60505" : "#fafbfc";
  119. return (
  120. <Item
  121. item={item}
  122. onPress={() => {
  123. setSelectedId(item.id)
  124. if(item.section === undefined){
  125. setCourseName(item.name)
  126. setCode(item.code)
  127. setYear(item.year)
  128. setSemestre(item.semestre)
  129. setModalVisible(true)
  130. }
  131. else{
  132. setCourseName(item.name)
  133. setCode(item.code)
  134. setYear(item.year)
  135. setSemestre(item.semestre)
  136. setSection(item.section)
  137. setDays(item.dias)
  138. setHours(item.horarios)
  139. setRooms(item.salones)
  140. setProf(item.prof)
  141. setModalVisible(true)
  142. }
  143. }}
  144. style={{ backgroundColor }}
  145. />
  146. );
  147. };
  148. // if student does not have courses currently, return this
  149. if(courses === null || courses === 'No tienes cursos'){
  150. return (
  151. <ScrollView
  152. refreshControl={<RefreshControl refreshing={refreshing} onRefresh={onRefresh}/>}
  153. >
  154. <Text>No tienes cursos</Text>
  155. </ScrollView>
  156. )
  157. }
  158. return (
  159. <View style={styles.container}>
  160. <FlatList
  161. data={courses}
  162. renderItem={renderItem}
  163. keyExtractor={(item) => item.id.toString()}
  164. extraData={selectedId}
  165. ItemSeparatorComponent={renderSeparator}
  166. refreshControl={<RefreshControl refreshing={refreshing} onRefresh={onRefresh}/>}
  167. />
  168. <Modal isVisible={modalVisible}
  169. >
  170. <View style={styles.modalItem}>
  171. <Text></Text>
  172. <Text style={styles.course_info}>Name: {courseName}</Text>
  173. <Text style={styles.course_info}>Code: {code}</Text>
  174. <Text style={styles.course_info}>{section === null ? '' : 'Section '+ section} </Text>
  175. <Text style={styles.course_info}>{prof === null ? '' : 'Prof:' + prof} </Text>
  176. <Text style={styles.course_info}>{days === null ? '' : 'Days: ' + days} </Text>
  177. <Text style={styles.course_info}>{hours === null ? '' : 'Hours: '+ hours} </Text>
  178. <Text style={styles.course_info}>{rooms === null ? '' : 'Rooms: ' + rooms} </Text>
  179. <ActivityIndicator size="small" color="0000ff" animating={animating}/>
  180. <Button title="Delete Course" onPress={deleteOneCourse}/>
  181. <Button title="Close" onPress={toggle}/>
  182. </View>
  183. </Modal>
  184. </View>
  185. );
  186. }
  187. export default CurrentCourses
  188. const styles = StyleSheet.create({
  189. container: {
  190. flex: 1,
  191. marginTop: StatusBar.currentHeight || 0,
  192. },
  193. item: {
  194. padding: 10,
  195. marginVertical: 8,
  196. marginHorizontal: 16,
  197. },
  198. title: {
  199. fontSize: 15,
  200. },
  201. searchBar: {
  202. height: 40,
  203. borderColor: '#000',
  204. borderWidth: 1
  205. },
  206. modalItem: {
  207. // width: '30%', // is 30% of container width
  208. margin: 60, // 300
  209. backgroundColor: 'white',
  210. borderRadius:20,
  211. height: 270
  212. },
  213. course_info: {
  214. fontWeight: 'bold',
  215. fontSize: 13
  216. }
  217. });
  218. // const styles = StyleSheet.create({
  219. // container: { flex: 1, padding: 16, paddingTop: 30, backgroundColor: '#fff' },
  220. // head: { height: 40, backgroundColor: '#e82020' },
  221. // wrapper: { flexDirection: 'row' },
  222. // title: { flex: 1, backgroundColor: '#e82020' },
  223. // row: { height: 28 },
  224. // text: { textAlign: 'center', fontSize:10 },
  225. // });