mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 21:24:22 +08:00
110 lines
3.8 KiB
TypeScript
110 lines
3.8 KiB
TypeScript
import { JwtSecretUpdateStatus } from '@supabase/shared-types/out/events'
|
|
import { useParams } from 'common'
|
|
import { PropsWithChildren } from 'react'
|
|
import { IconAlertCircle, IconLoader, Input } from 'ui'
|
|
|
|
import Panel from 'components/ui/Panel'
|
|
import { useJwtSecretUpdatingStatusQuery } from 'data/config/jwt-secret-updating-status-query'
|
|
import { useProjectSettingsQuery } from 'data/config/project-settings-query'
|
|
import { DEFAULT_PROJECT_API_SERVICE_ID } from 'lib/constants'
|
|
|
|
const DisplayConfigSettings = () => {
|
|
const { ref: projectRef } = useParams()
|
|
const {
|
|
data: settings,
|
|
isLoading: isProjectSettingsLoading,
|
|
isError: isProjectSettingsError,
|
|
} = useProjectSettingsQuery({
|
|
projectRef,
|
|
})
|
|
|
|
const {
|
|
data,
|
|
isError: isJwtSecretUpdateStatusError,
|
|
isLoading: isJwtSecretUpdateStatusLoading,
|
|
} = useJwtSecretUpdatingStatusQuery({ projectRef })
|
|
const jwtSecretUpdateStatus = data?.jwtSecretUpdateStatus
|
|
|
|
const isNotUpdatingJwtSecret =
|
|
jwtSecretUpdateStatus === undefined || jwtSecretUpdateStatus === JwtSecretUpdateStatus.Updated
|
|
// Get the API service
|
|
const jwtSecret = settings?.project?.jwt_secret ?? ''
|
|
const apiService = (settings?.services ?? []).find(
|
|
(x: any) => x.app.id == DEFAULT_PROJECT_API_SERVICE_ID
|
|
)
|
|
const apiConfig = apiService?.app_config
|
|
const apiUrl = `${apiConfig?.protocol ?? 'https'}://${apiConfig?.endpoint ?? '-'}`
|
|
|
|
return (
|
|
<ConfigContentWrapper>
|
|
{isProjectSettingsError || isJwtSecretUpdateStatusError ? (
|
|
<div className="flex items-center justify-center py-8 space-x-2">
|
|
<IconAlertCircle size={16} strokeWidth={1.5} />
|
|
<p className="text-sm text-foreground-light">
|
|
{isProjectSettingsError
|
|
? 'Failed to retrieve configuration'
|
|
: 'Failed to update JWT secret'}
|
|
</p>
|
|
</div>
|
|
) : isProjectSettingsLoading || isJwtSecretUpdateStatusLoading ? (
|
|
<div className="flex items-center justify-center py-8 space-x-2">
|
|
<IconLoader className="animate-spin" size={16} strokeWidth={1.5} />
|
|
<p className="text-sm text-foreground-light">
|
|
{isProjectSettingsLoading ? 'Retrieving API keys' : 'JWT secret is being updated'}
|
|
</p>
|
|
</div>
|
|
) : (
|
|
<>
|
|
<Panel.Content>
|
|
<Input
|
|
label="URL"
|
|
readOnly
|
|
copy
|
|
disabled
|
|
className="input-mono"
|
|
value={apiUrl}
|
|
descriptionText="A RESTful endpoint for querying and managing your database."
|
|
layout="horizontal"
|
|
/>
|
|
</Panel.Content>
|
|
<Panel.Content className="border-t border-panel-border-interior-light [[data-theme*=dark]_&]:border-panel-border-interior-dark">
|
|
<Input
|
|
label="JWT Secret"
|
|
readOnly
|
|
copy={isNotUpdatingJwtSecret}
|
|
reveal={isNotUpdatingJwtSecret}
|
|
disabled
|
|
value={
|
|
jwtSecretUpdateStatus === JwtSecretUpdateStatus.Failed
|
|
? 'JWT secret update failed'
|
|
: jwtSecretUpdateStatus === JwtSecretUpdateStatus.Updating
|
|
? 'Updating JWT secret...'
|
|
: jwtSecret
|
|
}
|
|
className="input-mono"
|
|
descriptionText="Used to decode your JWTs. You can also use this to mint your own JWTs."
|
|
layout="horizontal"
|
|
/>
|
|
</Panel.Content>
|
|
</>
|
|
)}
|
|
</ConfigContentWrapper>
|
|
)
|
|
}
|
|
|
|
export default DisplayConfigSettings
|
|
|
|
const ConfigContentWrapper = ({ children }: PropsWithChildren<{}>) => {
|
|
return (
|
|
<Panel
|
|
title={
|
|
<div className="space-y-3">
|
|
<h5 className="text-base">Project Configuration</h5>
|
|
</div>
|
|
}
|
|
>
|
|
{children}
|
|
</Panel>
|
|
)
|
|
}
|