Files
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

30 lines
981 B
TypeScript

"use client";
import { animate, type Transition, useMotionValue } from "motion/react";
import { useEffect, useRef } from "react";
import { DEFAULT_CHART_ENTER_TRANSITION } from "./animation";
/** Drives 0→1 enter progress using the studio motion transition (spring or tween). */
export function useMountProgress(
enterTransition: Transition | undefined,
delaySeconds: number,
replayKey: number | string
) {
const progress = useMotionValue(0);
const transitionRef = useRef(enterTransition);
transitionRef.current = enterTransition;
// replayKey intentionally retriggers enter when motion settings change
// biome-ignore lint/correctness/useExhaustiveDependencies: replayKey
useEffect(() => {
progress.set(0);
const controls = animate(progress, 1, {
...(transitionRef.current ?? DEFAULT_CHART_ENTER_TRANSITION),
delay: delaySeconds,
});
return () => controls.stop();
}, [delaySeconds, replayKey, progress]);
return progress;
}