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' const ClubElement = ({item}) => { const [visible, setVisible] = useState(0) const extra = visible?({'\n'}Location: {item.item.loc} {"\n\n"}Sponsor: {item.item.sponsor}):(<>); return( setVisible(!visible)}> {item.item.name} {extra} ) } class Clubs extends React.Component { constructor(props) { super(props); this.state = { data: [], dataSearch:[], isLoading: true, search:"" }; } componentDidMount() { fetch('https://6dc2642ae9b3.ngrok.io/api/en/clubs',{ headers: { 'Cache-Control': 'no-cache' } }) .then((response) => { //console.log(response.text()); return response.text(); }) .then((json) => { //onsole.log("done bitch?") //console.log(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 ( } keyExtractor={item => JSON.stringify(item)} /> ); } } export default Clubs;