mirror of
https://github.com/supabase/supabase.git
synced 2026-06-21 06:46:24 +08:00
114 lines
3.1 KiB
TypeScript
114 lines
3.1 KiB
TypeScript
import { useInView } from 'react-intersection-observer'
|
|
import { FC } 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'
|
|
|
|
interface ISectionContainer {
|
|
id: string
|
|
title?: string
|
|
monoFont?: boolean
|
|
slug: string
|
|
scrollSpyHeader?: boolean
|
|
singleColumn?: boolean
|
|
}
|
|
|
|
type RefSubLayoutNonFuncSubComponents = {
|
|
Section: FC<ISectionContainer>
|
|
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
|
|
}
|
|
|
|
type RefSubLayoutNonFuncType = {}
|
|
|
|
const RefSubLayoutNonFunc: FC<RefSubLayoutNonFuncType> & RefSubLayoutNonFuncSubComponents = (
|
|
props
|
|
) => {
|
|
return <div className="flex flex-col w-full divide-y">{props.children}</div>
|
|
}
|
|
|
|
const Section: FC<ISectionContainer> = (props) => {
|
|
return (
|
|
<article
|
|
key={props.id}
|
|
className={`${
|
|
props.singleColumn ? 'prose dark:prose-dark py-16 lg:py-32 ' : 'py-16 lg:py-32'
|
|
}`}
|
|
>
|
|
<StickyHeader {...props} />
|
|
<div
|
|
className={`ref-container 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> = (props) => {
|
|
const router = useRouter()
|
|
const { setActiveRefItem } = useNavigationMenuContext()
|
|
|
|
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 (
|
|
<h2
|
|
ref={ref}
|
|
id={props.slug}
|
|
data-ref-id={props.id}
|
|
className={[
|
|
'text-xl font-medium text-scale-1200 mb-8 scroll-mt-24',
|
|
props.monoFont && 'font-mono',
|
|
].join(' ')}
|
|
>
|
|
{props.title && <span className="max-w-xl">{props.title}</span>}
|
|
</h2>
|
|
)
|
|
}
|
|
|
|
interface ISectionDetails {}
|
|
|
|
const Details: FC<ISectionDetails> = (props) => {
|
|
return <div>{props.children}</div>
|
|
}
|
|
|
|
interface ISectionExamples {}
|
|
|
|
const Examples: FC<ISectionExamples> = (props) => {
|
|
return (
|
|
<div className="w-full">
|
|
<div className="sticky top-24">{props.children}</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
RefSubLayoutNonFunc.Section = Section
|
|
RefSubLayoutNonFunc.Details = Details
|
|
RefSubLayoutNonFunc.Examples = Examples
|
|
export default RefSubLayoutNonFunc
|