mirror of
https://github.com/supabase/supabase.git
synced 2026-05-10 10:50:18 -04:00
4a0bb36ca8
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
63 lines
1.9 KiB
TypeScript
63 lines
1.9 KiB
TypeScript
import { Skeleton } from 'ui'
|
|
import { Admonition } from 'ui-patterns/admonition'
|
|
|
|
import { OrganizationCard } from './OrganizationCard'
|
|
import { useOrganizationsQuery } from '@/data/organizations/organizations-query'
|
|
|
|
export const OrgNotFound = ({ slug }: { slug?: string }) => {
|
|
const {
|
|
data: organizations,
|
|
isSuccess: isOrganizationsSuccess,
|
|
isPending: isOrganizationsLoading,
|
|
isError: isOrganizationsError,
|
|
error: organizationsError,
|
|
} = useOrganizationsQuery()
|
|
|
|
return (
|
|
<>
|
|
{slug !== '_' && (
|
|
<Admonition
|
|
type="destructive"
|
|
title="Organization not found"
|
|
description={
|
|
<>
|
|
{slug ? (
|
|
<>
|
|
The organization <code className="text-code-inline">{slug}</code>{' '}
|
|
</>
|
|
) : (
|
|
<>This organization </>
|
|
)}
|
|
does not exist or you do not have permission to access to it. Contact the the owner if
|
|
you believe this is a mistake.
|
|
</>
|
|
}
|
|
/>
|
|
)}
|
|
|
|
<h3 className="text-sm">Select a different organization to create your new project in</h3>
|
|
|
|
<div className="grid gap-2 grid-cols-2">
|
|
{isOrganizationsLoading && (
|
|
<>
|
|
<Skeleton className="h-[62px] rounded-md" />
|
|
<Skeleton className="h-[62px] rounded-md" />
|
|
<Skeleton className="h-[62px] rounded-md" />
|
|
</>
|
|
)}
|
|
{isOrganizationsError && (
|
|
<Admonition
|
|
type="destructive"
|
|
title="Failed to load organizations"
|
|
description={organizationsError?.message}
|
|
/>
|
|
)}
|
|
{isOrganizationsSuccess &&
|
|
organizations?.map((org) => (
|
|
<OrganizationCard key={org.slug} organization={org} href={`/new/${org.slug}`} />
|
|
))}
|
|
</div>
|
|
</>
|
|
)
|
|
}
|