Files
supabase/apps/docs/components/Navigation/NavigationMenu/NavigationMenuRefList.tsx
2022-11-24 17:00:39 +08:00

203 lines
5.6 KiB
TypeScript

import Link from 'next/link'
import { useRouter } from 'next/router'
import { IconChevronLeft } from 'ui'
import * as NavItems from './NavigationMenu.constants'
// @ts-expect-error
import jsSpec from '~/../../spec/supabase_js_v2_temp_new_shape.yml' assert { type: 'yml' }
// @ts-expect-error
import clientLibsCommon from '~/../../spec/common-client-libs.yml' assert { type: 'yml' }
const NavigationMenuRefList = ({ currentLevel, setLevel, id }) => {
const router = useRouter()
const menu = NavItems[id]
let functions = jsSpec.functions
functions = functions.map((func) => {
let data = {
...func,
}
data = {
...data,
...clientLibsCommon.functions.filter((x) => {
return x.id === func.id
})[0],
}
return data
})
const FunctionLink = ({
title,
id,
icon,
}: {
title: string
name: string
id: string
icon?: string
}) => {
return (
<li key={id}>
<Link href={`#${id}`} passHref>
<a className="cursor-pointer transition text-scale-1000 text-sm hover:text-brand-900 flex gap-3">
{icon && <img className="w-3" src={`${router.basePath}${icon}`} />}
{title}
</a>
</Link>
</li>
)
}
const SideMenuTitle = ({ title }: { title: string }) => {
return (
<span
className="
font-mono text-xs uppercase
text-scale-1200 font-medium
tracking-wider
mb-3
"
>
{title}
</span>
)
}
const Divider = () => {
return <div className="h-px w-full bg-green-500 my-3"></div>
}
return (
<div
className={[
'transition-all ml-8 duration-150 ease-out',
// enabled
currentLevel === id && 'opacity-100 ml-0 delay-150',
currentLevel === 'home' && 'ml-12',
// disabled
currentLevel !== 'home' && currentLevel !== id ? '-ml-8' : '',
currentLevel !== id ? 'opacity-0 invisible absolute' : '',
].join(' ')}
>
<div className={'w-full flex flex-col gap-0 sticky top-8'}>
<Link href={`${menu.parent ?? '/'}`} passHref>
<a
className={[
'flex items-center gap-1 text-xs group mb-3',
'text-base transition-all duration-200 text-brand-900 hover:text-brand-1200 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 reference</span>
</a>
</Link>
<div className="flex items-center gap-3 my-3">
<img
src={`${router.basePath}` + menu.icon ?? `/img/icons/menu/${id}.svg`}
className="w-5 rounded"
/>
<h2 className={['text-scale-1200 ', !menu.title && 'capitalize'].join(' ')}>
{menu.title ?? currentLevel}
</h2>
</div>
<ul>
<Divider />
<SideMenuTitle title="Database" />
{clientLibsCommon.functions
.filter((x) => x.product === 'database')
.map((x, index) => {
// console.log(functions)
return (
<>
<FunctionLink {...x} />
</>
)
})}
<Divider />
<SideMenuTitle title="Auth" />
{clientLibsCommon.functions
.filter((x) => x.product === 'auth')
.map((x, index) => {
// console.log(functions)
return (
<>
<FunctionLink {...x} />
</>
)
})}
<Divider />
<SideMenuTitle title="Storage" />
{clientLibsCommon.functions
.filter((x) => x.product === 'storage')
.map((x, index) => {
// console.log(functions)
return (
<>
<FunctionLink {...x} />
</>
)
})}
<Divider />
<SideMenuTitle title="Realtime" />
{clientLibsCommon.functions
.filter((x) => x.product === 'realtime')
.map((x, index) => {
// console.log(functions)
return (
<>
<FunctionLink {...x} />
</>
)
})}
<Divider />
<SideMenuTitle title="Functions" />
{clientLibsCommon.functions
.filter((x) => x.product === 'functions')
.map((x, index) => {
// console.log(functions)
return (
<>
<FunctionLink {...x} />
</>
)
})}
</ul>
{menu.extras && (
<>
<Divider />{' '}
<span className="font-mono text-xs uppercase text-scale-1200 font-medium tracking-wider mb-2">
Resources
</span>
</>
)}
{menu.extras?.map((x) => {
return (
<div key={x.name}>
<li>
<Link href={`/${x.href}`} passHref>
<a className="cursor-pointer transition text-scale-1100 text-sm hover:text-brand-900 flex gap-3 my-1">
{x.icon && <img className="w-4" src={`${router.basePath}${x.icon}`} />}
{x.name}
</a>
</Link>
</li>
</div>
)
})}
</div>
</div>
)
}
export default NavigationMenuRefList