mirror of
https://github.com/supabase/supabase.git
synced 2026-05-26 13:42:56 +08:00
* Add lucide-react to docs (to make the autocomplete work). * Migrate the docs app icons. * Migrate the ui-patterns. * Remove the old icons from ui package. * Migrate the www app from react-feather icons. * Migrate all of studio icons. * Migrate the only component in design-system. * Fix an old import in ui package. Revert an import in docs app. * Fix some pages in www. * Remove unneeded files used in generation of icons. * Fix a prettier error. * Fix more issues in www. * Fix an issue in Log Date picker. * Replace all string sizes with number sizes because the icons grew in some cases. * Fix more imports in security page. * Fix an extra import. * Remove the size prop from all icons if they're in a button and they match the button size. * Minor fixes for docs and www. --------- Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
211 lines
7.5 KiB
TypeScript
211 lines
7.5 KiB
TypeScript
import { useParams } from 'common'
|
|
import Link from 'next/link'
|
|
import { Fragment } from 'react'
|
|
import SVG from 'react-inlinesvg'
|
|
|
|
import { useEdgeFunctionsQuery } from 'data/edge-functions/edge-functions-query'
|
|
import { useOpenAPISpecQuery } from 'data/open-api/api-spec-query'
|
|
import { useBucketsQuery } from 'data/storage/buckets-query'
|
|
import { useIsFeatureEnabled } from 'hooks/misc/useIsFeatureEnabled'
|
|
import { BASE_PATH } from 'lib/constants'
|
|
import { Book, BookOpen } from 'lucide-react'
|
|
import { useAppStateSnapshot } from 'state/app-state'
|
|
import { Button } from 'ui'
|
|
import { navigateToSection } from './Content/Content.utils'
|
|
import { DOCS_CONTENT, DOCS_MENU } from './ProjectAPIDocs.constants'
|
|
|
|
const Separator = () => <div className="border-t !mt-3 pb-1 mx-3" />
|
|
|
|
const FirstLevelNav = () => {
|
|
const { ref } = useParams()
|
|
const snap = useAppStateSnapshot()
|
|
|
|
const {
|
|
projectAuthAll: authEnabled,
|
|
projectStorageAll: storageEnabled,
|
|
projectEdgeFunctionAll: edgeFunctionsEnabled,
|
|
realtimeAll: realtimeEnabled,
|
|
} = useIsFeatureEnabled([
|
|
'project_auth:all',
|
|
'project_storage:all',
|
|
'project_edge_function:all',
|
|
'realtime:all',
|
|
])
|
|
|
|
const docsMenu = DOCS_MENU.filter((item) => {
|
|
if (item.key === 'user-management') return authEnabled
|
|
if (item.key === 'storage') return storageEnabled
|
|
if (item.key === 'edge-functions') return edgeFunctionsEnabled
|
|
if (item.key === 'realtime') return realtimeEnabled
|
|
return true
|
|
})
|
|
|
|
const { data } = useOpenAPISpecQuery({ projectRef: ref })
|
|
const tables = data?.tables ?? []
|
|
const functions = data?.functions ?? []
|
|
|
|
const { data: buckets } = useBucketsQuery({ projectRef: ref })
|
|
const { data: edgeFunctions } = useEdgeFunctionsQuery({ projectRef: ref })
|
|
|
|
return (
|
|
<>
|
|
<div className="px-2 py-4 border-b">
|
|
{docsMenu.map((item) => {
|
|
const isActive = snap.activeDocsSection[0] === item.key
|
|
const sections = Object.values(DOCS_CONTENT).filter(
|
|
(snippet) => snippet.category === item.key
|
|
)
|
|
|
|
// [Joshen] Need to find the right UI component for accessbility
|
|
return (
|
|
<Fragment key={item.key}>
|
|
<div
|
|
className={`cursor-pointer text-sm py-2 px-3 rounded-md transition ${
|
|
isActive ? 'bg-surface-300' : ''
|
|
}`}
|
|
onClick={() => snap.setActiveDocsSection([item.key])}
|
|
>
|
|
{item.name}
|
|
</div>
|
|
{isActive && sections.length > 0 && (
|
|
<div className="space-y-2 py-2">
|
|
{sections.map((section) => (
|
|
<p
|
|
key={section.key}
|
|
title={section.title}
|
|
className="text-sm text-foreground-light px-4 hover:text-foreground transition cursor-pointer"
|
|
onClick={() => {
|
|
snap.setActiveDocsSection([item.key])
|
|
navigateToSection(section.key)
|
|
}}
|
|
>
|
|
{section.title}
|
|
</p>
|
|
))}
|
|
{item.key === 'entities' && (
|
|
<>
|
|
{tables.length > 0 && <Separator />}
|
|
{tables.map((table) => (
|
|
<p
|
|
key={table.name}
|
|
title={table.name}
|
|
className="text-sm text-foreground-light px-4 hover:text-foreground transition cursor-pointer"
|
|
onClick={() => snap.setActiveDocsSection([item.key, table.name])}
|
|
>
|
|
{table.name}
|
|
</p>
|
|
))}
|
|
</>
|
|
)}
|
|
{item.key === 'stored-procedures' && (
|
|
<>
|
|
{functions.length > 0 && <Separator />}
|
|
{functions.map((fn) => (
|
|
<p
|
|
key={fn.name}
|
|
title={fn.name}
|
|
className="text-sm text-foreground-light px-4 hover:text-foreground transition cursor-pointer"
|
|
onClick={() => snap.setActiveDocsSection([item.key, fn.name])}
|
|
>
|
|
{fn.name}
|
|
</p>
|
|
))}
|
|
</>
|
|
)}
|
|
{item.key === 'storage' && (
|
|
<>
|
|
{(buckets ?? []).length > 0 && <Separator />}
|
|
{(buckets ?? []).map((bucket) => (
|
|
<p
|
|
key={bucket.name}
|
|
title={bucket.name}
|
|
className="text-sm text-foreground-light px-4 hover:text-foreground transition cursor-pointer"
|
|
onClick={() => snap.setActiveDocsSection([item.key, bucket.name])}
|
|
>
|
|
{bucket.name}
|
|
</p>
|
|
))}
|
|
</>
|
|
)}
|
|
{item.key === 'edge-functions' && (
|
|
<>
|
|
{(edgeFunctions ?? []).length > 0 && <Separator />}
|
|
{(edgeFunctions ?? []).map((fn) => (
|
|
<p
|
|
key={fn.name}
|
|
title={fn.name}
|
|
className="text-sm text-foreground-light px-4 hover:text-foreground transition cursor-pointer"
|
|
onClick={() => snap.setActiveDocsSection([item.key, fn.name])}
|
|
>
|
|
{fn.name}
|
|
</p>
|
|
))}
|
|
</>
|
|
)}
|
|
</div>
|
|
)}
|
|
</Fragment>
|
|
)
|
|
})}
|
|
</div>
|
|
|
|
<div className="px-2 py-4 border-b">
|
|
<Button
|
|
block
|
|
asChild
|
|
type="text"
|
|
size="small"
|
|
icon={
|
|
<SVG
|
|
src={`${BASE_PATH}/img/graphql.svg`}
|
|
style={{ width: `${16}px`, height: `${16}px` }}
|
|
className="text-foreground"
|
|
preProcessor={(code) => code.replace(/svg/, 'svg class="m-auto text-color-inherit"')}
|
|
/>
|
|
}
|
|
onClick={() => snap.setShowProjectApiDocs(false)}
|
|
>
|
|
<Link className="!justify-start" href={`/project/${ref}/api/graphiql`}>
|
|
GraphiQL
|
|
</Link>
|
|
</Button>
|
|
<Button block asChild type="text" size="small" icon={<BookOpen />}>
|
|
<Link
|
|
href="https://supabase.com/docs/guides/graphql"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
className="!justify-start"
|
|
>
|
|
GraphQL guide
|
|
</Link>
|
|
</Button>
|
|
</div>
|
|
|
|
<div className="px-2 py-4">
|
|
<Button block asChild type="text" size="small" icon={<Book />}>
|
|
<Link
|
|
href="https://supabase.com/docs"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
className="!justify-start"
|
|
>
|
|
Documentation
|
|
</Link>
|
|
</Button>
|
|
<Button block asChild type="text" size="small" icon={<BookOpen />}>
|
|
<Link
|
|
href="https://supabase.com/docs/guides/api"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
className="!justify-start"
|
|
>
|
|
REST guide
|
|
</Link>
|
|
</Button>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default FirstLevelNav
|