-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNavigation.tsx
154 lines (147 loc) · 6.13 KB
/
Navigation.tsx
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
import { Provider as PaperProvider } from 'react-native-paper';
import { DrawerToggleButton, createDrawerNavigator } from '@react-navigation/drawer';
import { NavigationContainer } from '@react-navigation/native';
import { createStackNavigator } from '@react-navigation/stack';
import HomeScreen from './screens/HomeScreen';
import SearchResultsScreen from './screens/SearchResultsScreen';
import AboutScreen from './screens/AboutScreen';
import SongDetailsScreen from './screens/SongDetailsScreen';
import AddSongScreen from './screens/AddSongScreen';
import EditSongScreen from './screens/EditSongScreen';
import ExportImportScreen from './screens/ExportImportScreen';
import SocialMediaButtons from './components/SocialMediaButtons';
import RightSideDrawerContent from './components/RightSideDrawerContent';
import { useTheme } from './components/ThemeContext';
import { RootStackParamList } from './types/screens';
const Stack = createStackNavigator<RootStackParamList>();
const LeftDrawer = createDrawerNavigator();
const RightDrawer = createDrawerNavigator();
function Navigation() {
const darkMode = useTheme();
return (
<PaperProvider>
<NavigationContainer>
<Stack.Navigator initialRouteName='Home'>
<Stack.Screen
name="Home"
component={HomeDrawer}
options={({ navigation }) => ({
title: 'ChordMemo',
headerStyle: {
backgroundColor: '#009788'
},
headerTintColor: !darkMode ? "white" : "black",
headerLeft: () => (
<DrawerToggleButton
tintColor={!darkMode ? "white" : "black"}
// onPress={() => navigation.toggleDrawer()}
/>
),
headerRight: () => <SocialMediaButtons navigation={navigation} />
})}
/>
<Stack.Screen
name="SearchResults"
component={SearchResultsScreen}
options={{
title: 'Search Results',
headerStyle: {
backgroundColor: '#009788'
},
headerTintColor: !darkMode ? "white" : "black",
}}
/>
<Stack.Screen
name="About"
component={AboutScreen}
options={{
title: 'About',
headerStyle: {
backgroundColor: '#009788'
},
headerTintColor: !darkMode ? "white" : "black"
}}
/>
<Stack.Screen
name="SongDetails"
component={SongDetailsScreen}
options={({ route }) => ({
title: route.params?.song.title,
headerStyle: {
backgroundColor: '#009788'
},
headerTintColor: !darkMode ? "white" : "black"
})}
/>
<Stack.Screen
name="AddSong"
component={AddSongScreen}
options={{
title: 'Add Song',
headerStyle: {
backgroundColor: '#009788'
},
headerTintColor: !darkMode ? "white" : "black"
}}
/>
<Stack.Screen
name="EditSong"
component={EditSongScreen}
options={{
title: 'Edit Song',
headerStyle: {
backgroundColor: '#009788'
},
headerTintColor: !darkMode ? "white" : "black"
}}
/>
<Stack.Screen
name="ExportImport"
component={ExportImportScreen}
options={{
title: 'Export/Import',
headerStyle: {
backgroundColor: '#009788'
},
headerTintColor: !darkMode ? "white" : "black"
}}
/>
</Stack.Navigator>
</NavigationContainer>
</PaperProvider>
);
}
function RightDrawerScreen() {
return (
<RightDrawer.Navigator
initialRouteName="RightDrawer"
drawerContent={({ navigation }) => <RightSideDrawerContent navigation={navigation} />}
screenOptions={{ headerShown: false }}
>
<RightDrawer.Screen
name="RightDrawer"
component={HomeScreen}
options={{
drawerPosition: 'right'
}}
/>
</RightDrawer.Navigator>
);
}
function HomeDrawer() {
const darkMode = useTheme();
return (
<LeftDrawer.Navigator initialRouteName="HomeDrawer" screenOptions={{ headerShown: false }}>
<LeftDrawer.Screen
name="HomeDrawer"
component={RightDrawerScreen}
options={{
title: 'Home',
drawerStyle: {backgroundColor: !darkMode ? 'white' : '#171717' },
drawerActiveTintColor: !darkMode ? '#0077FF' : '#009788',
}}
/>
</LeftDrawer.Navigator>
);
}
export default Navigation;