Files
supabase/apps/studio/components/interfaces/ProjectAPIDocs/FirstLevelNav.tsx
Ivan Vasilov 436bdb10ae chore: Move the studio app to apps/studio (#18915)
* Move all studio files from /studio to /apps/studio.

* Move studio specific prettier ignores.

* Fix the ui references from studio.

* Fix the css imports.

* Fix all package.json issues.

* Fix the prettier setup for the studio app.

* Add .turbo folder to prettierignore.

* Fix the github workflows.
2023-11-15 12:38:55 +01:00

210 lines
7.5 KiB
TypeScript

import SVG from 'react-inlinesvg'
import { useParams } from 'common'
import Link from 'next/link'
import { Fragment } from 'react'
import { Button, IconBook, IconBookOpen } from 'ui'
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'
import { useAppStateSnapshot } from 'state/app-state'
import { navigateToSection } from './Content/Content.utils'
import { DOCS_CONTENT, DOCS_MENU } from './ProjectAPIDocs.constants'
import { BASE_PATH } from 'lib/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={<IconBookOpen />}>
<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={<IconBook />}>
<Link
href="https://supabase.com/docs"
target="_blank"
rel="noreferrer"
className="!justify-start"
>
Documentation
</Link>
</Button>
<Button block asChild type="text" size="small" icon={<IconBookOpen />}>
<Link
href="https://supabase.com/docs/guides/api"
target="_blank"
rel="noreferrer"
className="!justify-start"
>
REST guide
</Link>
</Button>
</div>
</>
)
}
export default FirstLevelNav