grafana/public/app/features/admin/AdminListOrgsPage.tsx
Ashley Harrison 9ab8292949
Orgs: Add skeleton loader (#79141)
add skeleton for orgs list
2023-12-06 16:07:32 +00:00

56 lines
1.6 KiB
TypeScript

import React, { useEffect } from 'react';
import useAsyncFn from 'react-use/lib/useAsyncFn';
import { getBackendSrv, isFetchError } from '@grafana/runtime';
import { LinkButton } from '@grafana/ui';
import { Page } from 'app/core/components/Page/Page';
import { contextSrv } from 'app/core/services/context_srv';
import { AccessControlAction, Organization } from 'app/types';
import { AdminOrgsTable } from './AdminOrgsTable';
const deleteOrg = async (orgId: number) => {
return await getBackendSrv().delete('/api/orgs/' + orgId);
};
const getOrgs = async () => {
return await getBackendSrv().get<Organization[]>('/api/orgs');
};
const getErrorMessage = (error: Error) => {
return isFetchError(error) ? error?.data?.message : 'An unexpected error happened.';
};
export default function AdminListOrgsPages() {
const [state, fetchOrgs] = useAsyncFn(async () => await getOrgs(), []);
const canCreateOrg = contextSrv.hasPermission(AccessControlAction.OrgsCreate);
useEffect(() => {
fetchOrgs();
}, [fetchOrgs]);
return (
<Page
navId="global-orgs"
actions={
<LinkButton icon="plus" href="org/new" disabled={!canCreateOrg}>
New org
</LinkButton>
}
>
<Page.Contents>
{state.error && getErrorMessage(state.error)}
{state.loading && <AdminOrgsTable.Skeleton />}
{state.value && (
<AdminOrgsTable
orgs={state.value}
onDelete={(orgId) => {
deleteOrg(orgId).then(() => fetchOrgs());
}}
/>
)}
</Page.Contents>
</Page>
);
}