Files
WebtreesFullDiagram/resources/js/modules/lib/tree/sibling-layout.js
Alexander Bocken 273e398431 Initial commit: webtrees full diagram chart module
Interactive SVG family tree visualization using ELK (Sugiyama) for
layout and D3 for rendering. Shows ancestors, descendants, and siblings
in a single diagram with orthogonal bus-line connectors.

Features:
- Bidirectional tree traversal (ancestors + descendants + siblings)
- Generation-aligned layout with post-processing Y-snap
- Person cards with photos, names, dates, and hover bio cards
- "More ancestors" indicator for persons with hidden parents
- Pan/zoom navigation
- Docker dev environment
2026-03-14 18:52:17 +01:00

61 lines
1.9 KiB
JavaScript

/**
* Sibling node layout and rendering.
*
* Siblings are placed at the same Y-level as the root, to the left.
* Connected via T-junction from the parent link.
*/
import { renderPersonCard } from "../chart/box.js";
/**
* Render sibling nodes and their connectors.
*
* @param {d3.Selection} canvas
* @param {Array} siblings - Sibling position data from computeSiblingPositions
* @param {Array} links - Sibling links
* @param {Configuration} config
* @param {Function} onNodeClick
* @param {string} containerSelector
*/
export function renderSiblings(canvas, siblings, links, config, onNodeClick, containerSelector) {
if (siblings.length === 0) return;
const siblingGroup = canvas.append("g").attr("class", "sibling-nodes");
const linkGroup = canvas.append("g").attr("class", "sibling-links");
// Draw a horizontal rail connecting all siblings + root
const minX = 0;
const maxX = siblings[siblings.length - 1].x;
const railY = -config.cardHeight / 2 - 15;
// Vertical connector from parent area to rail
linkGroup
.append("line")
.attr("class", "link sibling-link")
.attr("x1", 0)
.attr("y1", -config.cardHeight / 2)
.attr("x2", 0)
.attr("y2", railY);
// Horizontal rail
linkGroup
.append("line")
.attr("class", "link sibling-link")
.attr("x1", minX)
.attr("y1", railY)
.attr("x2", maxX)
.attr("y2", railY);
// Vertical drops from rail to each sibling
for (const sibling of siblings) {
linkGroup
.append("line")
.attr("class", "link sibling-link")
.attr("x1", sibling.x)
.attr("y1", railY)
.attr("x2", sibling.x)
.attr("y2", sibling.y - config.cardHeight / 2);
renderPersonCard(siblingGroup, sibling, config, onNodeClick, containerSelector);
}
}