| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import dayjs from 'dayjs'
- import type { ReactNode } from 'react'
- import { Alert, AlertDescription, AlertTitle, Card, CardContent, CardHeader, CheckIcon } from 'ui'
- import { AuthorizeRequesterDetails } from '@/components/interfaces/Organization/OAuthApps/AuthorizeRequesterDetails'
- import type { ApiAuthorizationResponse } from '@/data/api-authorization/api-authorization-query'
- import type { Organization } from '@/types'
- export interface ApiAuthorizationApprovedScreenProps {
- requester: ApiAuthorizationResponse
- organization: Organization | undefined
- }
- export function ApiAuthorizationApprovedScreen({
- requester,
- organization,
- }: ApiAuthorizationApprovedScreenProps): ReactNode {
- return (
- <Card>
- <CardHeader>Authorize API access for {requester.name}</CardHeader>
- <CardContent className="p-0">
- <Alert className="border-0 rounded-t-none">
- <CheckIcon />
- <AlertTitle>This authorization request has been approved</AlertTitle>
- <AlertDescription>
- <p>
- {requester.name} has been approved access to the organization "
- {organization?.name ?? 'Unknown'}" and all of its projects for the following scopes:
- </p>
- <AuthorizeRequesterDetails
- showOnlyScopes
- icon={requester.icon}
- name={requester.name}
- domain={requester.domain}
- scopes={requester.scopes}
- />
- <p className="mt-2">
- Approved on: {dayjs(requester.approved_at).format('DD MMM YYYY HH:mm:ss (ZZ)')}
- </p>
- </AlertDescription>
- </Alert>
- </CardContent>
- </Card>
- )
- }
|