mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 14:44:23 +08:00
* init * fix build issues * move deps over * Update CommandMenuWrapper.tsx * build fixes * Update sitemap_www.xml * reset * Update sitemap_www.xml * Update tsconfig.json * Update package.json * Update package.json * Update package-lock.json * Update package.json
360 lines
13 KiB
TypeScript
360 lines
13 KiB
TypeScript
import { useParams } from 'common'
|
|
import { useFlag, useIsFeatureEnabled } from 'hooks'
|
|
import { Home, User } from 'icons'
|
|
import { isUndefined } from 'lodash'
|
|
import { Command, FileText, FlaskConical, Search, Settings } from 'lucide-react'
|
|
import { useTheme } from 'next-themes'
|
|
import Link from 'next/link'
|
|
import { useRouter } from 'next/router'
|
|
import { useState } from 'react'
|
|
import {
|
|
Button,
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuGroup,
|
|
DropdownMenuItem,
|
|
DropdownMenuLabel,
|
|
DropdownMenuRadioGroup,
|
|
DropdownMenuRadioItem,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuTrigger,
|
|
Separator,
|
|
Theme,
|
|
cn,
|
|
themes,
|
|
} from 'ui'
|
|
import { useCommandMenu } from 'ui-patterns/Cmdk'
|
|
|
|
import { useIsAPIDocsSidePanelEnabled } from 'components/interfaces/App/FeaturePreview/FeaturePreviewContext'
|
|
import { useSignOut } from 'lib/auth'
|
|
import { IS_PLATFORM } from 'lib/constants'
|
|
import { detectOS } from 'lib/helpers'
|
|
import { useProfile } from 'lib/profile'
|
|
import { useAppStateSnapshot } from 'state/app-state'
|
|
import { useProjectContext } from '../ProjectContext'
|
|
import {
|
|
generateOtherRoutes,
|
|
generateProductRoutes,
|
|
generateSettingsRoutes,
|
|
generateToolRoutes,
|
|
} from './NavigationBar.utils'
|
|
import { NavigationIconButton } from './NavigationIconButton'
|
|
import NavigationIconLink from './NavigationIconLink'
|
|
|
|
export const ICON_SIZE = 20
|
|
export const ICON_STROKE_WIDTH = 1.5
|
|
|
|
const NavigationBar = () => {
|
|
const os = detectOS()
|
|
const router = useRouter()
|
|
const { profile } = useProfile()
|
|
const { project } = useProjectContext()
|
|
const { theme, setTheme } = useTheme()
|
|
const { ref: projectRef } = useParams()
|
|
const { setIsOpen } = useCommandMenu()
|
|
const snap = useAppStateSnapshot()
|
|
|
|
const signOut = useSignOut()
|
|
|
|
const navLayoutV2 = useFlag('navigationLayoutV2')
|
|
const isNewAPIDocsEnabled = useIsAPIDocsSidePanelEnabled()
|
|
const [userDropdownOpen, setUserDropdownOpenState] = useState(false)
|
|
|
|
const {
|
|
projectAuthAll: authEnabled,
|
|
projectEdgeFunctionAll: edgeFunctionsEnabled,
|
|
projectStorageAll: storageEnabled,
|
|
realtimeAll: realtimeEnabled,
|
|
} = useIsFeatureEnabled([
|
|
'project_auth:all',
|
|
'project_edge_function:all',
|
|
'project_storage:all',
|
|
'realtime:all',
|
|
])
|
|
|
|
const activeRoute = router.pathname.split('/')[3]
|
|
const toolRoutes = generateToolRoutes(projectRef, project)
|
|
const productRoutes = generateProductRoutes(projectRef, project, {
|
|
auth: authEnabled,
|
|
edgeFunctions: edgeFunctionsEnabled,
|
|
storage: storageEnabled,
|
|
realtime: realtimeEnabled,
|
|
})
|
|
|
|
const otherRoutes = generateOtherRoutes(projectRef, project)
|
|
const settingsRoutes = generateSettingsRoutes(projectRef, project)
|
|
|
|
const onCloseNavigationIconLink = (event: any) => {
|
|
snap.setNavigationPanelOpen(
|
|
false,
|
|
event.target.id === 'icon-link' || ['svg', 'path'].includes(event.target.localName)
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div className="w-14 h-full flex flex-col">
|
|
<nav
|
|
data-state={snap.navigationPanelOpen ? 'expanded' : 'collapsed'}
|
|
className={cn(
|
|
'group py-2 z-10 h-full w-14 data-[state=expanded]:w-[13rem]',
|
|
'border-r bg-studio border-default data-[state=expanded]:shadow-xl',
|
|
'transition-width duration-200',
|
|
'hide-scrollbar flex flex-col justify-between overflow-y-auto'
|
|
)}
|
|
onMouseEnter={() => snap.setNavigationPanelOpen(true)}
|
|
onMouseLeave={() => {
|
|
if (!userDropdownOpen) snap.setNavigationPanelOpen(false)
|
|
}}
|
|
>
|
|
<ul className="flex flex-col gap-y-1 justify-start px-2">
|
|
{(!navLayoutV2 || !IS_PLATFORM) && (
|
|
<Link
|
|
href={IS_PLATFORM ? '/projects' : `/project/${projectRef}`}
|
|
className="mx-2 flex items-center h-[40px]"
|
|
>
|
|
<img
|
|
alt="Supabase"
|
|
src={`${router.basePath}/img/supabase-logo.svg`}
|
|
className="absolute h-[40px] w-6 cursor-pointer rounded"
|
|
/>
|
|
</Link>
|
|
)}
|
|
<NavigationIconLink
|
|
isActive={isUndefined(activeRoute) && !isUndefined(router.query.ref)}
|
|
route={{
|
|
key: 'HOME',
|
|
label: 'Home',
|
|
icon: <Home size={ICON_SIZE} strokeWidth={ICON_STROKE_WIDTH} />,
|
|
link: `/project/${projectRef}`,
|
|
}}
|
|
onClick={onCloseNavigationIconLink}
|
|
/>
|
|
<Separator className="my-1 bg-border-muted" />
|
|
{toolRoutes.map((route) => (
|
|
<NavigationIconLink
|
|
key={route.key}
|
|
route={route}
|
|
isActive={activeRoute === route.key}
|
|
onClick={onCloseNavigationIconLink}
|
|
/>
|
|
))}
|
|
<Separator className="my-1 bg-border-muted" />
|
|
{productRoutes.map((route) => (
|
|
<NavigationIconLink
|
|
key={route.key}
|
|
route={route}
|
|
isActive={activeRoute === route.key}
|
|
onClick={onCloseNavigationIconLink}
|
|
/>
|
|
))}
|
|
<Separator className="my-1 bg-border-muted" />
|
|
{otherRoutes.map((route) => {
|
|
if (route.key === 'api' && isNewAPIDocsEnabled) {
|
|
return (
|
|
<NavigationIconButton
|
|
key={route.key}
|
|
onClick={() => {
|
|
snap.setShowProjectApiDocs(true)
|
|
snap.setNavigationPanelOpen(false)
|
|
}}
|
|
icon={<FileText size={ICON_SIZE} strokeWidth={ICON_STROKE_WIDTH} />}
|
|
>
|
|
Project API
|
|
</NavigationIconButton>
|
|
)
|
|
} else {
|
|
return (
|
|
<NavigationIconLink
|
|
key={route.key}
|
|
route={route}
|
|
isActive={activeRoute === route.key}
|
|
onClick={onCloseNavigationIconLink}
|
|
/>
|
|
)
|
|
}
|
|
})}
|
|
</ul>
|
|
|
|
<ul className="flex flex-col px-2 gap-y-1">
|
|
{settingsRoutes.map((route) => (
|
|
<NavigationIconLink
|
|
key={route.key}
|
|
route={route}
|
|
isActive={activeRoute === route.key}
|
|
onClick={onCloseNavigationIconLink}
|
|
/>
|
|
))}
|
|
|
|
{IS_PLATFORM && (
|
|
<NavigationIconButton
|
|
size="tiny"
|
|
onClick={() => {
|
|
setIsOpen(true)
|
|
snap.setNavigationPanelOpen(false)
|
|
}}
|
|
type="text"
|
|
icon={<Search size={ICON_SIZE} strokeWidth={2} />}
|
|
rightText={
|
|
<div
|
|
className={cn(
|
|
'flex items-center gap-1',
|
|
'h-6 py-1.5 px-2 leading-none',
|
|
'bg-surface-100 text-foreground-lighter',
|
|
'border border-default rounded-md',
|
|
'shadow-xs shadow-background-surface-100'
|
|
)}
|
|
>
|
|
{os === 'macos' || true ? ( // todo: issue with `os` and hydration fail
|
|
<Command size={11.5} strokeWidth={1.5} />
|
|
) : (
|
|
<p className="text-xs">CTRL</p>
|
|
)}
|
|
<p className="text-xs">K</p>
|
|
</div>
|
|
}
|
|
>
|
|
Search
|
|
</NavigationIconButton>
|
|
)}
|
|
|
|
<DropdownMenu
|
|
open={userDropdownOpen}
|
|
onOpenChange={(open: boolean) => {
|
|
setUserDropdownOpenState(open)
|
|
if (open === false) snap.setNavigationPanelOpen(false)
|
|
}}
|
|
>
|
|
<DropdownMenuTrigger asChild>
|
|
<Button
|
|
type="text"
|
|
size="tiny"
|
|
className={cn(
|
|
'mt-3 h-10 [&>span]:relative [&>span]:flex [&>span]:w-full [&>span]:h-full p-0'
|
|
)}
|
|
block
|
|
>
|
|
<div className="relative w-full h-full flex items-center justify-center">
|
|
<figure className="absolute left-1.5 min-h-6 min-w-6 bg-foreground rounded-full flex items-center justify-center">
|
|
<User
|
|
size={ICON_SIZE - 2}
|
|
strokeWidth={ICON_STROKE_WIDTH}
|
|
className="text-background"
|
|
/>
|
|
</figure>
|
|
<span
|
|
className={cn(
|
|
'w-[8rem] flex flex-col items-start text-sm truncate',
|
|
'absolute left-7 group-data-[state=expanded]:left-10',
|
|
'group-data-[state=collapsed]:opacity-0 group-data-[state=expanded]:opacity-100',
|
|
'transition-all'
|
|
)}
|
|
>
|
|
{profile && IS_PLATFORM && (
|
|
<>
|
|
<span
|
|
title={profile.username}
|
|
className="w-full text-left text-foreground truncate"
|
|
>
|
|
{profile.username}
|
|
</span>
|
|
{profile.primary_email !== profile.username && (
|
|
<span
|
|
title={profile.primary_email}
|
|
className="w-full text-left text-foreground-light text-xs truncate"
|
|
>
|
|
{profile.primary_email}
|
|
</span>
|
|
)}
|
|
</>
|
|
)}
|
|
</span>
|
|
</div>
|
|
</Button>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent side="top" align="start">
|
|
{IS_PLATFORM && (
|
|
<>
|
|
<div className="px-2 py-1 flex flex-col gap-0 text-sm">
|
|
{profile && (
|
|
<>
|
|
<span
|
|
title={profile.username}
|
|
className="w-full text-left text-foreground truncate"
|
|
>
|
|
{profile.username}
|
|
</span>
|
|
{profile.primary_email !== profile.username && (
|
|
<span
|
|
title={profile.primary_email}
|
|
className="w-full text-left text-foreground-light text-xs truncate"
|
|
>
|
|
{profile.primary_email}
|
|
</span>
|
|
)}
|
|
</>
|
|
)}
|
|
</div>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuGroup>
|
|
<DropdownMenuItem className="flex gap-2" asChild>
|
|
<Link href="/account/me">
|
|
<Settings size={14} strokeWidth={1.5} className="text-foreground-muted" />
|
|
Account preferences
|
|
</Link>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem
|
|
className="flex gap-2"
|
|
onClick={() => snap.setShowFeaturePreviewModal(true)}
|
|
onSelect={() => snap.setShowFeaturePreviewModal(true)}
|
|
>
|
|
<FlaskConical size={14} strokeWidth={1.5} className="text-foreground-muted" />
|
|
Feature previews
|
|
</DropdownMenuItem>
|
|
<DropdownMenuSeparator />
|
|
</DropdownMenuGroup>
|
|
</>
|
|
)}
|
|
<DropdownMenuGroup>
|
|
<DropdownMenuLabel>Theme</DropdownMenuLabel>
|
|
<DropdownMenuRadioGroup
|
|
value={theme}
|
|
onValueChange={(value) => {
|
|
setTheme(value)
|
|
}}
|
|
>
|
|
{themes
|
|
.filter(
|
|
(x) => x.value === 'light' || x.value === 'dark' || x.value === 'system'
|
|
)
|
|
.map((theme: Theme) => (
|
|
<DropdownMenuRadioItem key={theme.value} value={theme.value}>
|
|
{theme.name}
|
|
</DropdownMenuRadioItem>
|
|
))}
|
|
</DropdownMenuRadioGroup>
|
|
</DropdownMenuGroup>
|
|
{IS_PLATFORM && (
|
|
<>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuGroup>
|
|
<DropdownMenuItem
|
|
onSelect={async () => {
|
|
await signOut()
|
|
await router.push('/sign-in')
|
|
}}
|
|
>
|
|
Log out
|
|
</DropdownMenuItem>
|
|
</DropdownMenuGroup>
|
|
</>
|
|
)}
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default NavigationBar
|