about summary refs log tree commit diff
path: root/src/view/shell/web/index.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-01-27 00:16:07 -0600
committerPaul Frazee <pfrazee@gmail.com>2023-01-27 00:16:07 -0600
commit99360f7bd90480b0c382014fa7d889aef8c433a4 (patch)
tree0e6d5f734097fcbc3a2c88e3ce43eed1f26eed69 /src/view/shell/web/index.tsx
parent5961c268005eda9c37b26d48fe9f5ae2def9106e (diff)
downloadvoidsky-99360f7bd90480b0c382014fa7d889aef8c433a4.tar.zst
Implement basic web composer
Diffstat (limited to 'src/view/shell/web/index.tsx')
-rw-r--r--src/view/shell/web/index.tsx13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/view/shell/web/index.tsx b/src/view/shell/web/index.tsx
index a4232eab2..0eb5cf75c 100644
--- a/src/view/shell/web/index.tsx
+++ b/src/view/shell/web/index.tsx
@@ -3,13 +3,14 @@ import {observer} from 'mobx-react-lite'
 import {View, StyleSheet} from 'react-native'
 import {useStores} from '../../../state'
 import {match, MatchResult} from '../../routes'
-import {DesktopLeftColumn} from './left-column'
-import {DesktopRightColumn} from './right-column'
+import {DesktopLeftColumn} from './DesktopLeftColumn'
+import {DesktopRightColumn} from './DesktopRightColumn'
 import {Onboard} from '../../screens/Onboard'
 import {Login} from '../../screens/Login'
 import {ErrorBoundary} from '../../com/util/ErrorBoundary'
 import {Lightbox} from '../../com/lightbox/Lightbox'
 import {Modal} from '../../com/modals/Modal'
+import {Composer} from './Composer'
 import {usePalette} from '../../lib/hooks/usePalette'
 import {s} from '../../lib/styles'
 
@@ -49,6 +50,14 @@ export const WebShell: React.FC = observer(() => {
       ))}
       <DesktopLeftColumn />
       <DesktopRightColumn />
+      <Composer
+        active={store.shell.isComposerActive}
+        onClose={() => store.shell.closeComposer()}
+        winHeight={0}
+        replyTo={store.shell.composerOpts?.replyTo}
+        imagesOpen={store.shell.composerOpts?.imagesOpen}
+        onPost={store.shell.composerOpts?.onPost}
+      />
       <Modal />
       <Lightbox />
     </View>