Skip to content
This repository was archived by the owner on Jul 13, 2024. It is now read-only.

Commit 3448edb

Browse files
committed
distinguish vertical case and horizontal case
When orientation setting to vertical and horizontal. The position of joint in path is different. The joint should be at one x/y spacing later to its parent node, and at same y/x to child node. Example, if the orientation is vertical, and we have to insert a joint. The joint's x is same x to new commit, and y is a spacing back to its parent.
1 parent b27a0fc commit 3448edb

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

src/gitgraph.js

+13-5
Original file line numberDiff line numberDiff line change
@@ -770,11 +770,19 @@
770770
this.pushPath(this.startPoint);
771771
// Add a path joint to startpoint + template spacing
772772
// So that line will not go through commit of other branches
773-
this.pushPath({
774-
x: commit.x,
775-
y: this.startPoint.y - this.template.commit.spacingY,
776-
type: "joint"
777-
});
773+
if ((this.parent.orientation === "vertical-reverse") || (this.parent.orientation === "vertical")) {
774+
this.pushPath({
775+
x: commit.x,
776+
y: this.startPoint.y - this.template.commit.spacingY,
777+
type: "joint"
778+
});
779+
} else {
780+
this.pushPath({
781+
x: this.startPoint.x - this.template.commit.spacingX,
782+
y: commit.y,
783+
type: "joint"
784+
});
785+
}
778786
} else if (isPathBeginning) {
779787
point.type = "start";
780788
}

0 commit comments

Comments
 (0)