The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
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.
 
 
 
 
 
 
grafana/public/app/features/explore/ExploreActions.tsx

95 lines
2.7 KiB

import { useRegisterActions, useKBar, Action, Priority } from 'kbar';
import { useEffect, useState } from 'react';
import { ExploreId, useDispatch, useSelector } from 'app/types';
import { splitOpen, splitClose } from './state/main';
import { runQueries } from './state/query';
import { isSplit } from './state/selectors';
interface Props {
exploreIdLeft: ExploreId;
exploreIdRight?: ExploreId;
}
export const ExploreActions = ({ exploreIdLeft, exploreIdRight }: Props) => {
const [actions, setActions] = useState<Action[]>([]);
const { query } = useKBar();
const dispatch = useDispatch();
const splitted = useSelector(isSplit);
useEffect(() => {
const exploreSection = {
name: 'Explore',
priority: Priority.HIGH + 1,
};
const actionsArr: Action[] = [];
if (splitted) {
actionsArr.push({
id: 'explore/run-query-left',
name: 'Run query (left)',
keywords: 'query left',
perform: () => {
dispatch(runQueries({ exploreId: exploreIdLeft }));
},
section: exploreSection,
});
if (exploreIdRight) {
// we should always have the right exploreId if split
actionsArr.push({
id: 'explore/run-query-right',
name: 'Run query (right)',
keywords: 'query right',
perform: () => {
dispatch(runQueries({ exploreId: exploreIdRight }));
},
section: exploreSection,
});
actionsArr.push({
id: 'explore/split-view-close-left',
name: 'Close split view left',
keywords: 'split',
perform: () => {
dispatch(splitClose(exploreIdLeft));
},
section: exploreSection,
});
actionsArr.push({
id: 'explore/split-view-close-right',
name: 'Close split view right',
keywords: 'split',
perform: () => {
dispatch(splitClose(exploreIdRight));
},
section: exploreSection,
});
}
} else {
actionsArr.push({
id: 'explore/run-query',
name: 'Run query',
keywords: 'query',
perform: () => {
dispatch(runQueries({ exploreId: exploreIdLeft }));
},
section: exploreSection,
});
actionsArr.push({
id: 'explore/split-view-open',
name: 'Open split view',
keywords: 'split',
perform: () => {
dispatch(splitOpen());
},
section: exploreSection,
});
}
setActions(actionsArr);
}, [exploreIdLeft, exploreIdRight, splitted, query, dispatch]);
useRegisterActions(!query ? [] : actions, [actions, query]);
return null;
};