| 123456789101112131415161718192021222324252627282930 |
- import { Admonition } from 'ui-patterns'
- import { DeleteOrganizationButton } from './DeleteOrganizationButton'
- import PartnerManagedResource from '@/components/ui/PartnerManagedResource'
- import { useSelectedOrganizationQuery } from '@/hooks/misc/useSelectedOrganization'
- import { MANAGED_BY } from '@/lib/constants/infrastructure'
- export const OrganizationDeletePanel = () => {
- const { data: selectedOrganization } = useSelectedOrganizationQuery()
- return selectedOrganization?.managed_by !== 'vercel-marketplace' ? (
- <Admonition
- type="destructive"
- title="Deleting this organization will also remove its projects"
- description="Make sure you have made a backup of your projects if you want to keep your data"
- >
- <DeleteOrganizationButton />
- </Admonition>
- ) : (
- <PartnerManagedResource
- managedBy={MANAGED_BY.VERCEL_MARKETPLACE}
- resource="Organizations"
- cta={{
- installationId: selectedOrganization?.partner_id,
- path: '/settings',
- message: 'Delete organization in Vercel Marketplace',
- }}
- />
- )
- }
|