mirror of
https://github.com/Blair-SGA-Dev-Team/blazerapp.git
synced 2024-11-08 14:51:17 -05:00
Added Staff screen
This commit is contained in:
parent
76954765ec
commit
d2d6949abc
10
app/App.js
10
app/App.js
|
@ -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
78
app/Staff.js
Normal 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;
|
Loading…
Reference in New Issue
Block a user