mirror of
https://github.com/Blair-SGA-Dev-Team/blazerapp.git
synced 2024-11-14 09:21:16 -05:00
132 lines
4.7 KiB
JavaScript
132 lines
4.7 KiB
JavaScript
import React, { useState } from 'react';
|
|
import {
|
|
SafeAreaView,
|
|
StyleSheet,
|
|
ScrollView,
|
|
View,
|
|
Text,
|
|
StatusBar,
|
|
FlatList,
|
|
TouchableOpacity,
|
|
Image,
|
|
Dimensions
|
|
} from 'react-native';
|
|
|
|
import {
|
|
Header,
|
|
LearnMoreLinks,
|
|
Colors,
|
|
DebugInstructions,
|
|
ReloadInstructions,
|
|
} from 'react-native/Libraries/NewAppScreen';
|
|
import { NavigationContainer } from '@react-navigation/native'
|
|
import { createStackNavigator } from '@react-navigation/stack'
|
|
import styles from './styles/liststyles'
|
|
import { url } from './resources/fetchInfo.json'
|
|
import LinearGradient from 'react-native-linear-gradient';
|
|
import Ionicons from 'react-native-vector-icons/Ionicons';
|
|
import I18n from 'i18n-js';
|
|
const Stack = createStackNavigator();
|
|
|
|
{/*export const LunchInfo = ({route}) => {
|
|
const item = route.params;
|
|
return (
|
|
<View style = {{padding: 10, backgroundColor: 'white', height: '100%'}}>
|
|
<View style={[styles.infoContainer, {flexDirection: 'row', alignItems: 'center'}]}>
|
|
<View style={{width: '15%', display: 'flex', justifyContent: 'center'}}>
|
|
<Image source={require('./assets/desc.png')} style={{height: 50, width: 50}}/>
|
|
</View>
|
|
<View style={{width: '85%'}}>
|
|
<Text style = {styles.title}>{item.text}</Text>
|
|
</View>
|
|
</View>
|
|
<View style={[styles.infoContainer, {flexDirection: 'row', alignItems: 'center'}]}>
|
|
<View style={{width: '15%', display: 'flex', justifyContent: 'center'}}>
|
|
<Image source={require('./assets/location.png')} style={{height: 50, width: 50}}/>
|
|
</View>
|
|
<View style={{width: '85%'}}>
|
|
<Text style={{fontSize:20}}>{item.loc}</Text>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
)
|
|
}*/}
|
|
|
|
function LunchEvent (props) {
|
|
const item = props.item
|
|
const [expand, setExpand] = useState(false);
|
|
|
|
var time_array = item.time.split(':')
|
|
if (time_array[0]>12) {
|
|
var time = String(parseInt(time_array[0])-12) + ':' + String(time_array[1]) + ' PM'
|
|
}
|
|
else {
|
|
var time = String(time_array[0])+':'+String(time_array[1]) + ' AM'
|
|
}
|
|
return(
|
|
<View>
|
|
<TouchableOpacity style={styles.listItem} onPress={()=>setExpand(!expand)}>
|
|
<View style={styles.container2}>
|
|
<Ionicons name="fast-food-outline" size={36} color={'#323232'} style={{marginRight: 15}} />
|
|
<View style = {styles.accordian}>
|
|
<Text style={styles.title}>{item.title}</Text>
|
|
{expand?<LinearGradient start={{x: 0, y: 0.25}} end={{x: .5, y: 1}} colors={['red', '#FF7373']} style={{borderRadius: 24, alignSelf: 'center'}}><Image source = {require('./assets/collapse.png')} style={{tintColor: 'white'}}/></LinearGradient>:<Image source = {require('./assets/expand.png')} style={{tintColor: '#b2b2b2', alignSelf: 'center'}}/>}
|
|
</View>
|
|
</View>
|
|
{expand?
|
|
<View style={{marginLeft: 50}}>
|
|
<Text style={styles.accordianHeader}>{I18n.t('lunch.information')}</Text>
|
|
<Text style={styles.accordianText}>{item.text}</Text>
|
|
<Text style={styles.accordianHeader}>{'\n'}{I18n.t('lunch.location')}</Text>
|
|
<Text style={[styles.accordianText, {paddingBottom: '4%'}]}>{item.location}</Text>
|
|
<Text syle={styles.accordianHeader}>{'\n'}{I18n.t('lunch.time')}</Text>
|
|
<Text style={[styles.accordianText, {paddingBottom: '4%'}]}>{time}</Text>
|
|
</View>:<></>}
|
|
</TouchableOpacity>
|
|
</View>
|
|
)
|
|
}
|
|
|
|
class LunchEvents extends React.Component {
|
|
|
|
constructor(props) {
|
|
super(props)
|
|
this.state = {
|
|
data: []
|
|
}
|
|
}
|
|
|
|
componentDidMount() {
|
|
fetch(`${url}/api/`+String(I18n.locale).split('-')[0]+`/lunch_events`,{
|
|
headers: {
|
|
'Cache-Control': 'no-cache'
|
|
}
|
|
}
|
|
)
|
|
.then((response) => {
|
|
return response.text();
|
|
})
|
|
.then((json) => {
|
|
const data = JSON.parse(json)
|
|
data.sort((a,b)=>a.id-b.id)
|
|
this.setState({data: data});
|
|
})
|
|
.catch((error) => console.error(error))
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<ScrollView style={styles.moreDefault}>
|
|
<FlatList
|
|
data={this.state.data}
|
|
renderItem={({item}) => <LunchEvent item={item} name={this.props.title} navigation={this.props.navigation}/>}
|
|
keyExtractor={item=>JSON.stringify(item)}
|
|
/>
|
|
</ScrollView>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default LunchEvents;
|
|
|