Added Staff screen

This commit is contained in:
M10T 2020-08-18 21:29:44 -04:00
parent 76954765ec
commit d2d6949abc
2 changed files with 82 additions and 6 deletions

View File

@ -24,6 +24,7 @@ import Calendar from './Calendar'
import Poll from './Poll'
import Clubs from './Clubs'
import More from './More'
import Staff from './Staff'
const Tab = createBottomTabNavigator();
@ -34,12 +35,13 @@ class App extends React.Component {
<Tab.Navigator tabBarOptions={{
activeTintColor: 'red',
labelStyle:{
fontSize:20
fontSize:16
}}}>
<Tab.Screen name="Home" component={Home} style={{fontSize:30}} />
<Tab.Screen name="Home" component={Home} />
<Tab.Screen name="Calendar" component={Calendar} />
<Tab.Screen name="Polls" component={Poll} />
<Tab.Screen name="Clubs" component={Clubs} />
<Tab.Screen name="Staff" component={Staff} />
<Tab.Screen name="More" component={More} />
</Tab.Navigator>
</NavigationContainer>
@ -47,8 +49,4 @@ class App extends React.Component {
}
}
const styles = StyleSheet.create({
}
);
export default App;

78
app/Staff.js Normal file
View File

@ -0,0 +1,78 @@
import React, { useState } from 'react';
import {
SafeAreaView,
StyleSheet,
ScrollView,
View,
Text,
StatusBar,
FlatList,
TouchableOpacity
} from 'react-native';
import {
Header,
LearnMoreLinks,
Colors,
DebugInstructions,
ReloadInstructions,
} from 'react-native/Libraries/NewAppScreen';
import { url } from './resources/fetchInfo.json'
import styles from './styles/liststyles'
const TeacherElement = ({item}) => {
const [visible, setVisible] = useState(0)
const extra = [...item.item.emails.map(email=>(<Text key={email}>Email: {email}</Text>))]
return(
<View>
<TouchableOpacity style={styles.item} onPress={()=>setVisible(!visible)} activeOpacity={0.8}>
<Text style={styles.title}>{item.item.name}</Text>
{visible?extra:<></>}
</TouchableOpacity>
</View>
)
}
class Staff extends React.Component {
constructor(props) {
super(props)
this.state = {
isLoading: true
}
}
componentDidMount() {
fetch(`${url}/api/en/teachers`,{
headers: {
'Cache-Control': 'no-cache'
}
}
)
.then((response) => {
return response.text();
})
.then((json) => {
this.setState({data: JSON.parse(json).data});
})
.catch((error) => console.error(error))
.finally(()=>this.setState({isLoading:false}))
}
render() {
if(this.state.isLoading) return (<View/>)
return (
<View style={styles.container}>
<FlatList
data={this.state.data}
renderItem={item=><TeacherElement item={item} />}
keyExtractor={(item,index)=>JSON.stringify(item)+index}
/>
</View>
)
}
}
export default Staff;