Change variable casing

This commit is contained in:
yari-dewalt
2025-01-27 08:21:52 -08:00
parent 47d4d56fa6
commit 97788df7e3

View File

@@ -19,8 +19,8 @@ export async function requirementBox<T extends SVGGraphicsElement>(
const requirementNode = node as unknown as Requirement; const requirementNode = node as unknown as Requirement;
const elementNode = node as unknown as Element; const elementNode = node as unknown as Element;
const config = getConfig().requirement; const config = getConfig().requirement;
const PADDING = 20; const padding = 20;
const GAP = 20; const gap = 20;
const isRequirementNode = 'verifyMethod' in node; const isRequirementNode = 'verifyMethod' in node;
const classes = getNodeClasses(node); const classes = getNodeClasses(node);
@@ -49,7 +49,7 @@ export async function requirementBox<T extends SVGGraphicsElement>(
accumulativeHeight, accumulativeHeight,
node.labelStyle node.labelStyle
); );
accumulativeHeight += nameHeight + GAP; accumulativeHeight += nameHeight + gap;
// Requirement // Requirement
if (isRequirementNode) { if (isRequirementNode) {
@@ -99,7 +99,7 @@ export async function requirementBox<T extends SVGGraphicsElement>(
} }
const totalWidth = Math.max( const totalWidth = Math.max(
(shapeSvg.node()?.getBBox().width ?? 200) + PADDING, (shapeSvg.node()?.getBBox().width ?? 200) + padding,
config?.rect_min_width ?? 200 config?.rect_min_width ?? 200
); );
const totalHeight = totalWidth; const totalHeight = totalWidth;
@@ -141,22 +141,22 @@ export async function requirementBox<T extends SVGGraphicsElement>(
} }
const newTranslateY = translateY - totalHeight / 2; const newTranslateY = translateY - totalHeight / 2;
let newTranslateX = x + PADDING / 2; let newTranslateX = x + padding / 2;
// Keep type and name labels centered. // Keep type and name labels centered.
if (i === 0 || i === 1) { if (i === 0 || i === 1) {
newTranslateX = translateX; newTranslateX = translateX;
} }
// Set the updated transform attribute // Set the updated transform attribute
text.attr('transform', `translate(${newTranslateX}, ${newTranslateY + PADDING})`); text.attr('transform', `translate(${newTranslateX}, ${newTranslateY + padding})`);
}); });
// Insert divider line // Insert divider line
const roughLine = rc.line( const roughLine = rc.line(
x, x,
y + typeHeight + nameHeight + GAP, y + typeHeight + nameHeight + gap,
x + totalWidth, x + totalWidth,
y + typeHeight + nameHeight + GAP, y + typeHeight + nameHeight + gap,
options options
); );
const dividerLine = shapeSvg.insert(() => roughLine); const dividerLine = shapeSvg.insert(() => roughLine);