143 lines
4.0 KiB
TypeScript
143 lines
4.0 KiB
TypeScript
import { Box, HStack, SpanBox, VStack } from '../elements/LayoutPrimitives'
|
|
import { navigationCommands } from '../../lib/keyboardShortcuts/navigationShortcuts'
|
|
import { useKeyboardShortcuts } from '../../lib/keyboardShortcuts/useKeyboardShortcuts'
|
|
import { useRouter } from 'next/router'
|
|
import { applyStoredTheme } from '../../lib/themeUpdater'
|
|
import { useCallback, useEffect, useState } from 'react'
|
|
import { ConfirmationModal } from '../patterns/ConfirmationModal'
|
|
import { KeyboardShortcutListModal } from './KeyboardShortcutListModal'
|
|
import { PageMetaData } from '../patterns/PageMetaData'
|
|
import { DEFAULT_HEADER_HEIGHT } from './homeFeed/HeaderSpacer'
|
|
import { logout } from '../../lib/logout'
|
|
import { SettingsMenu } from './navMenu/SettingsMenu'
|
|
import { SettingsDropdown } from './navMenu/SettingsDropdown'
|
|
import { useVerifyAuth } from '../../lib/hooks/useVerifyAuth'
|
|
import Link from 'next/link'
|
|
import { CaretLeft } from 'phosphor-react'
|
|
|
|
type SettingsLayoutProps = {
|
|
title?: string
|
|
children: React.ReactNode
|
|
}
|
|
|
|
const ReturnButton = (): JSX.Element => {
|
|
return (
|
|
<SpanBox
|
|
css={{
|
|
a: {
|
|
textDecorationColor: '$thLibraryMenuUnselected',
|
|
},
|
|
'a:visited': {
|
|
textDecorationColor: '$thLibraryMenuUnselected',
|
|
},
|
|
}}
|
|
>
|
|
<Link href="/home">
|
|
<HStack
|
|
css={{
|
|
pl: '20px',
|
|
pb: '6px',
|
|
gap: '2px',
|
|
font: '$inter',
|
|
fontWeight: '500',
|
|
color: '$thLibraryMenuUnselected',
|
|
}}
|
|
alignment="center"
|
|
>
|
|
<CaretLeft />
|
|
Return to library
|
|
</HStack>
|
|
</Link>
|
|
</SpanBox>
|
|
)
|
|
}
|
|
|
|
export function SettingsLayout(props: SettingsLayoutProps): JSX.Element {
|
|
useVerifyAuth()
|
|
|
|
const router = useRouter()
|
|
const [showLogoutConfirmation, setShowLogoutConfirmation] = useState(false)
|
|
const [showKeyboardCommandsModal, setShowKeyboardCommandsModal] =
|
|
useState(false)
|
|
|
|
useKeyboardShortcuts(navigationCommands(router))
|
|
applyStoredTheme()
|
|
|
|
const showLogout = useCallback(() => {
|
|
setShowLogoutConfirmation(true)
|
|
}, [setShowLogoutConfirmation])
|
|
|
|
useEffect(() => {
|
|
document.addEventListener('logout', showLogout)
|
|
|
|
return () => {
|
|
document.removeEventListener('logout', showLogout)
|
|
}
|
|
}, [showLogout])
|
|
|
|
return (
|
|
<VStack
|
|
alignment="start"
|
|
distribution="start"
|
|
css={{ width: '100%', height: '100%', minHeight: '100vh' }}
|
|
>
|
|
<PageMetaData path="settings" title="Settings" />
|
|
<VStack css={{ width: '100%', height: '100%' }}>
|
|
<Box
|
|
css={{
|
|
height: DEFAULT_HEADER_HEIGHT,
|
|
'@mdDown': {
|
|
display: 'none',
|
|
},
|
|
}}
|
|
></Box>
|
|
<HStack
|
|
alignment="center"
|
|
distribution="start"
|
|
css={{
|
|
p: '15px',
|
|
display: 'none',
|
|
height: DEFAULT_HEADER_HEIGHT,
|
|
'@mdDown': {
|
|
display: 'flex',
|
|
},
|
|
}}
|
|
>
|
|
<SettingsDropdown />
|
|
<ReturnButton />
|
|
</HStack>
|
|
|
|
<HStack css={{ width: '100%', height: '100%' }} distribution="start">
|
|
<SettingsMenu />
|
|
<VStack css={{ width: '100%', height: '100%' }}>
|
|
<SpanBox
|
|
css={{
|
|
marginTop: '-50px',
|
|
'@mdDown': {
|
|
display: 'none',
|
|
},
|
|
}}
|
|
>
|
|
<ReturnButton />
|
|
</SpanBox>
|
|
{props.children}
|
|
</VStack>
|
|
</HStack>
|
|
<Box css={{ height: '120px', width: '100%' }} />
|
|
</VStack>
|
|
{showLogoutConfirmation ? (
|
|
<ConfirmationModal
|
|
message={'Are you sure you want to log out?'}
|
|
onAccept={logout}
|
|
onOpenChange={() => setShowLogoutConfirmation(false)}
|
|
/>
|
|
) : null}
|
|
{showKeyboardCommandsModal ? (
|
|
<KeyboardShortcutListModal
|
|
onOpenChange={() => setShowKeyboardCommandsModal(false)}
|
|
/>
|
|
) : null}
|
|
</VStack>
|
|
)
|
|
}
|