Created
June 15, 2019 14:26
-
-
Save BetterProgramming/8cd366392d65aeec20032ec9bc1f771b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import{StyleSheet,View,ActivityIndicator,FlatList,Text,TouchableOpacity,Image} from "react-native"; | |
import { Icon } from "react-native-elements"; | |
import { enText } from "../lang/en"; | |
export default class Store extends React.Component { | |
constructor(props) { | |
super(props) | |
this.state = { | |
loading: false, | |
dataSource: [], | |
}; | |
} | |
componentDidMount() {this.fetchData();} | |
fetchData = () => {this.setState({loading: true}); | |
fetch("https://jsonplaceholder.typicode.com/photos") | |
.then(response => response.json()) | |
.then(responseJson => { | |
responseJson = responseJson.map(item => { | |
item.isSelect = false; | |
item.selectedClass = styles.list; | |
return item; | |
}); | |
this.setState({ | |
loading: false, | |
dataSource: responseJson, | |
}); | |
}).catch(error => {this.setState({loading: false}); | |
}); | |
}; | |
FlatListItemSeparator = () => <View style={styles.line} />; | |
selectItem = data => { | |
data.item.isSelect = !data.item.isSelect; | |
data.item.selectedClass = data.item.isSelect ? styles.selected : styles.list; | |
const index = this.state.dataSource.findIndex( | |
item => data.item.id === item.id | |
); | |
this.state.dataSource[index] = data.item; | |
this.setState({ | |
dataSource: this.state.dataSource, | |
}); | |
}; | |
goToStore = () =>this.props.navigation.navigate("Expenses", {selected: this.state.selected,}); | |
renderItem = data => | |
<TouchableOpacity | |
style={[styles.list, data.item.selectedClass]} | |
onPress={() => this.selectItem(data)} | |
> | |
<Image | |
source={{ uri: data.item.thumbnailUrl }} | |
style={{ width: 40, height: 40, margin: 6 }} | |
/> | |
<Text style={styles.lightText}> {data.item.title.charAt(0).toUpperCase() + data.item.title.slice(1)} </Text> | |
</TouchableOpacity> | |
render() { | |
const itemNumber = this.state.dataSource.filter(item => item.isSelect).length; | |
if (this.state.loading) {return ( | |
<View style={styles.loader}> | |
<ActivityIndicator size="large" color="purple" /> | |
</View> | |
); | |
} | |
return ( | |
<View style={styles.container}> | |
<Text style={styles.title}>{enText.productsAvailable}</Text> | |
<FlatList | |
data={this.state.dataSource} | |
ItemSeparatorComponent={this.FlatListItemSeparator} | |
renderItem={item => this.renderItem(item)} | |
keyExtractor={item => item.id.toString()} | |
extraData={this.state} | |
/> | |
<View style={styles.numberBox}> | |
<Text style={styles.number}>{itemNumber}</Text> | |
</View> | |
<TouchableOpacity style={styles.icon}> | |
<View> | |
<Icon | |
raised | |
name="shopping-cart" | |
type="font-awesome" | |
color="#e3e3e3" | |
size={30} | |
onPress={() => this.goToStore()} | |
containerStyle={{ backgroundColor: "#FA7B5F" }} | |
/> | |
</View> | |
</TouchableOpacity> | |
</View> | |
);}} | |
const styles = StyleSheet.create({ | |
container: { | |
flex: 1, | |
backgroundColor: "#192338", | |
paddingVertical: 50, | |
position: "relative" | |
}, | |
title: { | |
fontSize: 20, | |
color: "#fff", | |
textAlign: "center", | |
marginBottom: 10 | |
}, | |
loader: { | |
flex: 1, | |
justifyContent: "center", | |
alignItems: "center", | |
backgroundColor: "#fff" | |
}, | |
list: { | |
paddingVertical: 5, | |
margin: 3, | |
flexDirection: "row", | |
backgroundColor: "#192338", | |
justifyContent: "flex-start", | |
alignItems: "center", | |
zIndex: -1 | |
}, | |
lightText: { | |
color: "#f7f7f7", | |
width: 200, | |
paddingLeft: 15, | |
fontSize: 12 | |
}, | |
line: { | |
height: 0.5, | |
width: "100%", | |
backgroundColor:"rgba(255,255,255,0.5)" | |
}, | |
icon: { | |
position: "absolute", | |
bottom: 20, | |
width: "100%", | |
left: 290, | |
zIndex: 1 | |
}, | |
numberBox: { | |
position: "absolute", | |
bottom: 75, | |
width: 30, | |
height: 30, | |
borderRadius: 15, | |
left: 330, | |
zIndex: 3, | |
backgroundColor: "#e3e3e3", | |
justifyContent: "center", | |
alignItems: "center" | |
}, | |
number: {fontSize: 14,color: "#000"}, | |
selected: {backgroundColor: "#FA7B5F"}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment