forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
638 B
15 lines
638 B
import { Tab, TabProps } from '@grafana/ui/src/components/Tabs/Tab';
|
|
import { DashboardModel, PanelModel } from 'app/features/dashboard/state';
|
|
import React, { FC } from 'react';
|
|
import { usePanelCombinedRules } from './hooks/usePanelCombinedRules';
|
|
|
|
interface Props extends Omit<TabProps, 'counter' | 'ref'> {
|
|
panel: PanelModel;
|
|
dashboard: DashboardModel;
|
|
}
|
|
|
|
// it will load rule count from backend
|
|
export const PanelAlertTab: FC<Props> = ({ panel, dashboard, ...otherProps }) => {
|
|
const { rules, loading } = usePanelCombinedRules({ panel, dashboard });
|
|
return <Tab {...otherProps} counter={loading ? null : rules.length} />;
|
|
};
|
|
|