mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 12:44:31 +08:00
* set up multiple themes in studio * set up multiple themes in studio * set up multiple themes in docs and www * update all resolvedTheme to also include deep-dark * update all resolvedTheme checks to also include deep-dark * update tailwind.config.js tokens * update tailwind.config.js tokens * update leftover scale12 token * update if resolvedTheme _doesn't_ include 'dark' * update more styling tokens * add dynamic themes to CmdK * fix nav and footer for multi theme * add data-theme selector output to transformTokens.js * update code-hike.css to target data-theme css * update tailwindcss to ^3.3.5 * ThemeImage with light and dark src for www and docs * add brand-button styling token * update old dark theme boolean * update old dark theme boolean * make homepage product visuals themeable * update product page themed images * update badge green with brand * fix roles list appearance * fix auth widget in auth page * update more dark logic * update more dark logic * add button default bg and border * update pricing page theme styling * clean up Themeimage * remove forceDark in homepage * update dark:border-dark occurrences * update dark:border-dark occurrences * fix dark mode base colors * remove foreground-strong * fix notification badge bg * remove some dark: selectors * update dark: selectors * update code-hike deep dark bg color * fix comment typo * update border-button-hover token * fix customer story logo * remove some more dark: selectors * restore forceDark in www homepage * fix auth react icon * fix homepage product visuals * remove theme * add brand-link token * fix checkbox bg * npm install * more visible EntityListItem active bg * fix --background-alternative-default css vars --------- Co-authored-by: Jonathan Summers-Muir <MildTomato@users.noreply.github.com>
185 lines
7.2 KiB
TypeScript
185 lines
7.2 KiB
TypeScript
import Link from 'next/link'
|
|
import Image from 'next/legacy/image'
|
|
import { useRouter } from 'next/router'
|
|
import { IconChevronRight, IconArrowLeft } from '~/../../packages/ui'
|
|
import { REFERENCES } from './NavigationMenu/NavigationMenu.constants'
|
|
|
|
import { NavMenuGroup, NavMenuSection } from './Navigation.types'
|
|
import * as Accordion from '@radix-ui/react-accordion'
|
|
|
|
const SideBar = ({ menuItems = [] }: { menuItems: any }) => {
|
|
const { asPath } = useRouter()
|
|
const pathSegments = asPath.split('/')
|
|
|
|
const isInReferencePages = pathSegments.includes('reference') && pathSegments.length >= 3
|
|
const referenceMeta = pathSegments.length >= 3 ? REFERENCES[pathSegments[2]] : undefined
|
|
|
|
const currentSection: NavMenuGroup = menuItems.find((group) => {
|
|
const foundItem = group.items.find((section) => {
|
|
if (section.items.length > 0) {
|
|
const foundSubItem = section.items.find((item) => {
|
|
if (item.url === asPath) return item
|
|
})
|
|
if (foundSubItem) return section
|
|
} else {
|
|
if (section.url === asPath) return section
|
|
}
|
|
})
|
|
if (foundItem) return group
|
|
})
|
|
|
|
const currentSubSection: NavMenuSection =
|
|
currentSection !== undefined
|
|
? currentSection.items.find((section) => {
|
|
if (section.items.length === 0) {
|
|
return undefined
|
|
} else {
|
|
return section.items.find((item) => {
|
|
if (item.url === asPath) return item
|
|
})
|
|
}
|
|
})
|
|
: undefined
|
|
|
|
return (
|
|
<div
|
|
className="bg-background border-muted sidebar-width sticky top-16
|
|
h-screen overflow-y-scroll border-r py-8 px-6 sidebar-menu-container hidden lg:block"
|
|
>
|
|
{isInReferencePages && (
|
|
<>
|
|
<Link href="/reference">
|
|
<div className="flex items-center space-x-4 opacity-75 hover:opacity-100 transition">
|
|
<IconArrowLeft size={16} strokeWidth={2} className="text-foreground" />
|
|
<span className="text-sm text-foreground">All Reference Docs</span>
|
|
</div>
|
|
</Link>
|
|
{referenceMeta !== undefined && (
|
|
<div className="my-5 flex items-center space-x-4">
|
|
<div className="h-10 w-10 rounded bg-surface-100 flex items-center justify-center">
|
|
<Image
|
|
className="rounded"
|
|
width={24}
|
|
height={24}
|
|
alt={referenceMeta.name}
|
|
src={referenceMeta.icon}
|
|
/>
|
|
</div>
|
|
<p className="text-foreground font-bold">{referenceMeta.name}</p>
|
|
</div>
|
|
)}
|
|
</>
|
|
)}
|
|
{menuItems.length === 1 ? (
|
|
<div className="my-2">
|
|
{menuItems[0].items.map((item) => (
|
|
<Link key={item.name} href={item.url}>
|
|
<div
|
|
key={item.name}
|
|
className={[
|
|
'py-1.5 px-5 rounded text-sm transition',
|
|
`${
|
|
item.url === asPath
|
|
? 'bg-background text-brand-link'
|
|
: 'text-foreground-light hover:text-foreground'
|
|
}`,
|
|
].join(' ')}
|
|
>
|
|
{item.name}
|
|
</div>
|
|
</Link>
|
|
))}
|
|
</div>
|
|
) : (
|
|
<Accordion.Root
|
|
collapsible
|
|
type="single"
|
|
defaultValue={currentSection?.label}
|
|
className="w-full space-y-0.5"
|
|
>
|
|
{menuItems.map((group: NavMenuGroup) => (
|
|
<Accordion.Item key={group.label} value={group.label}>
|
|
<Accordion.Trigger className="w-full flex items-center space-x-2 py-1.5">
|
|
<IconChevronRight
|
|
className="transition text-foreground-lighter data-open-parent:rotate-90"
|
|
size={14}
|
|
strokeWidth={2}
|
|
/>
|
|
<span className="text-foreground text-sm group-hover:text-brand transition">
|
|
{group.label}
|
|
</span>
|
|
</Accordion.Trigger>
|
|
<Accordion.Content className="transition my-2 data-open:animate-slide-down data-closed:animate-slide-up">
|
|
{group.items.map((section: NavMenuSection) => {
|
|
if (section.items.length === 0) {
|
|
return (
|
|
<Link href={section.url} key={section.name}>
|
|
<div
|
|
className={[
|
|
'py-1.5 px-5 rounded text-sm transition',
|
|
`${
|
|
section.url === asPath
|
|
? 'bg-background text-brand'
|
|
: 'text-foreground-light hover:text-foreground'
|
|
}`,
|
|
].join(' ')}
|
|
>
|
|
{section.name}
|
|
</div>
|
|
</Link>
|
|
)
|
|
} else {
|
|
return (
|
|
<Accordion.Root
|
|
collapsible
|
|
key={section.name}
|
|
type="single"
|
|
className="space-y-0.5"
|
|
defaultValue={currentSubSection?.name}
|
|
>
|
|
<Accordion.Item value={section.name}>
|
|
<Accordion.Trigger className="flex items-center space-x-2 px-4 py-1.5">
|
|
<IconChevronRight
|
|
className="transition text-foreground-lighter data-open-parent:rotate-90"
|
|
size={14}
|
|
strokeWidth={2}
|
|
/>
|
|
<span className="text-foreground text-sm group-hover:text-brand transition">
|
|
{section.name}
|
|
</span>
|
|
</Accordion.Trigger>
|
|
<Accordion.Content className="my-2 data-open:animate-slide-down data-closed:animate-slide-up">
|
|
{section.items.map((item: NavMenuSection) => (
|
|
<Link key={item.name} href={item.url}>
|
|
<div
|
|
key={item.name}
|
|
className={[
|
|
'py-1.5 ml-4 px-5 rounded text-sm transition',
|
|
`${
|
|
item.url === asPath
|
|
? 'bg-background text-brand'
|
|
: 'text-foreground-light hover:text-foreground'
|
|
}`,
|
|
].join(' ')}
|
|
>
|
|
{item.name}
|
|
</div>
|
|
</Link>
|
|
))}
|
|
</Accordion.Content>
|
|
</Accordion.Item>
|
|
</Accordion.Root>
|
|
)
|
|
}
|
|
})}
|
|
</Accordion.Content>
|
|
</Accordion.Item>
|
|
))}
|
|
</Accordion.Root>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default SideBar
|