bigbuffet-rw/app/soapbox/features/chats/components/chat-page/chat-page.tsx

104 lines
3 KiB
TypeScript
Raw Normal View History

import classNames from 'clsx';
import React, { useEffect, useRef, useState } from 'react';
2022-11-11 04:16:53 -08:00
import { matchPath, Route, Switch, useHistory } from 'react-router-dom';
2022-09-13 08:18:46 -07:00
import { Stack } from 'soapbox/components/ui';
2022-10-31 09:14:22 -07:00
import { useOwnAccount } from 'soapbox/hooks';
2022-09-13 08:18:46 -07:00
import ChatPageMain from './components/chat-page-main';
2022-09-28 17:26:49 -07:00
import ChatPageNew from './components/chat-page-new';
2022-11-01 04:59:30 -07:00
import ChatPageSettings from './components/chat-page-settings';
import ChatPageSidebar from './components/chat-page-sidebar';
2022-09-28 17:39:22 -07:00
import Welcome from './components/welcome';
2022-09-13 08:18:46 -07:00
interface IChatPage {
chatId?: string,
}
const ChatPage: React.FC<IChatPage> = ({ chatId }) => {
2022-10-31 09:14:22 -07:00
const account = useOwnAccount();
2022-11-11 04:16:53 -08:00
const history = useHistory();
2022-10-31 09:14:22 -07:00
const isOnboarded = account?.chats_onboarded;
2022-11-11 04:16:53 -08:00
const path = history.location.pathname;
const isSidebarHidden = matchPath(path, {
path: ['/chats/settings', '/chats/new', '/chats/:chatId'],
exact: true,
});
const containerRef = useRef<HTMLDivElement>(null);
const [height, setHeight] = useState<string | number>('100%');
const calculateHeight = () => {
if (!containerRef.current) {
return null;
}
const { top } = containerRef.current.getBoundingClientRect();
const fullHeight = document.body.offsetHeight;
// On mobile, account for bottom navigation.
const offset = document.body.clientWidth < 976 ? -61 : 0;
setHeight(fullHeight - top + offset);
};
useEffect(() => {
calculateHeight();
}, [containerRef.current]);
useEffect(() => {
window.addEventListener('resize', calculateHeight);
return () => {
window.removeEventListener('resize', calculateHeight);
};
}, []);
2022-09-13 08:18:46 -07:00
return (
<div
ref={containerRef}
style={{ height }}
className='h-screen bg-white dark:bg-primary-900 text-gray-900 dark:text-gray-100 shadow-lg dark:shadow-none overflow-hidden sm:rounded-t-xl'
>
2022-10-31 09:14:22 -07:00
{isOnboarded ? (
2022-11-14 13:09:07 -08:00
<div
className='grid grid-cols-9 overflow-hidden h-full dark:divide-x-2 dark:divide-solid dark:divide-gray-800'
data-testid='chat-page'
>
2022-10-31 09:14:22 -07:00
<Stack
className={classNames('col-span-9 sm:col-span-3 bg-gradient-to-r from-white to-gray-100 dark:bg-gray-900 dark:bg-none overflow-hidden dark:inset', {
2022-11-11 04:16:53 -08:00
'hidden sm:block': isSidebarHidden,
2022-10-31 09:14:22 -07:00
})}
>
<ChatPageSidebar />
</Stack>
2022-11-03 10:33:33 -07:00
<Stack
className={classNames('col-span-9 sm:col-span-6 h-full overflow-hidden', {
2022-11-11 04:16:53 -08:00
'hidden sm:block': !isSidebarHidden,
2022-11-03 10:33:33 -07:00
})}
2022-10-31 09:14:22 -07:00
>
<Switch>
<Route path='/chats/new'>
<ChatPageNew />
</Route>
<Route path='/chats/settings'>
2022-11-01 04:59:30 -07:00
<ChatPageSettings />
2022-10-31 09:14:22 -07:00
</Route>
2022-11-14 13:09:07 -08:00
<Route>
2022-10-31 09:14:22 -07:00
<ChatPageMain />
</Route>
</Switch>
</Stack>
</div>
) : (
<Welcome />
)}
</div>
2022-09-13 08:18:46 -07:00
);
};
2022-09-13 11:11:22 -07:00
export default ChatPage;