grafana/public/app/features/admin/AdminListOrgsPage.tsx
Torkel Ödegaard 398bc045fc
Orgs: Remove org deprecation notice as we have decided to preserve multi-org support (#26853)
* Orgs: Remove org deprecation notice

* Updated
2020-08-07 10:35:30 +02:00

55 lines
1.6 KiB
TypeScript

import React, { FC, useEffect } from 'react';
import { getNavModel } from 'app/core/selectors/navModel';
import Page from 'app/core/components/Page/Page';
import { useSelector } from 'react-redux';
import { StoreState } from 'app/types/store';
import { LinkButton } from '@grafana/ui';
import { getBackendSrv } from '@grafana/runtime';
import { AdminOrgsTable } from './AdminOrgsTable';
import useAsyncFn from 'react-use/lib/useAsyncFn';
const deleteOrg = async (orgId: number) => {
return await getBackendSrv().delete('/api/orgs/' + orgId);
};
const getOrgs = async () => {
return await getBackendSrv().get('/api/orgs');
};
export const AdminListOrgsPages: FC = () => {
const navIndex = useSelector((state: StoreState) => state.navIndex);
const navModel = getNavModel(navIndex, 'global-orgs');
const [state, fetchOrgs] = useAsyncFn(async () => await getOrgs(), []);
useEffect(() => {
fetchOrgs();
}, []);
return (
<Page navModel={navModel}>
<Page.Contents>
<>
<div className="page-action-bar">
<div className="page-action-bar__spacer" />
<LinkButton icon="plus" href="org/new">
New org
</LinkButton>
</div>
{state.loading && 'Fetching organizations'}
{state.error}
{state.value && (
<AdminOrgsTable
orgs={state.value}
onDelete={orgId => {
deleteOrg(orgId).then(() => fetchOrgs());
}}
/>
)}
</>
</Page.Contents>
</Page>
);
};
export default AdminListOrgsPages;