mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 01:00:33 +08:00

* refactor(dashboard-state): delete dashboard/state barrel file and update imports * chore(betterer): update results
17 lines
679 B
TypeScript
17 lines
679 B
TypeScript
import { Tab, TabProps } from '@grafana/ui';
|
|
import { DashboardModel } from 'app/features/dashboard/state/DashboardModel';
|
|
import { PanelModel } from 'app/features/dashboard/state/PanelModel';
|
|
|
|
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 = ({ panel, dashboard, ...otherProps }: Props) => {
|
|
const { rules, loading } = usePanelCombinedRules({ panelId: panel.id, dashboardUID: dashboard.uid });
|
|
return <Tab {...otherProps} counter={loading ? null : rules.length} />;
|
|
};
|