mirror of
https://github.com/supabase/supabase.git
synced 2026-09-22 13:37:53 +08:00
02cf09212e
This PR removes all `paths` in `tsconfig.json` for all apps and packages. They were added previosly because some of the components had a `_Shadcn` suffix because of an ongoing migration. How that the migration is done, the paths can be removed. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Refactor** * Standardized shared UI component, utility, and icon imports across design-system examples and application screens. * Simplified shared component access and project configuration. * Added shared access to anchor-link helpers and animation styles. * **Compatibility** * Updated component exports and imports without changing existing behavior. * No changes to user-facing workflows, screens, or functionality. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
109 lines
3.1 KiB
TypeScript
109 lines
3.1 KiB
TypeScript
import { useNavigationMenuContext } from '~/components/Navigation/NavigationMenu/NavigationMenu.Context'
|
|
import { menuState } from '~/hooks/useMenuState'
|
|
import { safeHistoryReplaceState } from '~/lib/historyUtils'
|
|
import { useRouter } from 'next/compat/router'
|
|
import { FC, PropsWithChildren } from 'react'
|
|
import { useInView } from 'react-intersection-observer'
|
|
import { highlightSelectedNavItem } from 'ui'
|
|
|
|
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<PropsWithChildren<RefSubLayoutNonFuncType>> &
|
|
RefSubLayoutNonFuncSubComponents = (props) => {
|
|
return <div className="flex flex-col w-full divide-y">{props.children}</div>
|
|
}
|
|
|
|
const Section: FC<PropsWithChildren<ISectionContainer>> = (props) => {
|
|
return (
|
|
<article key={props.id} className={`${props.singleColumn ? 'prose py-16' : 'py-16'}`}>
|
|
<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) {
|
|
safeHistoryReplaceState(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-foreground 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<PropsWithChildren<ISectionDetails>> = (props) => {
|
|
return <div>{props.children}</div>
|
|
}
|
|
|
|
interface ISectionExamples {}
|
|
|
|
const Examples: FC<PropsWithChildren<ISectionExamples>> = (props) => {
|
|
return (
|
|
<div className="w-full">
|
|
<div className="sticky top-32">{props.children}</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
RefSubLayoutNonFunc.Section = Section
|
|
RefSubLayoutNonFunc.Details = Details
|
|
RefSubLayoutNonFunc.Examples = Examples
|
|
export default RefSubLayoutNonFunc
|