1
0
Fork 0

chore(freesewing.dev): Layout composition changes

This commit is contained in:
Joost De Cock 2022-05-11 17:41:24 +02:00
parent 08e395cd58
commit e4a61c6502
8 changed files with 256 additions and 96 deletions

View file

@ -1,17 +1,10 @@
import React from 'react'
import { useState } from 'react'
import { useRouter } from 'next/router'
import Link from 'next/link'
// Shared components
import Logo from 'shared/components/logos/freesewing.js'
import PrimaryNavigation from 'shared/components/navigation/primary'
import Aside from 'shared/components/navigation/aside'
import get from 'lodash.get'
import Right from 'shared/components/icons/right.js'
import Left from 'shared/components/icons/left.js'
// Site components
import Header from 'site/components/header'
import Footer from 'site/components/footer'
import Search from 'site/components/search'
const PageTitle = ({ app, slug, title }) => {
if (title) return <h1>{title}</h1>
@ -60,89 +53,24 @@ const Breadcrumbs = ({ app, slug=false, title }) => {
)
}
const DefaultLayout = ({
app,
title=false,
children=[],
search,
setSearch,
noSearch=false,
workbench=false,
AltMenu=null,
}) => {
const startNavigation = () => {
app.startLoading()
// Force close of menu on mobile if it is open
if (app.primaryNavigation) app.setPrimaryNavigation(false)
// Force close of search modal if it is open
if (search) setSearch(false)
}
const DefaultLayout = ({ app, title=false, children=[] }) => {
const router = useRouter()
router.events?.on('routeChangeStart', startNavigation)
router.events?.on('routeChangeComplete', () => app.stopLoading())
const slug = router.asPath.slice(1)
const [collapsePrimaryNav, setCollapsePrimaryNav] = useState(workbench || false)
const [collapseAltMenu, setCollapseAltMenu] = useState(false)
return (
<div className={`
flex flex-col justify-between
min-h-screen
bg-base-100
`}>
<Header app={app} setSearch={setSearch} />
<main className="grow">
<div className="m-auto flex flex-row justify-center">
<aside className={`
fixed top-0 right-0 h-screen w-screen
overflow-y-auto z-20
bg-base-100 text-base-content md:bg-base-50
transition-all
${app.primaryMenu ? '' : 'translate-x-[-100%]'} transition-transform
md:flex md:sticky md:flex-row-reverse
md:relative md:transform-none
px-8 py-24
md:w-40
lg:w-1/2 lg:min-w-80 lg:pr-2 lg:border-r-2
xl:w-1/3 xl:min-w-80 xl:pr-2 xl:border-0
2xl:min-w-96 2xl:pr-8
`}>
<PrimaryNavigation app={app} active={slug}/>
</aside>
<section className="py-28 md:py-36 max-w-2/3">
<div>
{title && (
<div className="px-8 xl:pl-8 2xl:pl-16">
<Breadcrumbs app={app} slug={slug} title={title} />
<PageTitle app={app} slug={slug} title={title} />
</div>
)}
{children}
<div className="m-auto flex flex-row justify-center">
<Aside app={app} slug={slug} />
<section className="py-28 md:py-36 max-w-2/3">
<div>
{title && (
<div className="px-8 xl:pl-8 2xl:pl-16">
<Breadcrumbs app={app} slug={slug} title={title} />
<PageTitle app={app} slug={slug} title={title} />
</div>
</section>
)}
{children}
</div>
</main>
{!noSearch && search && (
<>
<div className={`
fixed w-full max-h-screen bg-base-100 top-0 z-30 pt-0 pb-16 px-8
md:rounded-lg md:top-24
md:max-w-xl md:m-auto md:inset-x-12
md:max-w-2xl
lg:max-w-4xl
`}>
<Search app={app} search={search} setSearch={setSearch}/>
</div>
<div className="fixed top-0 left-0 w-full min-h-screen bg-neutral z-20 bg-opacity-70"></div>
</>
)}
<Footer app={app} />
</section>
</div>
)
}