mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-11 19:44:15 +00:00
82 lines
2.0 KiB
JavaScript
Executable File
82 lines
2.0 KiB
JavaScript
Executable File
import React from "react"
|
|
import classnames from "classnames"
|
|
import { Layout } from "antd"
|
|
|
|
import {
|
|
Sidebar,
|
|
Drawer,
|
|
Sidedrawer,
|
|
BottomBar,
|
|
TopBar,
|
|
ToolsBar,
|
|
Header,
|
|
} from "components/Layout"
|
|
|
|
import BackgroundDecorator from "components/BackgroundDecorator"
|
|
|
|
import { createWithDom as FloatingStack } from "../components/floatingStack"
|
|
import InitializeModalsController from "../components/modals"
|
|
|
|
const DesktopLayout = (props) => {
|
|
InitializeModalsController()
|
|
|
|
React.useEffect(() => {
|
|
const floatingStack = FloatingStack()
|
|
|
|
return () => {
|
|
floatingStack.remove()
|
|
}
|
|
}, [])
|
|
|
|
return <>
|
|
<BackgroundDecorator />
|
|
|
|
<Layout id="app_layout" className="app_layout">
|
|
<Drawer />
|
|
<Sidebar />
|
|
<Sidedrawer />
|
|
|
|
<Layout.Content
|
|
id="content_layout"
|
|
className={classnames(
|
|
...props.contentClassnames ?? [],
|
|
"content_layout",
|
|
"fade-transverse-active",
|
|
)}
|
|
>
|
|
<Header />
|
|
|
|
{
|
|
props.children && React.cloneElement(props.children, props)
|
|
}
|
|
</Layout.Content>
|
|
<ToolsBar />
|
|
</Layout>
|
|
</>
|
|
}
|
|
|
|
const MobileLayout = (props) => {
|
|
return <Layout id="app_layout" className="app_layout">
|
|
<TopBar />
|
|
|
|
<Layout.Content
|
|
id="content_layout"
|
|
className={classnames(
|
|
...props.layoutPageModesClassnames ?? [],
|
|
"content_layout",
|
|
"fade-transverse-active",
|
|
)}
|
|
>
|
|
{
|
|
props.children && React.cloneElement(props.children, props)
|
|
}
|
|
</Layout.Content>
|
|
|
|
<BottomBar />
|
|
<Drawer />
|
|
</Layout>
|
|
}
|
|
|
|
export default (props) => {
|
|
return window.app.isMobile ? <MobileLayout {...props} /> : <DesktopLayout {...props} />
|
|
}
|