From f6769b283fe83d7abbc0545077b3dca978184eed Mon Sep 17 00:00:00 2001 From: John Fawcett Date: Wed, 12 Apr 2023 20:27:55 -0500 Subject: Mobile Web (#427) * WIP * WIP * Fix header offset on web * Remove debug * Fix web mobile feed and FAB layout * Fix modals on mobile web * Remove dead code * Remove ios config that shouldnt be committed now * Move bottom bar into its own folder * Fix web drawer navigation and state behaviors * Remove dark mode toggle from web drawer for now * Fix search on mobile web * Fix the logged out splash screen on mobile web * Fixes to detox simulator --------- Co-authored-by: Paul Frazee --- src/view/shell/index.web.tsx | 43 ++++++++++++++++++++++++++++++++++++++----- 1 file changed, 38 insertions(+), 5 deletions(-) (limited to 'src/view/shell/index.web.tsx') diff --git a/src/view/shell/index.web.tsx b/src/view/shell/index.web.tsx index 96a120642..86d120127 100644 --- a/src/view/shell/index.web.tsx +++ b/src/view/shell/index.web.tsx @@ -1,6 +1,6 @@ import React from 'react' import {observer} from 'mobx-react-lite' -import {View, StyleSheet} from 'react-native' +import {View, StyleSheet, TouchableOpacity} from 'react-native' import {useStores} from 'state/index' import {DesktopLeftNav} from './desktop/LeftNav' import {DesktopRightNav} from './desktop/RightNav' @@ -11,9 +11,13 @@ import {Composer} from './Composer.web' import {useColorSchemeStyle} from 'lib/hooks/useColorSchemeStyle' import {s, colors} from 'lib/styles' import {RoutesContainer, FlatNavigator} from '../../Navigation' +import {DrawerContent} from './Drawer' +import {useWebMediaQueries} from '../../lib/hooks/useWebMediaQueries' +import {BottomBarWeb} from './bottom-bar/BottomBarWeb' const ShellInner = observer(() => { const store = useStores() + const {isDesktop} = useWebMediaQueries() return ( <> @@ -22,10 +26,14 @@ const ShellInner = observer(() => { - - - - + {isDesktop && ( + <> + + + + + + )} store.shell.closeComposer()} @@ -34,8 +42,18 @@ const ShellInner = observer(() => { quote={store.shell.composerOpts?.quote} onPost={store.shell.composerOpts?.onPost} /> + {!isDesktop && } + {!isDesktop && store.shell.isDrawerOpen && ( + store.shell.closeDrawer()} + style={styles.drawerMask}> + + + + + )} ) }) @@ -71,4 +89,19 @@ const styles = StyleSheet.create({ viewBorderRight: { left: 'calc(50vw + 300px)', }, + drawerMask: { + position: 'absolute', + width: '100%', + height: '100%', + top: 0, + left: 0, + backgroundColor: 'rgba(0,0,0,0.25)', + }, + drawerContainer: { + display: 'flex', + position: 'absolute', + top: 0, + left: 0, + height: '100%', + }, }) -- cgit 1.4.1