mirror of
https://github.com/supabase/supabase.git
synced 2026-05-23 10:21:37 +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>
194 lines
5.8 KiB
TypeScript
194 lines
5.8 KiB
TypeScript
import { useTheme } from 'next-themes'
|
|
import Image from 'next/legacy/image'
|
|
import Link from 'next/link'
|
|
import { useRouter } from 'next/router'
|
|
import React, { useEffect, useRef } from 'react'
|
|
import { IconChevronLeft } from '~/../../packages/ui'
|
|
import * as Accordion from '@radix-ui/react-accordion'
|
|
import HomeMenuIconPicker from './HomeMenuIconPicker'
|
|
|
|
const HeaderLink = React.memo(function HeaderLink(props: {
|
|
title: string
|
|
id: string
|
|
url: string
|
|
}) {
|
|
const router = useRouter()
|
|
|
|
return (
|
|
<span
|
|
className={[
|
|
' ',
|
|
!props.title && 'capitalize',
|
|
props.url === router.asPath ? 'text-brand' : 'hover:text-brand text-foreground',
|
|
].join(' ')}
|
|
>
|
|
{props.title ?? props.id}
|
|
</span>
|
|
)
|
|
})
|
|
|
|
const ContentAccordionLink = React.memo(function ContentAccordionLink(props: any) {
|
|
const router = useRouter()
|
|
const { resolvedTheme } = useTheme()
|
|
const activeItem = props.subItem.url === router.asPath
|
|
const activeItemRef = useRef(null)
|
|
|
|
const LinkContainer = (props) => {
|
|
return (
|
|
<Link href={props.url} className={props.className}>
|
|
{props.children}
|
|
</Link>
|
|
)
|
|
}
|
|
|
|
useEffect(() => {
|
|
// scroll to active item
|
|
if (activeItem && activeItemRef.current) {
|
|
// this is a hack, but seems a common one on Stackoverflow
|
|
setTimeout(() => {
|
|
activeItemRef.current?.scrollIntoView({ behavior: 'smooth', block: 'nearest' })
|
|
}, 0)
|
|
}
|
|
})
|
|
return (
|
|
<>
|
|
{props.subItemIndex === 0 && (
|
|
<>
|
|
<div className="h-px w-full bg-border my-3"></div>
|
|
<span className="font-mono text-xs uppercase text-foreground font-medium tracking-wider">
|
|
{props.parent.name}
|
|
</span>
|
|
</>
|
|
)}
|
|
<Accordion.Item key={props.subItem.label} value={props.subItem.url}>
|
|
<li key={props.subItem.name} ref={activeItem ? activeItemRef : null}>
|
|
<LinkContainer
|
|
url={props.subItem.url}
|
|
className={[
|
|
'flex items-center gap-2',
|
|
'cursor-pointer transition text-sm',
|
|
activeItem
|
|
? 'text-brand font-medium'
|
|
: 'hover:text-foreground text-foreground-lighter',
|
|
].join(' ')}
|
|
parent={props.subItem.parent}
|
|
>
|
|
{props.subItem.icon && (
|
|
<Image
|
|
alt={props.subItem.name + router.basePath}
|
|
src={
|
|
`${router.basePath}` +
|
|
`${props.subItem.icon}${!resolvedTheme?.includes('dark') ? '-light' : ''}.svg`
|
|
}
|
|
width={15}
|
|
height={15}
|
|
/>
|
|
)}
|
|
{props.subItem.name}
|
|
</LinkContainer>
|
|
</li>
|
|
|
|
{props.subItem.items && props.subItem.items.length > 0 && (
|
|
<Accordion.Content className="transition data-open:animate-slide-down data-closed:animate-slide-up ml-2">
|
|
{props.subItem.items.map((subSubItem) => {
|
|
return (
|
|
<li key={props.subItem.name}>
|
|
<Link
|
|
href={`${subSubItem.url}`}
|
|
className={[
|
|
'cursor-pointer transition text-sm',
|
|
subSubItem.url === router.asPath
|
|
? 'text-brand'
|
|
: 'hover:text-brand text-foreground-lighter',
|
|
].join(' ')}
|
|
>
|
|
{subSubItem.name}
|
|
</Link>
|
|
</li>
|
|
)
|
|
})}
|
|
</Accordion.Content>
|
|
)}
|
|
</Accordion.Item>
|
|
</>
|
|
)
|
|
})
|
|
|
|
const ContentLink = React.memo(function ContentLink(props: any) {
|
|
const router = useRouter()
|
|
|
|
return (
|
|
<li className="mb-1.5">
|
|
<Link
|
|
href={props.url}
|
|
className={[
|
|
'cursor-pointer transition text-sm',
|
|
props.url === router.asPath
|
|
? 'text-brand-link'
|
|
: 'hover:text-foreground text-foreground-lighter',
|
|
].join(' ')}
|
|
>
|
|
{props.icon && (
|
|
<Image alt={props.icon} width={12} height={12} src={`${router.basePath}${props.icon}`} />
|
|
)}
|
|
{props.name}
|
|
</Link>
|
|
</li>
|
|
)
|
|
})
|
|
|
|
const Content = (props) => {
|
|
const { menu, id } = props
|
|
|
|
return (
|
|
<ul className={['relative w-full flex flex-col gap-0 pb-5'].join(' ')}>
|
|
<Link
|
|
href={`${menu.parent ?? '/'}`}
|
|
className={[
|
|
'flex items-center gap-1 text-xs group mb-3',
|
|
'text-base transition-all duration-200 text-brand-link hover:text-brand-600 hover:cursor-pointer ',
|
|
].join(' ')}
|
|
>
|
|
<div className="relative w-2">
|
|
<div className="transition-all ease-out ml-0 group-hover:-ml-1">
|
|
<IconChevronLeft size={10} strokeWidth={3} />
|
|
</div>
|
|
</div>
|
|
<span>Back to Home</span>
|
|
</Link>
|
|
|
|
<Link href={menu.url ?? ''}>
|
|
<div className="flex items-center gap-3 my-3 text-brand-link">
|
|
<HomeMenuIconPicker icon={menu.icon} />
|
|
<HeaderLink title={menu.title} url={menu.url} id={id} />
|
|
</div>
|
|
</Link>
|
|
|
|
{menu.items.map((x) => {
|
|
return (
|
|
<div key={x.name}>
|
|
{x.items && x.items.length > 0 ? (
|
|
<div className="flex flex-col gap-2.5">
|
|
{x.items.map((subItem, subItemIndex) => {
|
|
return (
|
|
<ContentAccordionLink
|
|
key={subItem.name}
|
|
subItem={subItem}
|
|
subItemIndex={subItemIndex}
|
|
parent={x}
|
|
/>
|
|
)
|
|
})}
|
|
</div>
|
|
) : (
|
|
<ContentLink url={x.url} icon={x.icon} name={x.name} key={x.name} />
|
|
)}
|
|
</div>
|
|
)
|
|
})}
|
|
</ul>
|
|
)
|
|
}
|
|
|
|
export default React.memo(Content)
|