mirror of
https://github.com/Blair-SGA-Dev-Team/blazerapp.git
synced 2024-11-12 08:41:16 -05:00
104 lines
2.5 KiB
JavaScript
104 lines
2.5 KiB
JavaScript
import React, { useState } from 'react';
|
|
import {
|
|
SafeAreaView,
|
|
StyleSheet,
|
|
ScrollView,
|
|
View,
|
|
Text,
|
|
StatusBar,
|
|
ActivityIndicator,
|
|
FlatList,
|
|
TouchableOpacity
|
|
} from 'react-native';
|
|
|
|
import {
|
|
Header,
|
|
LearnMoreLinks,
|
|
Colors,
|
|
DebugInstructions,
|
|
ReloadInstructions,
|
|
} from 'react-native/Libraries/NewAppScreen';
|
|
import { SearchBar } from 'react-native-elements';
|
|
import styles from './styles/liststyles'
|
|
import { url } from './resources/fetchInfo.json'
|
|
|
|
const ClubElement = ({item}) => {
|
|
const [visible, setVisible] = useState(0)
|
|
const extra = visible?(<Text>{'\n'}Location: {item.item.loc} {"\n\n"}Sponsor: {item.item.sponsor}</Text>):(<></>);
|
|
return(
|
|
<View>
|
|
<TouchableOpacity style={styles.item} onPress={()=>setVisible(!visible)} activeOpacity={0.8}>
|
|
<Text style={styles.title}>{item.item.name}</Text>
|
|
{extra}
|
|
</TouchableOpacity>
|
|
</View>
|
|
)
|
|
}
|
|
class Clubs extends React.Component {
|
|
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
data: [],
|
|
dataSearch:[],
|
|
isLoading: true,
|
|
search:""
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
|
|
fetch(`${url}/api/en/clubs`,{
|
|
headers: {
|
|
'Cache-Control': 'no-cache'
|
|
} })
|
|
.then((response) => {
|
|
return response.text();
|
|
})
|
|
.then((json) => {
|
|
this.setState({data: JSON.parse(json).clubs});
|
|
this.setState({dataSearch:JSON.parse(json).clubs });
|
|
})
|
|
.catch((error) => console.error(error))
|
|
.finally(() => {
|
|
this.setState({ isLoading: false });
|
|
});
|
|
|
|
}
|
|
updateSearch = (search) => {
|
|
this.setState({ search:search });
|
|
const searchPool = search.startsWith(this.state.search)?this.state.dataSearch:this.state.data;
|
|
const ds = searchPool.filter((thing)=>{return thing.name.toLowerCase().startsWith(search.toLowerCase())})
|
|
this.setState({dataSearch: ds})
|
|
};
|
|
clearSearch = (search)=>{
|
|
const ds = this.state.data;
|
|
this.setState({dataSearch:ds})
|
|
}
|
|
render() {
|
|
const { data , dataSearch, isLoading,search} = this.state;
|
|
|
|
return (
|
|
|
|
|
|
<SafeAreaView style={styles.container}>
|
|
<SearchBar
|
|
lightTheme
|
|
placeholder="Search Clubs"
|
|
onChangeText={this.updateSearch}
|
|
onCancel={this.clearSearch}
|
|
onClear={this.clearSearch}
|
|
value={this.state.search}/>
|
|
<FlatList
|
|
data={dataSearch}
|
|
renderItem={item => <ClubElement item={item}/>}
|
|
keyExtractor={item => JSON.stringify(item)}
|
|
/>
|
|
</SafeAreaView>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Clubs; |