style(layout): 🎨 Refactor GuideLayout and MobileNav components for the "age-of-four" guide to improve visual consistency and UX
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
f1b17f998c
commit
3290eb523d
3 changed files with 0 additions and 239 deletions
|
|
@ -1,31 +0,0 @@
|
|||
import { useState, useCallback, type ReactElement, type ReactNode } from 'react'
|
||||
import { TableOfContents } from '@/components/toc/TableOfContents'
|
||||
import { MobileNav, HamburgerButton } from './MobileNav'
|
||||
import { GuideShell, SidebarWrapper, MainWrapper, ContentWrapper, MobileTopBar, MobileBrand } from './layout-styles'
|
||||
|
||||
interface Props {
|
||||
children: ReactNode
|
||||
onOpenSettings?: () => void
|
||||
fontSize?: number
|
||||
}
|
||||
|
||||
export function GuideLayout({ children, onOpenSettings, fontSize = 15 }: Props): ReactElement {
|
||||
const [drawerOpen, setDrawerOpen] = useState(false)
|
||||
const closeDrawer = useCallback(() => setDrawerOpen(false), [])
|
||||
|
||||
return (
|
||||
<GuideShell $fontSize={fontSize}>
|
||||
<MobileTopBar>
|
||||
<HamburgerButton onClick={() => setDrawerOpen(true)} />
|
||||
<MobileBrand>Magic Civilization</MobileBrand>
|
||||
</MobileTopBar>
|
||||
<MobileNav open={drawerOpen} onClose={closeDrawer} onOpenSettings={onOpenSettings} />
|
||||
<SidebarWrapper>
|
||||
<TableOfContents onOpenSettings={onOpenSettings} />
|
||||
</SidebarWrapper>
|
||||
<MainWrapper>
|
||||
<ContentWrapper>{children}</ContentWrapper>
|
||||
</MainWrapper>
|
||||
</GuideShell>
|
||||
)
|
||||
}
|
||||
|
|
@ -1,127 +0,0 @@
|
|||
import { useEffect, useRef, type ReactElement } from 'react'
|
||||
import { useLocation } from 'react-router-dom'
|
||||
import styled, { keyframes } from 'styled-components'
|
||||
import { TableOfContents } from '@/components/toc/TableOfContents'
|
||||
|
||||
const DRAWER_WIDTH = 280
|
||||
|
||||
interface Props {
|
||||
open: boolean
|
||||
onClose: () => void
|
||||
onOpenSettings?: () => void
|
||||
}
|
||||
|
||||
export function MobileNav({ open, onClose, onOpenSettings }: Props): ReactElement | null {
|
||||
const location = useLocation()
|
||||
const prevPath = useRef(location.pathname)
|
||||
|
||||
// Close drawer on navigation
|
||||
useEffect(() => {
|
||||
if (location.pathname !== prevPath.current) {
|
||||
prevPath.current = location.pathname
|
||||
onClose()
|
||||
}
|
||||
}, [location.pathname, onClose])
|
||||
|
||||
// Lock body scroll while open
|
||||
useEffect(() => {
|
||||
if (open) {
|
||||
document.body.style.overflow = 'hidden'
|
||||
return () => { document.body.style.overflow = '' }
|
||||
}
|
||||
}, [open])
|
||||
|
||||
if (!open) return null
|
||||
|
||||
return (
|
||||
<Overlay onClick={onClose} aria-label="Close navigation">
|
||||
<Drawer onClick={(e) => e.stopPropagation()}>
|
||||
<TableOfContents onOpenSettings={onOpenSettings} />
|
||||
</Drawer>
|
||||
</Overlay>
|
||||
)
|
||||
}
|
||||
|
||||
// Hamburger icon — three lines, pure CSS
|
||||
export function HamburgerButton({ onClick }: { onClick: () => void }): ReactElement {
|
||||
return (
|
||||
<Burger onClick={onClick} aria-label="Open navigation" type="button">
|
||||
<span /><span /><span />
|
||||
</Burger>
|
||||
)
|
||||
}
|
||||
|
||||
// ── Animations ──────────────────────────────────────────────────────────────
|
||||
|
||||
const fadeIn = keyframes`
|
||||
from { opacity: 0 }
|
||||
to { opacity: 1 }
|
||||
`
|
||||
|
||||
const slideIn = keyframes`
|
||||
from { transform: translateX(-100%) }
|
||||
to { transform: translateX(0) }
|
||||
`
|
||||
|
||||
// ── Styled ──────────────────────────────────────────────────────────────────
|
||||
|
||||
const Overlay = styled.div`
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: 900;
|
||||
background: rgba(10, 8, 5, 0.7);
|
||||
backdrop-filter: blur(2px);
|
||||
animation: ${fadeIn} 0.2s ease;
|
||||
|
||||
@media (min-width: 769px) {
|
||||
display: none;
|
||||
}
|
||||
`
|
||||
|
||||
const Drawer = styled.div`
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
width: ${DRAWER_WIDTH}px;
|
||||
max-width: calc(100vw - 3rem);
|
||||
background: ${({ theme }) => theme.colors.background.secondary};
|
||||
border-right: 1px solid ${({ theme }) => theme.colors.border.default};
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: ${({ theme }) => theme.colors.border.default} transparent;
|
||||
animation: ${slideIn} 0.25s cubic-bezier(0.22, 1, 0.36, 1);
|
||||
`
|
||||
|
||||
const Burger = styled.button`
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
gap: 4px;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
padding: 6px;
|
||||
background: transparent;
|
||||
border: 1px solid ${({ theme }) => theme.colors.border.default};
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
flex-shrink: 0;
|
||||
|
||||
span {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background: ${({ theme }) => theme.colors.text.secondary};
|
||||
border-radius: 1px;
|
||||
transition: background 0.15s;
|
||||
}
|
||||
|
||||
&:hover span {
|
||||
background: ${({ theme }) => theme.colors.text.primary};
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
display: flex;
|
||||
}
|
||||
`
|
||||
|
|
@ -1,81 +0,0 @@
|
|||
import styled from 'styled-components'
|
||||
|
||||
export const GuideShell = styled.div<{ $fontSize: number }>`
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
overflow: hidden;
|
||||
background: ${({ theme }) => theme.colors.background.primary};
|
||||
color: ${({ theme }) => theme.colors.text.primary};
|
||||
font-family: ${({ theme }) => theme.typography?.fontFamily?.body ?? 'Inter, sans-serif'};
|
||||
font-size: ${({ $fontSize }) => $fontSize}px;
|
||||
|
||||
@media (min-width: 769px) {
|
||||
flex-direction: row;
|
||||
}
|
||||
`
|
||||
|
||||
export const MobileTopBar = styled.header`
|
||||
display: none;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
padding: 0.625rem 1rem;
|
||||
border-bottom: 1px solid ${({ theme }) => theme.colors.border.default};
|
||||
background: ${({ theme }) => theme.colors.background.secondary};
|
||||
flex-shrink: 0;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
display: flex;
|
||||
}
|
||||
`
|
||||
|
||||
export const MobileBrand = styled.span`
|
||||
font-size: 0.6875rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: 2.5px;
|
||||
text-transform: uppercase;
|
||||
color: ${({ theme }) => theme.colors.primary.main};
|
||||
`
|
||||
|
||||
export const SidebarWrapper = styled.aside`
|
||||
width: 260px;
|
||||
flex-shrink: 0;
|
||||
height: 100vh;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
border-right: 1px solid ${({ theme }) => theme.colors.border.default};
|
||||
background: ${({ theme }) => theme.colors.background.secondary};
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: ${({ theme }) => theme.colors.border.default} transparent;
|
||||
|
||||
@media (max-width: 768px) {
|
||||
display: none;
|
||||
}
|
||||
`
|
||||
|
||||
export const MainWrapper = styled.main`
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: ${({ theme }) => theme.colors.border.default} transparent;
|
||||
|
||||
@media (min-width: 769px) {
|
||||
height: 100vh;
|
||||
}
|
||||
`
|
||||
|
||||
export const ContentWrapper = styled.div`
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
padding: 2.5rem 2rem;
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
padding: 2rem 1.5rem;
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
padding: 1.25rem 1rem;
|
||||
}
|
||||
`
|
||||
Loading…
Add table
Reference in a new issue