125 lines
3.5 KiB
TypeScript
125 lines
3.5 KiB
TypeScript
import { use } from 'react';
|
|
|
|
import { cookies } from 'next/headers';
|
|
|
|
import { z } from 'zod';
|
|
|
|
import { UserWorkspaceContextProvider } from '@kit/accounts/components';
|
|
import { Page, PageMobileNavigation, PageNavigation } from '@kit/ui/page';
|
|
import { SidebarProvider } from '@kit/ui/shadcn-sidebar';
|
|
import { StoreCart } from '@medusajs/types';
|
|
import { retrieveCart } from '@lib/data/cart';
|
|
|
|
import { AppLogo } from '~/components/app-logo';
|
|
import { personalAccountNavigationConfig } from '~/config/personal-account-navigation.config';
|
|
import { withI18n } from '~/lib/i18n/with-i18n';
|
|
|
|
// home imports
|
|
import { HomeMenuNavigation } from '../_components/home-menu-navigation';
|
|
import { HomeMobileNavigation } from '../_components/home-mobile-navigation';
|
|
import { HomeSidebar } from '../_components/home-sidebar';
|
|
import { loadUserWorkspace } from '../_lib/server/load-user-workspace';
|
|
|
|
function UserHomeLayout({ children }: React.PropsWithChildren) {
|
|
const state = use(getLayoutState());
|
|
|
|
if (state.style === 'sidebar') {
|
|
return <SidebarLayout>{children}</SidebarLayout>;
|
|
}
|
|
|
|
return <HeaderLayout>{children}</HeaderLayout>;
|
|
}
|
|
|
|
export default withI18n(UserHomeLayout);
|
|
|
|
function SidebarLayout({ children }: React.PropsWithChildren) {
|
|
const workspace = use(loadUserWorkspace());
|
|
const state = use(getLayoutState());
|
|
|
|
return (
|
|
<UserWorkspaceContextProvider value={workspace}>
|
|
<SidebarProvider defaultOpen={state.open}>
|
|
<Page style={'sidebar'}>
|
|
<PageNavigation>
|
|
<HomeSidebar />
|
|
</PageNavigation>
|
|
|
|
<PageMobileNavigation className={'flex items-center justify-between'}>
|
|
<MobileNavigation workspace={workspace} cart={null} />
|
|
</PageMobileNavigation>
|
|
|
|
{children}
|
|
</Page>
|
|
</SidebarProvider>
|
|
</UserWorkspaceContextProvider>
|
|
);
|
|
}
|
|
|
|
function HeaderLayout({ children }: React.PropsWithChildren) {
|
|
const workspace = use(loadUserWorkspace());
|
|
const cart = use(retrieveCart());
|
|
|
|
return (
|
|
<UserWorkspaceContextProvider value={workspace}>
|
|
<Page style={'header'}>
|
|
<PageNavigation>
|
|
<HomeMenuNavigation workspace={workspace} cart={cart} />
|
|
</PageNavigation>
|
|
|
|
<PageMobileNavigation className={'flex items-center justify-between'}>
|
|
<MobileNavigation workspace={workspace} cart={cart} />
|
|
</PageMobileNavigation>
|
|
|
|
<SidebarProvider defaultOpen>
|
|
<Page style={'sidebar'}>
|
|
<PageNavigation>
|
|
<HomeSidebar />
|
|
</PageNavigation>
|
|
{children}
|
|
</Page>
|
|
</SidebarProvider>
|
|
</Page>
|
|
</UserWorkspaceContextProvider>
|
|
);
|
|
}
|
|
|
|
function MobileNavigation({
|
|
workspace,
|
|
cart,
|
|
}: {
|
|
workspace: Awaited<ReturnType<typeof loadUserWorkspace>>;
|
|
cart: StoreCart | null;
|
|
}) {
|
|
return (
|
|
<>
|
|
<AppLogo />
|
|
|
|
<HomeMobileNavigation workspace={workspace} cart={cart} />
|
|
</>
|
|
);
|
|
}
|
|
|
|
async function getLayoutState() {
|
|
const cookieStore = await cookies();
|
|
|
|
const LayoutStyleSchema = z.enum(['sidebar', 'header', 'custom']);
|
|
|
|
const layoutStyleCookie = cookieStore.get('layout-style');
|
|
const sidebarOpenCookie = cookieStore.get('sidebar:state');
|
|
|
|
const sidebarOpen = sidebarOpenCookie
|
|
? sidebarOpenCookie.value === 'false'
|
|
: !personalAccountNavigationConfig.sidebarCollapsed;
|
|
|
|
const parsedStyle = LayoutStyleSchema.safeParse(layoutStyleCookie?.value);
|
|
|
|
const style = parsedStyle.success
|
|
? parsedStyle.data
|
|
: personalAccountNavigationConfig.style;
|
|
|
|
return {
|
|
open: sidebarOpen,
|
|
style,
|
|
};
|
|
}
|