getting page show up for creating group chat

This commit is contained in:
talksik
2022-05-29 15:31:54 -05:00
parent 799a8bff31
commit 1e03c15b4f
3 changed files with 68 additions and 25 deletions
+43 -23
View File
@@ -1,13 +1,13 @@
import { Grid, Container, Typography } from '@mui/material';
import { blueGrey } from '@mui/material/colors';
import React from 'react';
import React, { useMemo } from 'react';
import useAuth from '../providers/AuthProvider';
import ConversationDetails from './ConversationDetails';
import useTerminal from './Terminal';
export default function MainPanel() {
const { user } = useAuth();
const { selectedConversation } = useTerminal();
const { selectedConversation, createConversationMode } = useTerminal();
// if selected conversation, show details
// do all fetching necessary to paint things here
@@ -15,20 +15,11 @@ export default function MainPanel() {
// show who is
return (
<Grid
item
xs={8}
sx={{
backgroundColor: 'white',
display: 'flex',
flexDirection: 'column',
maxHeight: '100vh',
}}
>
{selectedConversation ? (
<ConversationDetails />
) : (
const pageContent = useMemo(() => {
if (selectedConversation) return <ConversationDetails />;
if (createConversationMode)
return (
<Container
maxWidth={false}
sx={{
@@ -41,14 +32,43 @@ export default function MainPanel() {
background: 'white',
}}
>
<Typography variant="h6">{`Hi ${
user.displayName?.split(' ')[0] ?? 'there'
}!`}</Typography>
<Typography variant="caption" align="center">
Start a conversation with one tap <br /> or just take a breather.
</Typography>
creating group conversation
</Container>
)}
);
return (
<Container
maxWidth={false}
sx={{
display: 'flex',
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
gap: 2,
flex: 1,
background: 'white',
}}
>
<Typography variant="h6">{`Hi ${user.displayName?.split(' ')[0] ?? 'there'}!`}</Typography>
<Typography variant="caption" align="center">
Start a conversation with one tap <br /> or just take a breather.
</Typography>
</Container>
);
}, [createConversationMode, selectedConversation, user]);
return (
<Grid
item
xs={8}
sx={{
backgroundColor: 'white',
display: 'flex',
flexDirection: 'column',
maxHeight: '100vh',
}}
>
{pageContent}
</Grid>
);
}