Skip to content

Commit 42d6354

Browse files
committed
Added nested navigation to and from place screen
1 parent ae7e4b9 commit 42d6354

File tree

8 files changed

+150
-61
lines changed

8 files changed

+150
-61
lines changed

App.js

+24-5
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,31 @@ import MapScreen from './Screens/MapScreen';
77
import ListScreen from './Screens/ListScreen';
88
import PlaceScreen from './Screens/PlaceScreen';
99
import TestScreen from './Screens/TestScreen';
10-
import ListStack from './Screens/TestScreen'
10+
import { createStackNavigator } from '@react-navigation/stack';
1111

1212
const Tab = createBottomTabNavigator();
1313

14+
const appStack = createStackNavigator();
15+
16+
function PlaceStack() {
17+
return (
18+
<appStack.Navigator screenOptions={{ headerShown: false }}>
19+
<appStack.Screen name="ListScreen" component={ListScreen} />
20+
<appStack.Screen name="PlaceScreen" component={PlaceScreen} />
21+
</appStack.Navigator >
22+
)
23+
}
24+
25+
function MapStack() {
26+
return (
27+
<appStack.Navigator screenOptions={{ headerShown: false }}>
28+
<appStack.Screen name="MapScreen" component={MapScreen} />
29+
<appStack.Screen name="PlaceScreen" component={PlaceScreen} />
30+
</appStack.Navigator>
31+
)
32+
}
33+
34+
1435
function AppNavigator() {
1536
return (
1637
<Tab.Navigator
@@ -35,9 +56,8 @@ function AppNavigator() {
3556
tabBarActiveTintColor: 'teal',
3657
tabBarInactiveTintColor: 'gray',
3758
})}>
38-
{/* <Tab.Screen name="List" component={ListScreen} /> */}
39-
<Tab.Screen name="List" component={TestScreen} />
40-
<Tab.Screen name="Map" component={MapScreen} />
59+
<Tab.Screen name="List" component={PlaceStack} />
60+
<Tab.Screen name="Map" component={MapStack} />
4161
</Tab.Navigator>
4262
);
4363
}
@@ -47,7 +67,6 @@ export default function App() {
4767
return (
4868
<NavigationContainer>
4969
<AppNavigator />
50-
5170
</NavigationContainer>
5271
);
5372
}

Components/ListViewComponent.js

+16-9
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,22 @@ import { StyleSheet, View, Image, Text, FlatList, Pressable } from 'react-native
22
import React from 'react'
33

44
import '../data/nt_places.json';
5+
import { useNavigation } from '@react-navigation/native';
56

6-
const ListViewComponent = ({ navigation }) => {
7+
const ListViewComponent = () => {
78

89
const nationalTrustPlaces = require('../data/nt_places.json');
910
const placesArray = Object.values(nationalTrustPlaces);
1011

12+
const navigation = useNavigation();
13+
14+
const changeScreenOnPress = (item) => {
15+
navigation.push('PlaceScreen', { data: item.id });
16+
}
1117

1218
const placesRenderItem = ({ item }) => {
1319
return (
14-
<Pressable key={item} style={styles.placeCard} >
20+
<Pressable key={item} style={styles.placeCard} onPress={() => changeScreenOnPress(item)} >
1521
<View style={styles.placeImageContainer}>
1622
<Image style={styles.placeImage} source={{ uri: item.imageUrl }} />
1723
</View>
@@ -32,34 +38,35 @@ const ListViewComponent = ({ navigation }) => {
3238
);
3339
}
3440

41+
3542
export default ListViewComponent
3643

3744
const styles = StyleSheet.create({
3845
placeCard: {
3946
width: '100%',
4047
marginTop: 7,
41-
height: 300,
48+
height: 275,
4249
alignItems: 'center',
4350
},
4451
placeImageContainer: {
4552
width: '95%',
46-
height: 235,
53+
height: 200,
4754
},
4855
placeImage: {
4956
width: '100%',
5057
height: '100%',
51-
borderTopLeftRadius: 20,
52-
borderTopRightRadius: 20,
58+
borderTopLeftRadius: 10,
59+
borderTopRightRadius: 10,
5360
},
5461
placeTextContainer: {
5562
width: '95%',
56-
height: 65,
63+
height: 75,
5764
marginHorizontal: 2,
5865
paddingHorizontal: 10,
5966
backgroundColor: 'white',
6067
// transform: [{ translateY: -10 }],
61-
borderBottomLeftRadius: 20,
62-
borderBottomRightRadius: 20,
68+
borderBottomLeftRadius: 10,
69+
borderBottomRightRadius: 10,
6370
justifyContent: 'center',
6471
},
6572
placeText: {

Components/MapComponents.js

+32-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,37 @@
1+
import { useNavigation } from '@react-navigation/native';
12
import React from 'react';
2-
import { StyleSheet, Dimensions } from 'react-native';
3-
import MapView, { Marker } from "react-native-maps";
3+
import { StyleSheet, Dimensions, Button, Text, View } from 'react-native';
4+
import MapView, { Callout, Marker } from "react-native-maps";
45
import '../data/nt_places.json';
56

67

78

89
const MapComponent = () => {
910
let nationalTrustPlaces = require('../data/nt_places.json');
1011

12+
const navigation = useNavigation();
13+
14+
const changeScreenOnPress = (item) => {
15+
navigation.push('PlaceScreen', { data: item.id });
16+
}
17+
1118
const styles = StyleSheet.create({
1219
map: {
1320
width: Dimensions.get('window').width,
1421
height: Dimensions.get('window').height,
1522
alignContent: 'center',
1623
justifyContent: 'center',
17-
flex: 1
24+
flex: 1,
25+
},
26+
markerCallout: {
27+
width: 300,
28+
height: 300
29+
},
30+
markerView: {
31+
alignItems: 'center',
32+
},
33+
markerTitle: {
34+
// fontSize: 24,
1835
},
1936
});
2037

@@ -27,13 +44,19 @@ const MapComponent = () => {
2744
latitudeDelta: 0.09,
2845
longitudeDelta: 0.04,
2946
}}>
30-
{Object.values(nationalTrustPlaces).map(index => {
47+
{Object.values(nationalTrustPlaces).map(item => {
3148
return <Marker
32-
key={index.id}
33-
coordinate={{ latitude: index.location.latitude, longitude: index.location.longitude }}
34-
title={index.title}
35-
description={index.description}
36-
icon={{ uri: 'https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/240/samsung/320/round-pushpin_1f4cd.png' }} />
49+
key={item.id}
50+
coordinate={{ latitude: item.location.latitude, longitude: item.location.longitude }}
51+
icon={{ uri: 'https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/240/samsung/320/round-pushpin_1f4cd.png' }}
52+
onCalloutPress={() => changeScreenOnPress(item)} >
53+
<Callout>
54+
<View style={styles.markerView}>
55+
<Text style={styles.markerTitle}>{item.title}</Text>
56+
<Button title="find more" onProgress={() => navigation.push('PlaceScreen', { data: item.id })} />
57+
</View>
58+
</Callout>
59+
</Marker>
3760
})}
3861
</MapView>
3962
)

Navigation/PlaceNavigator.js

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// import { StyleSheet, Text, View } from 'react-native'
2+
// import React from 'react'
3+
// import { createStackNavigator } from '@react-navigation/stack'
4+
// import MapScreen from '../Screens/MapScreen';
5+
// import PlaceScreen from '../Screens/PlaceScreen';
6+
// import ListScreen from '../Screens/ListScreen';
7+
8+
// const itemStack = createStackNavigator();
9+
10+
// function PlaceStack() {
11+
// return (
12+
// <itemStack.Navigator>
13+
// <itemStack.Screen name="list" component={ListScreen} />
14+
// <itemStack.Screen name="place" component={PlaceScreen} />
15+
// </itemStack.Navigator>
16+
// )
17+
// }
18+
19+
// const PlaceNavigator = () => {
20+
// return (
21+
// <PlaceStack />
22+
// )
23+
// }
24+
25+
// export default PlaceNavigator
26+
27+
// const styles = StyleSheet.create({})

Screens/ListScreen.js

+6-30
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,17 @@
1-
import { Image, StyleSheet, Text, View, SafeAreaView, StatusBar } from 'react-native'
1+
import { StyleSheet, Text, View, SafeAreaView, StatusBar } from 'react-native'
22
import React from 'react'
33
import ListViewComponent from '../Components/ListViewComponent'
44

5-
import '../data/nt_places.json'
6-
75
const ListScreen = () => {
8-
const nationalTrustPlaces = require('../data/nt_places.json');
9-
const nationalTrustPlacesSize = Object.keys(nationalTrustPlaces).length;
106

117
return (
8+
129
<SafeAreaView style={styles.listViewContainer}>
1310
<StatusBar hidden />
1411
<View style={styles.listContainer}/*Ask Ben about this in the lab*/>
1512
<View style={styles.listTitleContainer}>
16-
<View style={styles.listTitleImage}>
17-
<Image source={require('../assets/images/leaf-solid.png')} style={{ width: 50, height: 50 }} />
18-
</View>
19-
<View>
20-
<Text style={styles.listTitle}>Explore {nationalTrustPlacesSize} places, starting from</Text >
21-
</View>
2213
<View>
23-
<Text style={styles.listSubTitle}>Bournemouth, Dorset</Text>
14+
<Text style={styles.listTitle}>National Trust</Text >
2415
</View>
2516
</View >
2617
<View style={styles.listScrollContainer}>
@@ -42,30 +33,15 @@ const styles = StyleSheet.create({
4233
width: '100%',
4334
},
4435
listTitleContainer: {
45-
backgroundColor: 'teal',
36+
backgroundColor: '#007A3B',
4637
width: '100%',
4738
alignItems: 'center',
4839
borderBottomStartRadius: 10,
4940
borderBottomEndRadius: 10,
5041
},
51-
listTitleImage: {
52-
alignContent: 'center',
53-
textAlign: 'center',
54-
marginTop: 10
55-
},
5642
listTitle: {
5743
color: 'white',
58-
marginTop: 10,
59-
fontSize: 17
60-
},
61-
listSubTitle: {
62-
color: 'white',
63-
marginTop: 5,
64-
fontStyle: 'italic',
65-
fontSize: 15,
66-
marginBottom: 10,
67-
},
68-
listScrollContainer: {
69-
44+
marginVertical: 20,
45+
fontSize: 24,
7046
},
7147
})

Screens/PlaceScreen.js

+45-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,52 @@
1-
import { StyleSheet, Text, View } from 'react-native'
1+
import { StyleSheet, Text, ScrollView, View, Image, Button } from 'react-native'
22
import React from 'react'
3+
import { useNavigation } from '@react-navigation/native';
4+
5+
import '../data/nt_places.json';
6+
7+
const PlaceScreen = (item) => {
8+
const nationalTrustPlaces = require('../data/nt_places.json');
9+
const place = nationalTrustPlaces[item.route.params.data];
10+
11+
const navigation = useNavigation();
312

4-
const PlaceScreen = () => {
513
return (
6-
<View>
7-
<Text>Place Screen</Text>
8-
</View>
9-
)
14+
<ScrollView style={styles.place}>
15+
<View>
16+
<Button title="Go Back" style={styles.backButton} onPress={() => navigation.goBack()} />
17+
</View>
18+
<View style={styles.placeImageContainer}>
19+
<Image style={styles.placeImage} source={{ uri: place.imageUrl }} />
20+
</View>
21+
<View style={styles.placeTitle}>
22+
<Text style={styles.placeTitleText}>{place.title}</Text>
23+
</View>
24+
25+
</ScrollView>
26+
);
1027
}
1128

1229
export default PlaceScreen
1330

14-
const styles = StyleSheet.create({})
31+
const styles = StyleSheet.create({
32+
backButton: {
33+
},
34+
place: {
35+
width: '100%',
36+
},
37+
placeImageContainer: {
38+
width: '100%',
39+
height: 300,
40+
},
41+
placeImage: {
42+
width: '100%',
43+
height: '100%',
44+
},
45+
placeTitle: {
46+
backgroundColor: 'teal',
47+
48+
},
49+
placeTitleText: {
50+
color: 'white',
51+
},
52+
})

Screens/TestScreen.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import React from 'react'
22
import { StyleSheet, Text, SafeAreaView, Button } from 'react-native'
33
import { createStackNavigator } from '@react-navigation/stack'
4-
import { NavigationContainer } from '@react-navigation/native'
54
import { StatusBar } from 'expo-status-bar'
65

76
function Screen1({ navigation }) {

assets/images/leaf-solid.png

-5.93 KB
Binary file not shown.

0 commit comments

Comments
 (0)