mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 06:54:21 +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>
181 lines
5.0 KiB
TypeScript
181 lines
5.0 KiB
TypeScript
import { useInView } from 'react-intersection-observer'
|
|
import { FC, PropsWithChildren } from 'react'
|
|
import { highlightSelectedNavItem } from '~/components/CustomHTMLElements/CustomHTMLElements.utils'
|
|
import { useRouter } from 'next/router'
|
|
import { useNavigationMenuContext } from '~/components/Navigation/NavigationMenu/NavigationMenu.Context'
|
|
import { menuState } from '~/hooks/useMenuState'
|
|
import Image from 'next/legacy/image'
|
|
|
|
interface ISectionContainer {
|
|
id: string
|
|
title?: string
|
|
monoFont?: boolean
|
|
slug: string
|
|
scrollSpyHeader?: boolean
|
|
singleColumn?: boolean
|
|
icon?: string
|
|
}
|
|
|
|
type RefSubLayoutSubComponents = {
|
|
Section: FC<PropsWithChildren<ISectionContainer>>
|
|
EducationSection: FC<PropsWithChildren<IEducationSection>>
|
|
EducationRow: FC<PropsWithChildren<IEducationRow>>
|
|
Details: FC<ISectionDetails>
|
|
Examples: FC<ISectionExamples>
|
|
}
|
|
|
|
type StickyHeader = {
|
|
id: string
|
|
slug?: string
|
|
title?: string
|
|
monoFont?: boolean
|
|
scrollSpyHeader?: boolean // whether or not the header updates the url on scroll
|
|
icon?: string
|
|
}
|
|
|
|
type RefSubLayoutType = {}
|
|
|
|
interface IEducationRow {
|
|
className?: string
|
|
}
|
|
interface IEducationSection {
|
|
id: string
|
|
title?: string
|
|
monoFont?: boolean
|
|
slug: string
|
|
scrollSpyHeader?: boolean
|
|
hideTitle?: boolean
|
|
icon?: string
|
|
}
|
|
interface ISectionDetails {}
|
|
interface ISectionExamples {}
|
|
|
|
const RefSubLayout: FC<PropsWithChildren<RefSubLayoutType>> & RefSubLayoutSubComponents = (
|
|
props
|
|
) => {
|
|
return (
|
|
<div className="flex flex-col w-full divide-y px-5 max-w-7xl mx-auto py-16">
|
|
{props.children}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const Section: FC<PropsWithChildren<ISectionContainer>> = (props) => {
|
|
return (
|
|
<article
|
|
key={props.id + 'section'}
|
|
className={[
|
|
props.singleColumn ? 'prose w-full' : 'w-full',
|
|
'py-16 lg:py-32 first:pt-8 last:pb-8',
|
|
].join(' ')}
|
|
>
|
|
<StickyHeader {...props} />
|
|
<div
|
|
className={`ref-container w-full gap-16 ${
|
|
!props.singleColumn ? 'grid lg:grid-cols-2' : 'ref-container--full-width lg:max-w-3xl'
|
|
}`}
|
|
>
|
|
{props.children}
|
|
</div>
|
|
</article>
|
|
)
|
|
}
|
|
|
|
const StickyHeader: FC<StickyHeader> = ({ icon, ...props }) => {
|
|
const router = useRouter()
|
|
|
|
const { setActiveRefItem } = useNavigationMenuContext()
|
|
|
|
// we're serving search bots a different file (/crawlers/[...slug])
|
|
// and need to modify content to suit that
|
|
const isCrawlerPage = router.route.includes('/crawlers/[...slug]')
|
|
|
|
const { ref } = useInView({
|
|
threshold: 1,
|
|
rootMargin: '30% 0% -35% 0px',
|
|
onChange: (inView, entry) => {
|
|
if (inView && window) highlightSelectedNavItem(entry.target.attributes['data-ref-id'].value)
|
|
if (inView && props.scrollSpyHeader) {
|
|
window.history.replaceState(null, '', entry.target.id)
|
|
// if (setActiveRefItem) setActiveRefItem(entry.target.attributes['data-ref-id'].value)
|
|
menuState.setMenuActiveRefId(entry.target.attributes['data-ref-id'].value)
|
|
// router.push(`/reference/javascript/${entry.target.attributes['data-ref-id'].value}`, null, {
|
|
// shallow: true,
|
|
// })
|
|
}
|
|
},
|
|
})
|
|
|
|
return (
|
|
<div className={['flex items-center gap-3 not-prose', icon && 'mb-8'].join(' ')}>
|
|
{icon && (
|
|
<div className="w-8 h-8 bg-brand-300 rounded flex items-center justify-center">
|
|
<Image width={16} height={16} alt={icon} src={`${icon}.svg`} />
|
|
</div>
|
|
)}
|
|
{isCrawlerPage ? (
|
|
<h1>{props.title}</h1>
|
|
) : (
|
|
<h2
|
|
ref={ref}
|
|
id={props.slug}
|
|
data-ref-id={props.id}
|
|
className={[
|
|
'text-2xl font-medium text-foreground scroll-mt-24',
|
|
!icon && 'mb-8',
|
|
props.monoFont && 'font-mono',
|
|
].join(' ')}
|
|
>
|
|
{props.title && <span className="max-w-xl">{props.title}</span>}
|
|
</h2>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const Details: FC<PropsWithChildren<ISectionDetails>> = (props) => {
|
|
return <div className="relative w-full">{props.children}</div>
|
|
}
|
|
|
|
const Examples: FC<PropsWithChildren<ISectionExamples>> = (props) => {
|
|
return (
|
|
<div className="w-full">
|
|
<div className="sticky top-24">{props.children}</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const EducationRow: FC<PropsWithChildren<IEducationRow>> = (props) => {
|
|
return (
|
|
<div className={['grid lg:grid-cols-2 gap-8 lg:gap-16', props.className].join(' ')}>
|
|
{props.children}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const EducationSection: FC<PropsWithChildren<IEducationSection>> = ({
|
|
icon,
|
|
hideTitle = false,
|
|
...props
|
|
}) => {
|
|
return (
|
|
<article
|
|
key={props.id + 'education'}
|
|
className={'prose max-w-none py-16 lg:py-32 first:pt-8 last:pb-8'}
|
|
>
|
|
{!hideTitle && <StickyHeader {...props} icon={icon} />}
|
|
{props.children}
|
|
</article>
|
|
)
|
|
}
|
|
|
|
// function based layout
|
|
RefSubLayout.Section = Section
|
|
// education based layout
|
|
RefSubLayout.EducationSection = EducationSection
|
|
RefSubLayout.EducationRow = EducationRow
|
|
// common columns
|
|
RefSubLayout.Details = Details
|
|
RefSubLayout.Examples = Examples
|
|
export default RefSubLayout
|