2022-11-29 16:45:00 +00:00
|
|
|
import classNames from 'classnames'
|
|
|
|
import React from 'react'
|
|
|
|
|
|
|
|
import CreditManager from 'components/CreditManager'
|
2022-12-06 09:20:22 +00:00
|
|
|
import ArrowLeftLine from 'components/Icons/arrow-left-line.svg'
|
|
|
|
import DesktopNavigation from 'components/Navigation/DesktopNavigation'
|
|
|
|
import useCreditAccounts from 'hooks/useCreditAccounts'
|
2022-11-29 16:45:00 +00:00
|
|
|
import useCreditManagerStore from 'stores/useCreditManagerStore'
|
|
|
|
import useWalletStore from 'stores/useWalletStore'
|
|
|
|
|
|
|
|
const Layout = ({ children }: { children: React.ReactNode }) => {
|
2022-12-06 09:20:22 +00:00
|
|
|
const toggleCreditManager = useCreditManagerStore((s) => s.actions.toggleCreditManager)
|
2022-11-29 16:45:00 +00:00
|
|
|
const isOpen = useCreditManagerStore((s) => s.isOpen)
|
|
|
|
const address = useWalletStore((s) => s.address)
|
2022-12-06 09:20:22 +00:00
|
|
|
const { data: creditAccountsList, isLoading: isLoadingCreditAccounts } = useCreditAccounts()
|
|
|
|
const hasCreditAccounts = creditAccountsList && creditAccountsList.length > 0
|
2022-11-29 16:45:00 +00:00
|
|
|
|
|
|
|
const filter = {
|
|
|
|
day: 'brightness-100 hue-rotate-0',
|
|
|
|
night: '-hue-rotate-82 brightness-30',
|
|
|
|
}
|
|
|
|
|
|
|
|
const isConnected = !!address
|
|
|
|
|
|
|
|
const backgroundClasses = classNames(
|
|
|
|
isConnected ? filter.day : filter.night,
|
|
|
|
'top-0 left-0 absolute block h-full w-full flex-col bg-body bg-mars bg-desktop bg-top bg-no-repeat filter transition-background duration-3000 ease-linear',
|
|
|
|
)
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='relative min-h-screen w-full'>
|
|
|
|
<div className={backgroundClasses} />
|
2022-12-06 09:20:22 +00:00
|
|
|
<DesktopNavigation />
|
|
|
|
<main className='relative flex lg:h-[calc(100vh-120px)]'>
|
|
|
|
<div className='flex flex-grow flex-wrap p-6'>{children}</div>
|
|
|
|
{isOpen && hasCreditAccounts && <CreditManager />}
|
|
|
|
{!isOpen && hasCreditAccounts && (
|
|
|
|
<div className='absolute top-0 right-0 border-l border-b border-white/20 bg-header p-4'>
|
|
|
|
<div className='w-5 hover:cursor-pointer' onClick={toggleCreditManager}>
|
|
|
|
<ArrowLeftLine />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
2022-11-29 16:45:00 +00:00
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Layout
|