mirror of
https://github.com/Blair-SGA-Dev-Team/blazerapp.git
synced 2024-11-08 14:51:17 -05:00
improved calendar pg
This commit is contained in:
parent
3b842be5c9
commit
dae85bb30c
|
@ -7,47 +7,74 @@ import {
|
||||||
Text,
|
Text,
|
||||||
StatusBar,
|
StatusBar,
|
||||||
FlatList,
|
FlatList,
|
||||||
TouchableOpacity
|
TouchableOpacity,
|
||||||
|
Image,
|
||||||
} from 'react-native';
|
} from 'react-native';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
Header,
|
|
||||||
LearnMoreLinks,
|
|
||||||
Colors,
|
|
||||||
DebugInstructions,
|
|
||||||
ReloadInstructions,
|
ReloadInstructions,
|
||||||
} from 'react-native/Libraries/NewAppScreen';
|
} from 'react-native/Libraries/NewAppScreen';
|
||||||
|
|
||||||
|
import LinearGradient from 'react-native-linear-gradient';
|
||||||
|
|
||||||
import styles from './styles/liststyles'
|
import styles from './styles/liststyles'
|
||||||
import { url } from './resources/fetchInfo.json'
|
import { url } from './resources/fetchInfo.json'
|
||||||
|
|
||||||
|
const getCurrentDate=()=>{
|
||||||
|
var date = new Date().getDate();
|
||||||
|
var month = new Date().getMonth() + 1;
|
||||||
|
var year = new Date().getFullYear();
|
||||||
|
|
||||||
|
return year + '-' + month + '-' + date;
|
||||||
|
}
|
||||||
|
|
||||||
const Event = ({item}) => {
|
const Event = ({item}) => {
|
||||||
const [visible, setVisible] = useState(false)
|
const [visible, setVisible] = useState(false)
|
||||||
const date = item.item.date.split('-')
|
const date = item.item.date.split('-')
|
||||||
|
const today = new Date(getCurrentDate())
|
||||||
|
const itemDate = new Date(item.item.date)
|
||||||
|
|
||||||
const extra = (
|
const extra = (
|
||||||
<>
|
<>
|
||||||
<Text style={{fontSize:20}}>{item.item.text}</Text>
|
<Text style={{fontSize:20}}>{item.item.text}</Text>
|
||||||
<Text style={{fontSize:20}}>Location: {item.item.location}</Text>
|
<Text style={{fontSize:20}}>Location: {item.item.location}</Text>
|
||||||
<Text style={{fontSize:20}}>Date: {`${date[1]}/${date[2]}/${date[0]}`}</Text>
|
<Text style={{fontSize:20}}>Date: {`${date[1]}/${date[2]}/${date[0]}`}</Text>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
return (
|
if (itemDate >= today) {
|
||||||
<TouchableOpacity style={styles.item1} onPress={()=>setVisible(!visible)} activeOpacity={0.8}>
|
return (
|
||||||
<Text style={styles.title}>{item.item.title}</Text>
|
<TouchableOpacity style={styles.item1} onPress={()=>setVisible(!visible)} activeOpacity={0.8}>
|
||||||
|
<View style = {{display: 'flex', flexDirection: 'row'}}>
|
||||||
|
<Image source ={require('./assets/calendar.png')} style = {{height: 40, width: 40, marginRight: 15}}/>
|
||||||
|
<Text style={styles.title3}>{item.item.title}</Text>
|
||||||
|
</View>
|
||||||
|
{visible?extra:<></>}
|
||||||
|
</TouchableOpacity>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return (
|
||||||
|
<TouchableOpacity style={{backgroundColor: '#e3e3e3', padding: 15, borderBottomWidth: 1, borderColor: 'black', width: '100%',}} onPress={()=>setVisible(!visible)} activeOpacity={0.8}>
|
||||||
|
<View style = {{display: 'flex', flexDirection: 'row', alignContent: 'center'}}>
|
||||||
|
<Image source ={require('./assets/calendar.png')} style = {{height: 40, width: 40, marginRight: 15}}/>
|
||||||
|
<Text style={styles.title3}>{item.item.title}</Text>
|
||||||
|
</View>
|
||||||
{visible?extra:<></>}
|
{visible?extra:<></>}
|
||||||
</TouchableOpacity>
|
</TouchableOpacity>
|
||||||
)
|
)
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class Calendar extends React.Component {
|
class Calendar extends React.Component {
|
||||||
|
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props)
|
super(props)
|
||||||
this.state = {
|
this.state = {
|
||||||
data: []
|
data: []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
this.getData()
|
this.getData()
|
||||||
this.props.navigation.addListener(
|
this.props.navigation.addListener(
|
||||||
|
@ -57,7 +84,7 @@ class Calendar extends React.Component {
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
getData() {
|
getData() {
|
||||||
fetch(`${url}/api/en/events`,{
|
fetch(`${url}/api/en/events`,{
|
||||||
headers: {
|
headers: {
|
||||||
|
@ -73,10 +100,19 @@ class Calendar extends React.Component {
|
||||||
})
|
})
|
||||||
.catch((error) => console.error(error))
|
.catch((error) => console.error(error))
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<View style={styles.container}>
|
<View>
|
||||||
|
<View style = {{height: 90, display: 'flex'}}>
|
||||||
|
<LinearGradient
|
||||||
|
colors={['#f99', 'white']}
|
||||||
|
style = {{height: '100%', borderBottomColor:'black', borderBottomWidth:0.5, display: 'flex', justifyContent: 'flex-end', paddingBottom: '2.5%'}}
|
||||||
|
>
|
||||||
|
<Text style = {{fontSize: 24, fontWeight: 'bold', alignSelf: 'center'}}>Calendar</Text>
|
||||||
|
</LinearGradient>
|
||||||
|
|
||||||
|
</View>
|
||||||
<FlatList
|
<FlatList
|
||||||
data={this.state.data}
|
data={this.state.data}
|
||||||
renderItem={item=><Event item={item}/>}
|
renderItem={item=><Event item={item}/>}
|
||||||
|
@ -84,7 +120,7 @@ class Calendar extends React.Component {
|
||||||
/>
|
/>
|
||||||
</View>
|
</View>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Calendar;
|
export default Calendar;
|
|
@ -24,7 +24,7 @@ function ResourceLink(props) {
|
||||||
return (
|
return (
|
||||||
<TouchableOpacity style={styles.resourceContainer} onPress={() => Linking.openURL(props.url)}>
|
<TouchableOpacity style={styles.resourceContainer} onPress={() => Linking.openURL(props.url)}>
|
||||||
<Image source={props.img} style={styles.image}/>
|
<Image source={props.img} style={styles.image}/>
|
||||||
<View style={styles.textContainer}>
|
<View style={styles.textContainer}>
|
||||||
<Text style={styles.resourceText}>{props.name}</Text>
|
<Text style={styles.resourceText}>{props.name}</Text>
|
||||||
</View>
|
</View>
|
||||||
</TouchableOpacity>
|
</TouchableOpacity>
|
||||||
|
@ -34,7 +34,7 @@ function ResourceLink(props) {
|
||||||
class Resources extends React.Component {
|
class Resources extends React.Component {
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<ScrollView>
|
<ScrollView style = {{backgroundColor: 'white'}}>
|
||||||
<ResourceLink url='https://classroom.mcpsmd.org/' img={require('./assets/canvaslogo.png')} name='MyMCPS Classroom'/>
|
<ResourceLink url='https://classroom.mcpsmd.org/' img={require('./assets/canvaslogo.png')} name='MyMCPS Classroom'/>
|
||||||
<ResourceLink url='https://md-mcps-psv.edupoint.com/Home_PXP2.aspx' img={require('./assets/studentvue.jpg')} name='StudentVUE'/>
|
<ResourceLink url='https://md-mcps-psv.edupoint.com/Home_PXP2.aspx' img={require('./assets/studentvue.jpg')} name='StudentVUE'/>
|
||||||
<ResourceLink url='https://mbhs.edu/newsevents/Announcements/Montgomery%20Blair%20High%20School%20Final%20Bell%20Schedule%20.pdf' img={require('./assets/schedule.jpg')} name='1st Semester Schedule'/>
|
<ResourceLink url='https://mbhs.edu/newsevents/Announcements/Montgomery%20Blair%20High%20School%20Final%20Bell%20Schedule%20.pdf' img={require('./assets/schedule.jpg')} name='1st Semester Schedule'/>
|
||||||
|
|
BIN
app/assets/calendar.png
Normal file
BIN
app/assets/calendar.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.1 KiB |
Loading…
Reference in New Issue
Block a user