-
Notifications
You must be signed in to change notification settings - Fork 4
/
BLE.js
38 lines (33 loc) · 1.08 KB
/
BLE.js
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
import React from 'react';
import { connect } from 'react-redux';
import { Container, Text} from 'native-base';
import { withNavigation } from 'react-navigation';
import { SegmentedControlIOSComponent } from 'react-native';
class BLE extends React.Component {
constructor(props) {
super(props);
};
render() {
return (
<Container>
<Text style={{backgroundColor: this.props.color}}>
Status: {this.props.status}
</Text>
<Text>Color: {this.props.color}</Text>
{this.props.connectedDevice && <Text>Device: {this.props.connectedDevice.name}</Text>}
</Container>
);
}
}
function mapStateToProps(state){
return{
BLEList : state.BLEs.BLEList,
color:state.BLEs.color,
connectedDevice: state.BLEs.connectedDevice,
status: state.BLEs.status
};
}
const mapDispatchToProps = dispatch => ({
addBLE: device => dispatch(addBLE(device))
})
export default connect(mapStateToProps,mapDispatchToProps,null,{ forwardRef: true })(withNavigation(BLE));