Skip to content
Snippets Groups Projects
Commit e14f4669 authored by Dennis Collaris's avatar Dennis Collaris Committed by Marcos Pieras
Browse files

refactor: do not show number of nodes if no stats received (instead of showing "nodefined")

parent e8d76cd3
No related branches found
No related tags found
1 merge request!204feat: schema panel tooltips, redesigned tooltip, minimap configuration option
......@@ -104,14 +104,14 @@ export const Schema = (props: Props) => {
nodesWithRef = schemaFlow.nodes.map((node) => {
return {
...node,
data: { ...node.data, reactFlowRef, tooltipClose: false, nodeCount: 'NoDefined' },
data: { ...node.data, reactFlowRef, tooltipClose: false },
};
});
edgesWithRef = schemaFlow.edges.map((edge) => {
return {
...edge,
data: { ...edge.data, reactFlowRef, tooltipClose: false, nodeCount: 'NoDefined' },
data: { ...edge.data, reactFlowRef, tooltipClose: false },
};
});
......@@ -168,8 +168,8 @@ export const Schema = (props: Props) => {
nds.map((node) => {
const { id, type, data } = node;
const nodeCount = type === 'entity' ? nodeStatsMap[id]?.count ?? 'noDefined' : 'noDefined';
const nodeCount = nodeStatsMap[id]?.count;
return {
...node,
data: {
......@@ -187,7 +187,7 @@ export const Schema = (props: Props) => {
edg.map((edge) => {
const { id, type, data } = edge;
const nodeCount = type === 'entity' ? edgeStatsMap[id]?.count ?? 'noDefined' : 'noDefined';
const nodeCount = edgeStatsMap[id]?.count;
return {
...edge,
......
......@@ -9,14 +9,14 @@ const formatNumber = (number: number) => {
export type SchemaPopUpProps = {
data: Record<string, any>;
connections?: { to: string; from: string };
numberOfElements: any;
numberOfElements?: number;
};
export const SchemaPopUp: React.FC<SchemaPopUpProps> = ({ data, numberOfElements, connections }) => {
return (
<>
<div className="">
{numberOfElements && (
{numberOfElements != null && numberOfElements != 0 && (
<div className="border-b border-sec-200">
<div className="flex flex-row gap-1 items-center justify-between px-3 py-1">
<Icon component="icon-[ic--baseline-numbers]" size={24} />
......
......@@ -92,7 +92,6 @@ export const SchemaRelationPill = React.memo(({ id, selected, data, ...props }:
)
: {}
}
numberOfElements={'NoDefined'}
connections={{ from: data.from, to: data.to }}
/>
</VisualizationTooltip>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment