Files
supabase/apps/docs/layouts/ref/RefSubLayout.tsx
Ivan Vasilov 56de26fe22 chore: Migrate the monorepo to use Tailwind v4 (#45318)
This PR migrates the whole monorepo to use Tailwind v4:
- Removed `@tailwindcss/container-queries` plugin since it's included by
default in v4,
- Bump all instances of Tailwind to v4. Made minimal changes to the
shared config to remove non-supported features (`alpha` mentions),
- Migrate all apps to be compatible with v4 configs,
- Fix the `typography.css` import in 3 apps,
- Add missing rules which were included by default in v3,
- Run `pnpm dlx @tailwindcss/upgrade` on all apps, which renames a lot
of classes
- Rename all misnamed classes according to
https://tailwindcss.com/docs/upgrade-guide#renamed-utilities in all
apps.

---------

Co-authored-by: Jordi Enric <jordi.err@gmail.com>
2026-04-30 10:53:24 +00:00

191 lines
5.4 KiB
TypeScript

import { useInView } from 'react-intersection-observer'
import { FC, PropsWithChildren } from 'react'
import { highlightSelectedNavItem } from 'ui/src/components/CustomHTMLElements/CustomHTMLElements.utils'
import { useRouter } from 'next/compat/router'
import { useNavigationMenuContext } from '~/components/Navigation/NavigationMenu/NavigationMenu.Context'
import { menuState } from '~/hooks/useMenuState'
import Image from 'next/legacy/image'
import { cn } from 'ui'
import { safeHistoryReplaceState } from '~/lib/historyUtils'
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 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]') || false
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 (
<div className={['flex items-center gap-3 not-prose', icon && 'mb-8'].join(' ')}>
{icon && (
<div className="w-8 h-8 bg-brand-300 rounded-sm 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={cn(
'text-2xl font-medium text-foreground scroll-mt-[calc(32px+2rem)] lg:scroll-mt-[calc(var(--header-height)+1px+4rem)]',
!icon && 'mb-8',
props.monoFont && 'font-mono'
)}
>
{props.title && <span className="max-w-xl">{props.title}</span>}
</h2>
)}
</div>
)
}
const Details: FC<PropsWithChildren<ISectionDetails>> = (props) => {
/**
* `min-w` is necessary because these are used as grid children, which have
* default `min-w-auto`
*/
return <div className="relative w-full min-w-full">{props.children}</div>
}
const Examples: FC<PropsWithChildren<ISectionExamples>> = (props) => {
/**
* `min-w` is necessary because these are used as grid children, which have
* default `min-w-auto`
*/
return (
<div className="w-full min-w-full">
<div className="sticky top-32">{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 first:pb-8 first:pt-0 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