文件操作 - AdminListOrgsPage.tsx
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/grafana/public/app/features/admin/AdminListOrgsPage.tsx
编辑文件内容
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, InfoBox, VerticalGroup } 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"> <InfoBox branded> <VerticalGroup spacing="xs"> <p> Fewer than 1% of Grafana installations use organizations, and we think that most of those would have a better experience with Teams instead. As such, we are considering de-emphasizing and eventually deprecating Organizations in a future Grafana release. If you would like to provide feedback or describe your need, please do so{' '} <a className="external-link" href="https://github.com/grafana/grafana/issues/24588"> here </a> .{' '} </p> </VerticalGroup> </InfoBox> <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;
修改文件时间
将文件时间修改为当前时间的前一年
删除文件