|
|
|
|
@ -1,12 +1,19 @@
|
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
import {
|
|
|
|
|
Platform,
|
|
|
|
|
StyleSheet,
|
|
|
|
|
Text,
|
|
|
|
|
View
|
|
|
|
|
Platform,
|
|
|
|
|
StyleSheet,
|
|
|
|
|
Image,
|
|
|
|
|
ListView,
|
|
|
|
|
Text,
|
|
|
|
|
ScrollView,
|
|
|
|
|
TextInput,
|
|
|
|
|
TouchableHighlight,
|
|
|
|
|
View
|
|
|
|
|
} from 'react-native';
|
|
|
|
|
|
|
|
|
|
import RunInfo from './components/run-info';
|
|
|
|
|
import RunInfoNumeric from './components/run-info-num';
|
|
|
|
|
|
|
|
|
|
import MapView from 'react-native-maps';
|
|
|
|
|
const instructions = Platform.select({
|
|
|
|
|
ios: 'Press Cmd+R to reload,\n' +
|
|
|
|
|
@ -15,29 +22,87 @@ const instructions = Platform.select({
|
|
|
|
|
'Shake or press menu button for dev menu',
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
{/*<View style={{flex: 1}}>*/}
|
|
|
|
|
{/*<MapView style={styles.map}*/}
|
|
|
|
|
{/*showsUserLocation*/}
|
|
|
|
|
{/*followsUserLocation*/}
|
|
|
|
|
{/*initialRegion={{*/}
|
|
|
|
|
{/*latitude: 37.33307,*/}
|
|
|
|
|
{/*longitude: -122.0324,*/}
|
|
|
|
|
{/*latitudeDelta: 0.02,*/}
|
|
|
|
|
{/*longitudeDelta: 0.02*/}
|
|
|
|
|
{/*}}*/}
|
|
|
|
|
{/*/>*/}
|
|
|
|
|
|
|
|
|
|
type Props = {};
|
|
|
|
|
export default class App extends Component<Props> {
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
|
|
|
|
<View style={{flex: 1}}>
|
|
|
|
|
<MapView style={styles.map}
|
|
|
|
|
showsUserLocation
|
|
|
|
|
followsUserLocation
|
|
|
|
|
initialRegion={{
|
|
|
|
|
latitude: 37.33307,
|
|
|
|
|
longitude: -122.0324,
|
|
|
|
|
latitudeDelta: 0.02,
|
|
|
|
|
longitudeDelta: 0.02
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
{/*<Text style={{flex: 1, backgroundColor: 'green'}}>Map View</Text>*/}
|
|
|
|
|
{/*<View style={styles.infoWrapper}>*/}
|
|
|
|
|
{/*<RunInfo title = "Distance" value = "0 km"/>*/}
|
|
|
|
|
{/*<RunInfo title = "Speed" value = "0 km/h"/>*/}
|
|
|
|
|
{/*<RunInfo title = "Direction" value = "NE"/>*/}
|
|
|
|
|
{/*</View>*/}
|
|
|
|
|
</View>
|
|
|
|
|
constructor(props) {
|
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
|
|
let ds = new ListView.DataSource({rowHasChanged: (a, b) => a !== b});
|
|
|
|
|
this.state = {dataSource: ds.cloneWithRows([
|
|
|
|
|
'john', 'joel', 'miki', 'iu lol', 'yeeet',
|
|
|
|
|
'john', 'joel', 'miki', 'iu lol', 'yeeet',
|
|
|
|
|
'john', 'joel', 'miki', 'iu lol', 'yeeet',
|
|
|
|
|
'john', 'joel', 'miki', 'iu lol', 'yeeet',
|
|
|
|
|
'john', 'joel', 'miki', 'iu lol', 'yeeet',
|
|
|
|
|
])};
|
|
|
|
|
|
|
|
|
|
setInterval(() => {
|
|
|
|
|
// this.distanceInfo.setState({value: Math.random() * 100});
|
|
|
|
|
// this.speedInfo.setState({value: Math.random() * 15});
|
|
|
|
|
// this.directionInfo.setState({value: this.directionInfo.state === 'N' ? 'NW' : 'N'});
|
|
|
|
|
}, 1000);
|
|
|
|
|
}
|
|
|
|
|
render() {
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<ListView
|
|
|
|
|
dataSource={this.state.dataSource}
|
|
|
|
|
renderSeparator={() => <View style = {{backgroundColor: '#CCC', height: 1}}/>}
|
|
|
|
|
renderRow={(row) => (
|
|
|
|
|
<View style={{flexDirection: 'row'}}>
|
|
|
|
|
<Image source = {{uri: 'https://i.imgur.com/Zbv1S4G.png'}} style = {{width: 50, margin: 10}}/>
|
|
|
|
|
<Text style = {{fontSize: 25, padding: 10}}>{row}</Text>
|
|
|
|
|
</View>
|
|
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
// <View style ={{flex: 1}}>
|
|
|
|
|
// <TextInput
|
|
|
|
|
// style={styles.textInput}
|
|
|
|
|
// autoCapitalize="words"
|
|
|
|
|
// placeholder="Type something"
|
|
|
|
|
// onChangeText={(text) => this.setState({text})}
|
|
|
|
|
// onBlur={() => this.setState({ text: this.state.text.toUpperCase() })}
|
|
|
|
|
// />
|
|
|
|
|
//
|
|
|
|
|
// <TouchableHighlight
|
|
|
|
|
// onPress={() => this.setState({confirmedText: this.state.text})}
|
|
|
|
|
// onLongPress={() => this.setState({confirmedText: this.state.text.toLowerCase()})}
|
|
|
|
|
// >
|
|
|
|
|
// <Text style={{fontSize: 16, backgroundColor: '#EEE', textAlign: 'center'}}>Press Me</Text>
|
|
|
|
|
// </TouchableHighlight>
|
|
|
|
|
//
|
|
|
|
|
// <Text style={{flex: 1, fontSize: 18}}>
|
|
|
|
|
// {this.state.confirmedText}
|
|
|
|
|
// </Text>
|
|
|
|
|
//
|
|
|
|
|
// <View style={styles.infoWrapper}>
|
|
|
|
|
//
|
|
|
|
|
// <RunInfoNumeric title = "Distance"
|
|
|
|
|
// unit="km"
|
|
|
|
|
// ref={(info) => this.distanceInfo = info}
|
|
|
|
|
// />
|
|
|
|
|
// <RunInfoNumeric title = "Speed"
|
|
|
|
|
// unit="km/h"
|
|
|
|
|
// ref={(info) => this.speedInfo = info}
|
|
|
|
|
// />
|
|
|
|
|
// <RunInfo title = "Direction"
|
|
|
|
|
// value = "NE"
|
|
|
|
|
// ref={(info) => this.directionInfo = info}
|
|
|
|
|
// />
|
|
|
|
|
// </View>
|
|
|
|
|
// </View>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|