mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-08-17 23:39:26 +02:00
chore: remove unwanted logs
on-behalf-of: @Mermaid-Chart <hello@mermaidchart.com>
This commit is contained in:
@@ -2,7 +2,6 @@ import { curveLinear } from 'd3';
|
|||||||
import ELK from 'elkjs/lib/elk.bundled.js';
|
import ELK from 'elkjs/lib/elk.bundled.js';
|
||||||
import type { InternalHelpers, LayoutData, RenderOptions, SVG, SVGGroup } from 'mermaid';
|
import type { InternalHelpers, LayoutData, RenderOptions, SVG, SVGGroup } from 'mermaid';
|
||||||
import { type TreeData, findCommonAncestor } from './find-common-ancestor.js';
|
import { type TreeData, findCommonAncestor } from './find-common-ancestor.js';
|
||||||
import type { NodeChildren } from 'mermaid/dist/rendering-util/types.js';
|
|
||||||
|
|
||||||
type Node = LayoutData['nodes'][number];
|
type Node = LayoutData['nodes'][number];
|
||||||
// Used to calculate distances in order to avoid floating number rounding issues when comparing floating numbers
|
// Used to calculate distances in order to avoid floating number rounding issues when comparing floating numbers
|
||||||
@@ -15,7 +14,7 @@ interface LabelData {
|
|||||||
}
|
}
|
||||||
|
|
||||||
interface NodeWithVertex extends Omit<Node, 'domId'> {
|
interface NodeWithVertex extends Omit<Node, 'domId'> {
|
||||||
children?: NodeChildren;
|
children?: LayoutData['nodes'];
|
||||||
labelData?: LabelData;
|
labelData?: LabelData;
|
||||||
domId?: Node['domId'] | SVGGroup | d3.Selection<SVGAElement, unknown, Element | null, unknown>;
|
domId?: Node['domId'] | SVGGroup | d3.Selection<SVGAElement, unknown, Element | null, unknown>;
|
||||||
}
|
}
|
||||||
|
@@ -69,13 +69,6 @@ export const draw: DrawDefinition = async (text, id, _version, diagObj) => {
|
|||||||
fallback: 'cose-bilkent',
|
fallback: 'cose-bilkent',
|
||||||
});
|
});
|
||||||
// For mindmap diagrams, prioritize mindmap-specific layout algorithm configuration
|
// For mindmap diagrams, prioritize mindmap-specific layout algorithm configuration
|
||||||
const preferredLayout = conf?.layoutAlgorithm ?? layout ?? 'cose-bilkent';
|
|
||||||
log.debug('Mindmap renderer - preferredLayout:', preferredLayout);
|
|
||||||
log.debug('Mindmap renderer - conf?.layoutAlgorithm:', conf?.layoutAlgorithm);
|
|
||||||
log.debug('Mindmap renderer - layout:', layout);
|
|
||||||
|
|
||||||
log.debug('Mindmap renderer - selected layoutAlgorithm:', data4Layout.layoutAlgorithm);
|
|
||||||
log.debug('APA01 Mindmap renderer - data4Layout.rootNode exists:', !!data4Layout.rootNode);
|
|
||||||
|
|
||||||
data4Layout.diagramId = id;
|
data4Layout.diagramId = id;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user