-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBaseCurrency.js
More file actions
74 lines (65 loc) · 1.66 KB
/
BaseCurrency.js
File metadata and controls
74 lines (65 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import React from 'react';
import { StyleSheet, Picker , View} from 'react-native';
export default class BaseCurrency extends React.Component {
constructor(props)
{
super(props);
this.state = {
currencies : [],
loaded : false,
selectedCurrency: null
}
fetch('https://api.exchangeratesapi.io/latest')
.then((response) => response.json())
.then((responseJson) => {
let currencyEntries = Object.entries(responseJson.rates);
let currencies = [];
currencyEntries.forEach( (entry,index) => {
currencies.push(entry[0]);
});
this.setState({
currencies : currencies ,
loaded : true ,
selectedCurrency : this.state.currencies[0]
});
})
.catch((error) => {
console.error(error);
});
}
updateSelectedValue(value,index) {
this.setState({
selectedCurrency : value
})
this.props.changeBaseCurrency(value);
}
render() {
let items = this.state.currencies.map( (value,index) => {
return <Picker.Item key={value} label={value} value={value} />
})
return (
<View style = {styles.container}>
<Picker
selectedValue={this.state.selectedCurrency}
style={styles.picker}
onValueChange = { (evt) => this.updateSelectedValue(evt) }
>
{ items }
</Picker>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex:1,
flexDirection: 'row',
alignItems : 'stretch',
backgroundColor: 'orangered',
borderRadius:5
},
picker: {
width:'90%',
height:50,color:'#fff'
}
});