28 lines
745 B
JavaScript
28 lines
745 B
JavaScript
import { MainSections, ActiveSection } from './primary'
|
|
|
|
const Aside = ({ app, slug, mobileOnly = false, before = [], after = [] }) => (
|
|
<aside
|
|
className={`
|
|
fixed top-0 right-0 h-screen w-screen
|
|
overflow-y-auto z-20
|
|
bg-base-100 text-base-content
|
|
${app.primaryMenu ? '' : 'translate-x-[-120%]'} transition-transform
|
|
px-6 pb-20 pt-8 shrink-0
|
|
|
|
lg:sticky lg:relative lg:transform-none
|
|
lg:justify-center
|
|
lg:border-r-2 lg:border-base-200 lg:bg-base-200 lg:bg-opacity-50
|
|
${mobileOnly ? 'block lg:hidden' : ''}
|
|
w-full
|
|
`}
|
|
>
|
|
<div>
|
|
{before}
|
|
<MainSections app={app} active={slug} />
|
|
<ActiveSection app={app} active={slug} />
|
|
{after}
|
|
</div>
|
|
</aside>
|
|
)
|
|
|
|
export default Aside
|