mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
33 lines
890 B
TypeScript
33 lines
890 B
TypeScript
import React, { FC, useMemo } from 'react';
|
|
import { IconButton } from '@grafana/ui';
|
|
import { UsagesToNetwork } from './utils';
|
|
import { NetworkGraphModal } from './NetworkGraphModal';
|
|
|
|
interface Props {
|
|
id: string;
|
|
usages: UsagesToNetwork[];
|
|
}
|
|
|
|
export const VariablesUnknownButton: FC<Props> = ({ id, usages }) => {
|
|
const network = useMemo(() => usages.find((n) => n.variable.id === id), [id, usages]);
|
|
|
|
if (!network) {
|
|
return null;
|
|
}
|
|
|
|
const nodes = network.nodes.map((n) => {
|
|
if (n.label.includes(`$${id}`)) {
|
|
return { ...n, color: '#FB7E81' };
|
|
}
|
|
return n;
|
|
});
|
|
|
|
return (
|
|
<NetworkGraphModal show={false} title={`Showing usages for: $${id}`} nodes={nodes} edges={network.edges}>
|
|
{({ showModal }) => {
|
|
return <IconButton onClick={() => showModal()} name="code-branch" title="Show usages" />;
|
|
}}
|
|
</NetworkGraphModal>
|
|
);
|
|
};
|