-
-
Notifications
You must be signed in to change notification settings - Fork 112
/
App.tsx
122 lines (112 loc) · 3.82 KB
/
App.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
import * as React from 'react';
import {Dimensions, StyleSheet} from 'react-native';
import {reaction} from 'mobx';
import {observer} from 'mobx-react';
import {NavigationContainer} from '@react-navigation/native';
import {Provider as PaperProvider} from 'react-native-paper';
import {BottomSheetModalProvider} from '@gorhom/bottom-sheet';
import {createDrawerNavigator} from '@react-navigation/drawer';
import {SafeAreaProvider} from 'react-native-safe-area-context';
import {
gestureHandlerRootHOC,
GestureHandlerRootView,
} from 'react-native-gesture-handler';
import {useTheme} from './src/hooks';
import {Theme} from './src/utils/types';
import {modelStore, chatSessionStore} from './src/store';
import {HeaderRight, SidebarContent, ModelsHeaderRight} from './src/components';
import {
ChatScreen,
ModelsScreen,
SettingsScreen,
BenchmarkScreen,
} from './src/screens';
const Drawer = createDrawerNavigator();
const screenWidth = Dimensions.get('window').width;
const App = observer(() => {
const [chatTitle, setChatTitle] = React.useState('Default Chat Page');
React.useEffect(() => {
const dispose = reaction(
() => modelStore.chatTitle,
newTitle => setChatTitle(newTitle),
{fireImmediately: true},
);
return () => dispose();
}, []);
const theme = useTheme();
const styles = createStyles(theme);
return (
<GestureHandlerRootView style={styles.root}>
<SafeAreaProvider>
<BottomSheetModalProvider>
<PaperProvider theme={theme}>
<NavigationContainer>
<Drawer.Navigator
useLegacyImplementation={false}
screenOptions={{
drawerStyle: {
width: screenWidth * 0.8,
},
headerStyle: {
backgroundColor: theme.colors.background,
},
headerTintColor: theme.colors.onBackground,
}}
drawerContent={props => <SidebarContent {...props} />}>
<Drawer.Screen
name="Chat"
component={gestureHandlerRootHOC(ChatScreen)}
options={{
title: chatTitle,
headerRight: () => <HeaderRight />,
headerStyle: chatSessionStore.shouldShowHeaderDivider
? styles.headerWithDivider
: styles.headerWithoutDivider,
}}
/>
<Drawer.Screen
name="Models"
component={gestureHandlerRootHOC(ModelsScreen)}
options={{
headerRight: () => <ModelsHeaderRight />,
headerStyle: styles.headerWithoutDivider,
}}
/>
<Drawer.Screen
name="Settings"
component={gestureHandlerRootHOC(SettingsScreen)}
options={{
headerStyle: styles.headerWithoutDivider,
}}
/>
<Drawer.Screen
name="Benchmark"
component={gestureHandlerRootHOC(BenchmarkScreen)}
options={{
headerStyle: styles.headerWithoutDivider,
}}
/>
</Drawer.Navigator>
</NavigationContainer>
</PaperProvider>
</BottomSheetModalProvider>
</SafeAreaProvider>
</GestureHandlerRootView>
);
});
const createStyles = (theme: Theme) =>
StyleSheet.create({
root: {
flex: 1,
},
headerWithoutDivider: {
elevation: 0,
shadowOpacity: 0,
borderBottomWidth: 0,
backgroundColor: theme.colors.background,
},
headerWithDivider: {
backgroundColor: theme.colors.background,
},
});
export default App;