mirror of
https://github.com/Blair-SGA-Dev-Team/blazerapp.git
synced 2024-11-09 15:21:17 -05:00
241 lines
9.1 KiB
JavaScript
241 lines
9.1 KiB
JavaScript
import React, {useState} from 'react';
|
|
import {
|
|
SafeAreaView,
|
|
StyleSheet,
|
|
ScrollView,
|
|
View,
|
|
Text,
|
|
StatusBar,
|
|
FlatList,
|
|
TouchableOpacity,
|
|
Image,
|
|
} from 'react-native';
|
|
|
|
import {
|
|
ReloadInstructions,
|
|
} from 'react-native/Libraries/NewAppScreen';
|
|
import Ionicons from 'react-native-vector-icons/Ionicons';
|
|
import Icon from 'react-native-vector-icons/AntDesign'
|
|
import LinearGradient from 'react-native-linear-gradient';
|
|
import { NavigationContainer } from '@react-navigation/native'
|
|
import { createStackNavigator } from '@react-navigation/stack'
|
|
import styles from './styles/liststyles'
|
|
import { url } from './resources/fetchInfo.json'
|
|
import morestyles from './styles/morestyles'
|
|
import I18n from './i18n.js'
|
|
|
|
const Stack = createStackNavigator();
|
|
|
|
const getCurrentDate=()=>{
|
|
var date = new Date().getDate();
|
|
var month = new Date().getMonth();
|
|
var year = new Date().getFullYear();
|
|
|
|
return new Date(year, month, date);
|
|
}
|
|
export const EventInfo = ({route}) => {
|
|
const item = route.params;
|
|
const itemDate = new Date(parseInt(String(item.event_date).split('-')[0]), parseInt(String(item.event_date).split('-')[1])-1, parseInt(String(item.event_date).split('-')[2]))
|
|
const days = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']
|
|
const months = ['January','February','March','April','May','June','July','August','September','October','November','December',]
|
|
const dayOfWeek = days[itemDate.getDay()]
|
|
const month = months[itemDate.getMonth()]
|
|
const date = itemDate.getDate()
|
|
|
|
return (
|
|
<ScrollView style = {{backgroundColor: 'white', flex:1, padding: '5%', paddingRight: '10%'}}>
|
|
<View style={{marginBottom: '7%'}}>
|
|
<Text style={[styles.title, {fontWeight: 'bold', marginBottom: '2%'}]}>{I18n.t('calendar.info')}</Text>
|
|
<Text style={[styles.title, {fontWeight: '200'}]}>{item.text}</Text>
|
|
</View>
|
|
<View style={{}}>
|
|
<View style={{display: 'flex', flexDirection: 'row', marginBottom: '5%'}}>
|
|
<Ionicons name='location-outline' size={28} color={'#323232'}style={{marginRight: 15, alignSelf: 'center'}}/>
|
|
<View style={{display: 'flex', marginLeft: -15, paddingHorizontal: '5%'}}>
|
|
<Text style={{fontSize: 16}}>{I18n.t('calendar.location')}</Text>
|
|
<Text style={[styles.title, {fontSize: 16, fontWeight: '200'}]}>{item.location}</Text>
|
|
</View>
|
|
</View>
|
|
<View style={{display: 'flex', flexDirection: 'row', marginBottom: '5%'}}>
|
|
<Ionicons name='time-outline' size={28} color={'#323232'}style={{marginRight: 15, alignSelf: 'center'}}/>
|
|
<View style={{display: 'flex', marginLeft: -15, paddingHorizontal: '5%'}}>
|
|
<Text style={{fontSize: 16}}>{I18n.t('calendar.date')}</Text>
|
|
<Text style={[styles.title, {fontSize: 16, fontWeight: '200'}]}>{dayOfWeek}, {month} {date}</Text>
|
|
</View>
|
|
</View>
|
|
<View style={{display: 'flex', flexDirection: 'row'}}>
|
|
<Ionicons name='person-circle-outline' size={28} color={'#323232'}style={{marginRight: 15, alignSelf: 'center'}}/>
|
|
<View style={{display: 'flex', marginLeft: -15, paddingHorizontal: '5%'}}>
|
|
<Text style={{fontSize: 16}}>{I18n.t('calendar.organizer')}</Text>
|
|
<Text style={[styles.title, {fontSize: 16, fontWeight: '200'}]}>{item.name}</Text>
|
|
<Text style={[styles.title, {fontSize: 16, fontWeight: '200', textDecorationLine: 'underline'}]}>{item.emails}</Text>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
</ScrollView>
|
|
)
|
|
}
|
|
const Event = (props) => {
|
|
const item = props.item
|
|
const date = item.item.event_date.split('-')
|
|
|
|
return (
|
|
<View>
|
|
<TouchableOpacity style={[styles.listItem, {padding: '2%'}]} onPress={()=>props.navigation.navigate('EventInfo', {data:props.data, title: item.item.title,text:item.item.text,location:item.item.location,event_date:item.item.event_date, name:item.item.name, emails: item.item.emails})} activeOpacity={0.8}>
|
|
<View style = {[styles.container2, {justifyContent: 'space-between'}]}>
|
|
<View style={{display: 'flex', flexDirection: 'row'}}>
|
|
<Ionicons name='calendar' size={32} color={'#323232'} style={{marginRight: 15}}/>
|
|
<View style = {{display: 'flex', alignContent: 'center', width: '80%'}}>
|
|
<Text style={styles.title}>{item.item.title}</Text>
|
|
<View style={{paddingBottom: '2%'}}><Text style = {{fontSize: 12, fontWeight: '200'}}>{`${date[1]}/${date[2]}/${date[0]}`}</Text></View>
|
|
</View>
|
|
</View>
|
|
<Image source = {require('./assets/forward.png')} style={{tintColor: '#b2b2b2'}}/>
|
|
</View>
|
|
</TouchableOpacity>
|
|
</View>
|
|
)
|
|
}
|
|
|
|
const background = (<LinearGradient
|
|
colors={['#f99', 'white']}
|
|
style = {{flex:1,borderBottomColor:'black',borderBottomWidth:0.5}}
|
|
/>)
|
|
|
|
function CalendarEvents () {
|
|
return (
|
|
<NavigationContainer independent={true}>
|
|
<Stack.Navigator>
|
|
<Stack.Screen
|
|
name = {I18n.t('calendar.calendar')}
|
|
component = {Calendar}
|
|
options={({
|
|
headerShown: true,
|
|
headerTitleStyle:morestyles.headerTitle,
|
|
headerBackground: ()=>background,
|
|
//headerLeft: null,
|
|
headerTitleAlign: 'center',
|
|
headerBackTitleVisible:false,
|
|
headerTintColor: 'black'
|
|
})}
|
|
/>
|
|
<Stack.Screen
|
|
name = "EventInfo"
|
|
component = {EventInfo}
|
|
options={({route})=>({
|
|
title:route.params.title,
|
|
headerTitleStyle:morestyles.headerTitle,
|
|
headerBackground: ()=>background,
|
|
//headerLeft: null,
|
|
headerTitleAlign: 'center',
|
|
headerBackTitleVisible:false,
|
|
headerTintColor: 'black'
|
|
})}
|
|
/>
|
|
</Stack.Navigator>
|
|
</NavigationContainer>
|
|
)
|
|
}
|
|
|
|
function NewCalendarCategory (props) {
|
|
return (
|
|
<View>
|
|
<LinearGradient start={{x: 0.25, y: .5}} end={{x: 1, y: 1}} colors={['#FF8484', '#FF1111']} style={{backgroundColor: 'red', width: '20%', padding: '2%', borderTopRightRadius: 20, borderBottomRightRadius: 20, marginVertical: '2%'}}>
|
|
<Text style={[styles.title, {color: 'white', fontWeight: 'bold'}]}>{I18n.t('dates.'+props.name)}</Text>
|
|
</LinearGradient>
|
|
<FlatList
|
|
data={props.list}
|
|
renderItem={item=><Event item={item} name={props.itemname} navigation={props.navigation}/>}
|
|
keyExtractor={item=>JSON.stringify(item)}
|
|
/>
|
|
</View>
|
|
)
|
|
}
|
|
|
|
class Calendar extends React.Component {
|
|
|
|
constructor(props) {
|
|
super(props)
|
|
this.state = {
|
|
data: []
|
|
}
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.getData()
|
|
this.props.navigation.addListener(
|
|
'focus',
|
|
() => {
|
|
this.getData()
|
|
}
|
|
);
|
|
}
|
|
|
|
getData() {
|
|
fetch(`${url}/api/`+String(I18n.locale).split('-')[0]+`/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)
|
|
data.sort((a,b)=>new Date(b.event_date).getTime()-new Date(a.event_date).getTime())
|
|
this.setState({data: data});
|
|
})
|
|
.catch((error) => console.error(error))
|
|
}
|
|
|
|
render() {
|
|
const todayDate = getCurrentDate()
|
|
const weekPastDate = new Date();
|
|
var pastDate = weekPastDate.getDate() - 7;
|
|
weekPastDate.setDate(pastDate);
|
|
const weekFutureDate = new Date();
|
|
var futureDate = weekFutureDate.getDate() + 7;
|
|
weekFutureDate.setDate(futureDate);
|
|
const today = []
|
|
const past = []
|
|
const future = []
|
|
var todayBoolean = true
|
|
var pastBoolean = true
|
|
var futureBoolean = true
|
|
|
|
if (this.state.data.length >0) {
|
|
try {
|
|
for (var i =0; i < this.state.data.length; i++) {
|
|
const itemDate = new Date(parseInt(String(this.state.data[i].event_date).split('-')[0]), parseInt(String(this.state.data[i].event_date).split('-')[1])-1, parseInt(String(this.state.data[i].event_date).split('-')[2]))
|
|
if (itemDate.getTime() == todayDate.getTime()) {
|
|
today.push(this.state.data[i])
|
|
}
|
|
else if (itemDate > todayDate && itemDate <= weekFutureDate) {
|
|
future.push(this.state.data[i])
|
|
}
|
|
else if (itemDate >= weekPastDate && itemDate < todayDate) {
|
|
//else if (itemDate < todayDate) {
|
|
past.push(this.state.data[i])
|
|
}
|
|
}
|
|
}
|
|
catch {null}
|
|
}
|
|
|
|
if (today.length === 0) todayBoolean = false
|
|
if (past.length === 0) pastBoolean = false
|
|
if (future.length === 0) futureBoolean = false
|
|
var noAnn = (todayBoolean||pastBoolean||futureBoolean)
|
|
return (
|
|
<ScrollView style={{flex:1, backgroundColor: 'white'}}>
|
|
{todayBoolean?<NewCalendarCategory name = 'today' list = {today} navigation={this.props.navigation} />: <></>}
|
|
{futureBoolean?<NewCalendarCategory name = 'future' list = {future} navigation={this.props.navigation} />: <></>}
|
|
{pastBoolean?<NewCalendarCategory name = 'past' list = {past} navigation={this.props.navigation} />: <></>}
|
|
{!noAnn?<Text style={{textAlign: 'center', fontSize: 20, paddingTop: '2%'}}>{I18n.t('calendar.noEvents')}</Text>:<></>}
|
|
</ScrollView>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default CalendarEvents; |