Files
supabase/apps/studio/components/interfaces/ProjectAPIDocs/Content/Introduction.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

116 lines
3.8 KiB
TypeScript

import { useParams } from 'common'
import { Button, IconCopy, Input } from 'ui'
import { useProjectApiQuery } from 'data/config/project-api-query'
import ContentSnippet from '../ContentSnippet'
import { DOCS_CONTENT } from '../ProjectAPIDocs.constants'
import { ContentProps } from './Content.types'
import { copyToClipboard } from 'lib/helpers'
import { useEffect, useState } from 'react'
const Introduction = ({ showKeys, language, apikey, endpoint }: ContentProps) => {
const { ref } = useParams()
const { data } = useProjectApiQuery({ projectRef: ref })
const [copied, setCopied] = useState<'anon' | 'service'>()
useEffect(() => {
if (copied !== undefined) setTimeout(() => setCopied(undefined), 2000)
}, [copied])
const serviceKey = showKeys
? data?.autoApiService.serviceApiKey ?? 'SUPABASE_CLIENT_SERVICE_KEY'
: 'SUPABASE_CLIENT_SERVICE_KEY'
return (
<>
<ContentSnippet
selectedLanguage={language}
apikey={apikey}
endpoint={endpoint}
snippet={DOCS_CONTENT.init}
>
<div className="px-4 space-y-6">
<div className="flex space-x-4 mt-8">
<p className="text-sm w-40">Project URL</p>
<Input disabled readOnly copy size="small" value={endpoint} className="w-full" />
</div>
<div className="flex space-x-4">
<p className="text-sm w-40">Client API key</p>
<Input
disabled
readOnly
size="small"
value={showKeys ? apikey : 'Reveal API keys via dropdown in the header'}
className="w-full"
descriptionText="This key is safe to use in a browser if you have enabled Row Level Security (RLS) for your tables and configured policies."
actions={[
<Button
key="copy"
type="default"
icon={<IconCopy />}
onClick={() => {
setCopied('anon')
copyToClipboard(
data?.autoApiService.defaultApiKey ?? 'SUPABASE_CLIENT_ANON_KEY'
)
}}
>
{copied === 'anon' ? 'Copied' : 'Copy'}
</Button>,
]}
/>
</div>
<div className="flex space-x-4">
<p className="text-sm w-40 mb-16">Service key</p>
<Input
disabled
readOnly
size="small"
value={showKeys ? serviceKey : 'Reveal API keys via dropdown in the header'}
className="w-full"
descriptionText={
<p>
This key has the ability to bypass Row Level Security.{' '}
<span className="text-amber-900">Never share it publicly.</span>
</p>
}
actions={[
<Button
key="copy"
type="default"
icon={<IconCopy />}
onClick={() => {
setCopied('service')
copyToClipboard(
data?.autoApiService.serviceApiKey ?? 'SUPABASE_CLIENT_SERVICE_KEY'
)
}}
>
{copied === 'service' ? 'Copied' : 'Copy'}
</Button>,
]}
/>
</div>
</div>
</ContentSnippet>
<ContentSnippet
selectedLanguage={language}
apikey={apikey}
endpoint={endpoint}
snippet={DOCS_CONTENT.clientApiKeys}
/>
<ContentSnippet
selectedLanguage={language}
apikey={serviceKey}
endpoint={endpoint}
snippet={DOCS_CONTENT.serviceApiKeys}
/>
</>
)
}
export default Introduction