mirror of
https://github.com/temetro/temetro.git
synced 2026-08-05 00:19:04 +00:00
a06c8c739b
The record graph was a cramped React Flow box wedged inside a sheet section. Redesign it Obsidian-style — round nodes with the label underneath, a soft glow, and a hover-focus that highlights a node plus its neighbours while dimming the rest. Move it out of the inline section: the sheet now shows an "Open graph" button (closes the sheet, opens the graph in a large dialog) and a clickable list of the patient's records (problems + visits); clicking a record opens a detail dialog. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
260 lines
7.5 KiB
TypeScript
260 lines
7.5 KiB
TypeScript
"use client";
|
|
|
|
// An Obsidian-style knowledge graph of one patient's record: the patient sits
|
|
// at the centre, their problems (illnesses) and encounters (visits) orbit it,
|
|
// and a visit links to a problem when the visit references it. Layout is a
|
|
// d3-force simulation computed once; rendering + pan/zoom is React Flow. Nodes
|
|
// are round "dots" with the label underneath, and hovering a node highlights it
|
|
// and its neighbours while dimming the rest (the Obsidian focus effect).
|
|
|
|
import {
|
|
Background,
|
|
Controls,
|
|
type Edge,
|
|
Handle,
|
|
type Node,
|
|
type NodeProps,
|
|
Position,
|
|
ReactFlow,
|
|
} from "@xyflow/react";
|
|
import "@xyflow/react/dist/style.css";
|
|
import {
|
|
forceCenter,
|
|
forceCollide,
|
|
forceLink,
|
|
forceManyBody,
|
|
forceSimulation,
|
|
type SimulationLinkDatum,
|
|
type SimulationNodeDatum,
|
|
} from "d3-force";
|
|
import { useMemo, useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import type { Patient } from "@/lib/patients";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
type Kind = "patient" | "problem" | "visit";
|
|
|
|
type SimNode = SimulationNodeDatum & {
|
|
id: string;
|
|
kind: Kind;
|
|
label: string;
|
|
sub?: string;
|
|
};
|
|
type SimLink = SimulationLinkDatum<SimNode>;
|
|
|
|
type RecordNodeData = {
|
|
label: string;
|
|
sub?: string;
|
|
kind: Kind;
|
|
// Hover focus: "active" = this node or a neighbour, "dim" = unrelated, null =
|
|
// nothing hovered (everything at full strength).
|
|
focus: "active" | "dim" | null;
|
|
};
|
|
|
|
// Dot size + colour per kind. The patient is the biggest, brightest hub.
|
|
const dotClass: Record<Kind, string> = {
|
|
patient: "size-5 bg-primary shadow-[0_0_16px_2px] shadow-primary/40",
|
|
problem: "size-3.5 bg-destructive shadow-[0_0_12px_1px] shadow-destructive/30",
|
|
visit: "size-3 bg-foreground/55",
|
|
};
|
|
|
|
// A round node with the label below it and hidden connection handles so edges
|
|
// meet the dot's centre cleanly.
|
|
function RecordNode({ data }: NodeProps) {
|
|
const { label, sub, kind, focus } = data as RecordNodeData;
|
|
return (
|
|
<div
|
|
className={cn(
|
|
"relative flex flex-col items-center transition-opacity duration-200",
|
|
focus === "dim" ? "opacity-25" : "opacity-100",
|
|
)}
|
|
>
|
|
<div
|
|
className={cn(
|
|
"rounded-full ring-1 ring-background/60 transition-transform duration-200",
|
|
dotClass[kind],
|
|
focus === "active" && "scale-125",
|
|
)}
|
|
>
|
|
<Handle className="!opacity-0" position={Position.Top} type="target" />
|
|
<Handle
|
|
className="!opacity-0"
|
|
position={Position.Bottom}
|
|
type="source"
|
|
/>
|
|
</div>
|
|
<div className="absolute top-full mt-1.5 flex max-w-28 flex-col items-center text-center">
|
|
<span
|
|
className={cn(
|
|
"max-w-28 truncate text-[11px] leading-tight",
|
|
kind === "patient"
|
|
? "font-semibold text-foreground"
|
|
: "font-medium text-foreground/90",
|
|
)}
|
|
>
|
|
{label}
|
|
</span>
|
|
{sub ? (
|
|
<span className="max-w-28 truncate text-[10px] text-muted-foreground">
|
|
{sub}
|
|
</span>
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const nodeTypes = { record: RecordNode };
|
|
|
|
// Build nodes + edges from the record. A visit links to a problem when its
|
|
// type/summary mentions the problem label (case-insensitive) — that produces
|
|
// the clustered "hub" look.
|
|
function buildGraph(patient: Patient): {
|
|
nodes: SimNode[];
|
|
edges: { id: string; source: string; target: string }[];
|
|
} {
|
|
const nodes: SimNode[] = [
|
|
{ id: "patient", kind: "patient", label: patient.name },
|
|
];
|
|
const edges: { id: string; source: string; target: string }[] = [];
|
|
let edgeSeq = 0;
|
|
const link = (source: string, target: string) =>
|
|
edges.push({ id: `e-${edgeSeq++}`, source, target });
|
|
|
|
patient.problems.forEach((p, i) => {
|
|
const id = `prob-${i}`;
|
|
nodes.push({ id, kind: "problem", label: p.label, sub: p.since });
|
|
link("patient", id);
|
|
});
|
|
|
|
patient.encounters.forEach((e, i) => {
|
|
const id = `enc-${i}`;
|
|
nodes.push({ id, kind: "visit", label: e.type, sub: e.date });
|
|
link("patient", id);
|
|
const hay = `${e.type} ${e.summary}`.toLowerCase();
|
|
patient.problems.forEach((p, pi) => {
|
|
if (p.label && hay.includes(p.label.toLowerCase())) {
|
|
link(id, `prob-${pi}`);
|
|
}
|
|
});
|
|
});
|
|
|
|
return { nodes, edges };
|
|
}
|
|
|
|
// Run the force simulation to completion so positions are stable on first paint.
|
|
function layout(
|
|
nodes: SimNode[],
|
|
edges: { source: string; target: string }[],
|
|
) {
|
|
const links: SimLink[] = edges.map((e) => ({ ...e }));
|
|
forceSimulation(nodes)
|
|
.force("charge", forceManyBody().strength(-340))
|
|
.force(
|
|
"link",
|
|
forceLink<SimNode, SimLink>(links)
|
|
.id((d) => d.id)
|
|
.distance(110)
|
|
.strength(0.5),
|
|
)
|
|
.force("center", forceCenter(240, 170))
|
|
.force("collide", forceCollide(56))
|
|
.stop()
|
|
.tick(320);
|
|
}
|
|
|
|
export function RecordGraph({
|
|
patient,
|
|
className,
|
|
}: {
|
|
patient: Patient;
|
|
className?: string;
|
|
}) {
|
|
const { t } = useTranslation();
|
|
// The node the pointer is over; drives the focus highlight.
|
|
const [hover, setHover] = useState<string | null>(null);
|
|
|
|
// Stable base layout (positions + adjacency), computed once per patient.
|
|
const base = useMemo(() => {
|
|
const g = buildGraph(patient);
|
|
layout(g.nodes, g.edges);
|
|
// Adjacency for the hover focus: a node is "active" when it is hovered or
|
|
// directly linked to the hovered node.
|
|
const neighbours = new Map<string, Set<string>>();
|
|
for (const n of g.nodes) neighbours.set(n.id, new Set([n.id]));
|
|
for (const e of g.edges) {
|
|
neighbours.get(e.source)?.add(e.target);
|
|
neighbours.get(e.target)?.add(e.source);
|
|
}
|
|
return { nodes: g.nodes, edges: g.edges, neighbours };
|
|
}, [patient]);
|
|
|
|
const nodes: Node[] = useMemo(() => {
|
|
const active = hover ? base.neighbours.get(hover) : null;
|
|
return base.nodes.map((n) => ({
|
|
id: n.id,
|
|
type: "record",
|
|
position: { x: n.x ?? 0, y: n.y ?? 0 },
|
|
data: {
|
|
label: n.label,
|
|
sub: n.sub,
|
|
kind: n.kind,
|
|
focus: active ? (active.has(n.id) ? "active" : "dim") : null,
|
|
} satisfies RecordNodeData,
|
|
}));
|
|
}, [base, hover]);
|
|
|
|
const edges: Edge[] = useMemo(() => {
|
|
return base.edges.map((e) => {
|
|
const touches = !hover || e.source === hover || e.target === hover;
|
|
return {
|
|
id: e.id,
|
|
source: e.source,
|
|
target: e.target,
|
|
style: {
|
|
stroke: touches && hover ? "var(--primary)" : "var(--border)",
|
|
strokeWidth: touches && hover ? 1.75 : 1.25,
|
|
opacity: hover && !touches ? 0.12 : 0.7,
|
|
transition: "stroke 0.2s, opacity 0.2s",
|
|
},
|
|
};
|
|
});
|
|
}, [base, hover]);
|
|
|
|
if (patient.problems.length === 0 && patient.encounters.length === 0) {
|
|
return (
|
|
<p className="text-muted-foreground text-sm">
|
|
{t("patientCard.graph.empty")}
|
|
</p>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div
|
|
className={cn(
|
|
"h-80 w-full overflow-hidden rounded-2xl border bg-card/40",
|
|
className,
|
|
)}
|
|
>
|
|
<ReactFlow
|
|
edges={edges}
|
|
fitView
|
|
fitViewOptions={{ padding: 0.3 }}
|
|
nodeTypes={nodeTypes}
|
|
nodes={nodes}
|
|
nodesConnectable={false}
|
|
nodesDraggable={false}
|
|
onNodeMouseEnter={(_, node) => setHover(node.id)}
|
|
onNodeMouseLeave={() => setHover(null)}
|
|
panOnScroll
|
|
proOptions={{ hideAttribution: true }}
|
|
zoomOnScroll={false}
|
|
>
|
|
<Background color="var(--border)" gap={22} size={1.5} />
|
|
<Controls showInteractive={false} />
|
|
</ReactFlow>
|
|
</div>
|
|
);
|
|
}
|