mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
9d8b21edc0
React IDE page: hide editor and PDF during resize GitOrigin-RevId: bad1a7601d1706e684c91c88c3239a6618479681
72 lines
2.1 KiB
TypeScript
72 lines
2.1 KiB
TypeScript
import { Panel, PanelGroup } from 'react-resizable-panels'
|
|
import { ReactNode, useState } from 'react'
|
|
import { HorizontalResizeHandle } from '../resize/horizontal-resize-handle'
|
|
import useFixedSizeColumn from '@/features/ide-react/hooks/use-fixed-size-column'
|
|
import useCollapsiblePanel from '@/features/ide-react/hooks/use-collapsible-panel'
|
|
import classNames from 'classnames'
|
|
|
|
const CHAT_DEFAULT_SIZE = 20
|
|
|
|
type PageProps = {
|
|
headerContent: ReactNode
|
|
chatContent: ReactNode
|
|
mainContent: ReactNode
|
|
chatIsOpen: boolean
|
|
shouldPersistLayout: boolean
|
|
}
|
|
|
|
// The main area below the header is split into two: the main content and chat.
|
|
// The reason for not splitting the left column containing the file tree and
|
|
// outline here is that the history view has its own file tree, so it is more
|
|
// convenient to replace the whole of the main content when in history view.
|
|
export default function MainLayout({
|
|
headerContent,
|
|
chatContent,
|
|
mainContent,
|
|
chatIsOpen,
|
|
shouldPersistLayout,
|
|
}: PageProps) {
|
|
const { fixedPanelRef: chatPanelRef, handleLayout } = useFixedSizeColumn(
|
|
CHAT_DEFAULT_SIZE,
|
|
chatIsOpen
|
|
)
|
|
|
|
useCollapsiblePanel(chatIsOpen, chatPanelRef)
|
|
|
|
const [resizing, setResizing] = useState(false)
|
|
|
|
return (
|
|
<div className="ide-react-main">
|
|
{headerContent}
|
|
<div className="ide-react-body">
|
|
<PanelGroup
|
|
autoSaveId={shouldPersistLayout ? 'ide-react-chat-layout' : undefined}
|
|
direction="horizontal"
|
|
onLayout={handleLayout}
|
|
className={classNames({
|
|
'ide-react-main-resizing': resizing,
|
|
})}
|
|
>
|
|
<Panel id="main" order={1}>
|
|
{mainContent}
|
|
</Panel>
|
|
{chatIsOpen ? (
|
|
<>
|
|
<HorizontalResizeHandle onDragging={setResizing} />
|
|
<Panel
|
|
ref={chatPanelRef}
|
|
id="chat"
|
|
order={2}
|
|
defaultSize={CHAT_DEFAULT_SIZE}
|
|
minSize={5}
|
|
collapsible
|
|
>
|
|
{chatContent}
|
|
</Panel>
|
|
</>
|
|
) : null}
|
|
</PanelGroup>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|