Files
temetro/frontend/components/charts/tooltip/tooltip-box.tsx
T
Khalid Abdi 321a6298a4 frontend: pharmacy inventory, lab add-result & analysis charts
- Pharmacy: the sidebar entry now expands into Pharmacy + a new Inventory page
  (searchable medication stock with derived in-stock/low/out availability,
  backed by /api/inventory). Fix the dispensing-queue "Expiring" badge so it
  only flags courses ending within the next 7 days, not ones already elapsed.
- Lab "Add analysis result": the patient picker no longer lists patients until
  you type and supports arrow-key + Enter selection; the test field offers a
  catalog of common analyses with an Advanced option (custom analysis + ref
  range); submitted results now show immediately in a Recent results feed.
- Analysis: add a Live panel (real-time line chart) and replace the flat trend
  sparklines with bklit-ui area + bar charts (installed from the @bklit shadcn
  registry; chart CSS variables wired into the theme for light and dark).

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-12 19:22:07 +03:00

196 lines
5.5 KiB
TypeScript

"use client";
import { motion, useSpring } from "motion/react";
import type { RefObject } from "react";
import { useEffect, useLayoutEffect, useRef, useState } from "react";
import { createPortal } from "react-dom";
import { cn } from "@/lib/utils";
import { type SpringConfig, useChartConfig } from "../chart-config-context";
export interface TooltipBoxProps {
/** X position in pixels (relative to container) */
x: number;
/** Y position in pixels (relative to container) */
y: number;
/** Whether the tooltip is visible */
visible: boolean;
/** Container ref for portal rendering */
containerRef: RefObject<HTMLDivElement | null>;
/** Container width for flip detection */
containerWidth: number;
/** Container height for bounds clamping */
containerHeight: number;
/** Offset from the target position */
offset?: number;
/** Custom class name */
className?: string;
/** Tooltip content */
children: React.ReactNode;
/** Override left position (bypasses internal calculation) */
left?: number | ReturnType<typeof useSpring>;
/** Override top position (bypasses internal calculation) */
top?: number | ReturnType<typeof useSpring>;
/** Force flip direction (for custom positioning) */
flipped?: boolean;
/** Per-chart override; falls back to `ChartConfigProvider.tooltipBoxSpring`. */
springConfig?: SpringConfig;
/** Animate panel position with a spring. Default: true */
animate?: boolean;
/** Inline styles for the inner tooltip panel. */
panelStyle?: React.CSSProperties;
}
// Inner-only-on-visible so `useSpring` initializes at the cursor's actual x/y
// instead of (0, 0) on first hover.
export function TooltipBox(props: TooltipBoxProps) {
const [mounted, setMounted] = useState(false);
useEffect(() => {
setMounted(true);
}, []);
const container = props.containerRef.current;
if (!(mounted && container)) {
return null;
}
if (!props.visible) {
return null;
}
return <TooltipBoxInner {...props} container={container} />;
}
function TooltipBoxInner({
x,
y,
containerWidth,
containerHeight,
offset = 16,
className = "",
children,
left: leftOverride,
top: topOverride,
flipped: flippedOverride,
springConfig,
animate = true,
panelStyle,
container,
}: Omit<TooltipBoxProps, "visible" | "containerRef"> & {
container: HTMLElement;
}) {
const { tooltipBoxSpring } = useChartConfig();
const effectiveSpring = springConfig ?? tooltipBoxSpring;
const tooltipRef = useRef<HTMLDivElement>(null);
const tooltipWidthRef = useRef(180);
const tooltipHeightRef = useRef(80);
const [staticPosition, setStaticPosition] = useState({ left: x, top: y });
const tw = tooltipWidthRef.current;
const th = tooltipHeightRef.current;
const shouldFlipX = x + tw + offset > containerWidth;
const targetX = shouldFlipX ? x - offset - tw : x + offset;
const targetY = Math.max(
offset,
Math.min(y - th / 2, containerHeight - th - offset)
);
const animatedLeft = useSpring(targetX, effectiveSpring);
const animatedTop = useSpring(targetY, effectiveSpring);
if (animate && leftOverride === undefined) {
animatedLeft.set(targetX);
}
if (animate && topOverride === undefined) {
animatedTop.set(targetY);
}
useLayoutEffect(() => {
if (!tooltipRef.current) {
return;
}
const el = tooltipRef.current;
const w = el.offsetWidth;
const h = el.offsetHeight;
if (w > 0) {
tooltipWidthRef.current = w;
}
if (h > 0) {
tooltipHeightRef.current = h;
}
const w2 = tooltipWidthRef.current;
const h2 = tooltipHeightRef.current;
const flip = x + w2 + offset > containerWidth;
const tx = flip ? x - offset - w2 : x + offset;
const ty = Math.max(
offset,
Math.min(y - h2 / 2, containerHeight - h2 - offset)
);
if (!animate) {
setStaticPosition({ left: tx, top: ty });
return;
}
if (leftOverride === undefined) {
animatedLeft.set(tx);
}
if (topOverride === undefined) {
animatedTop.set(ty);
}
}, [
x,
y,
containerWidth,
containerHeight,
offset,
leftOverride,
topOverride,
animate,
animatedLeft,
animatedTop,
]);
const prevFlipRef = useRef(shouldFlipX);
const [flipKey, setFlipKey] = useState(0);
useEffect(() => {
if (prevFlipRef.current !== shouldFlipX) {
setFlipKey((k) => k + 1);
prevFlipRef.current = shouldFlipX;
}
}, [shouldFlipX]);
const finalLeft = animate
? (leftOverride ?? animatedLeft)
: staticPosition.left;
const finalTop = animate ? (topOverride ?? animatedTop) : staticPosition.top;
const isFlipped = flippedOverride ?? shouldFlipX;
const transformOrigin = isFlipped ? "right top" : "left top";
return createPortal(
<motion.div
animate={{ opacity: 1 }}
className={cn("pointer-events-none absolute z-50", className)}
exit={{ opacity: 0 }}
initial={{ opacity: 0 }}
ref={tooltipRef}
style={{ left: finalLeft, top: finalTop }}
transition={{ duration: 0.1 }}
>
<motion.div
animate={{ scale: 1, opacity: 1, x: 0 }}
className="min-w-[140px] overflow-hidden rounded-lg bg-chart-tooltip-background text-chart-tooltip-foreground shadow-lg backdrop-blur-md"
initial={{ scale: 0.85, opacity: 0, x: isFlipped ? 20 : -20 }}
key={flipKey}
style={{ transformOrigin, ...panelStyle }}
transition={{ type: "spring", stiffness: 300, damping: 25 }}
>
{children}
</motion.div>
</motion.div>,
container
);
}
TooltipBox.displayName = "TooltipBox";
export default TooltipBox;