import { CellContext } from '@tanstack/react-table'; import { BarChart } from 'lucide-react'; import { Link } from '@@/Link'; import { Icon } from '@@/Icon'; import { NodeRowData } from '../types'; import { columnHelper } from './helper'; export function getActions(metricsEnabled: boolean) { return columnHelper.accessor(() => '', { header: 'Actions', enableSorting: false, cell: (props) => ( ), }); } function ActionsCell({ row: { original: node }, metricsEnabled, }: CellContext & { metricsEnabled: boolean; }) { const nodeName = node.metadata?.name; return (
{metricsEnabled && ( )}
); }