9535f86970
New ExperimentCalendar component added as a third view mode (List / Group / Calendar)
on the Experiment Detail page.
Backend:
- GET /api/experiments/:id/calendar?field=<fieldIdOrBuiltinKey>
Returns { field, days: { "YYYY-MM-DD": count } } where count = number of
subjects with a non-null/non-empty value for the chosen field on that date.
Supports both builtin fields (vitals, treatment, notes, experiment_description)
and custom fields addressed by fieldId UUID.
Frontend:
- ExperimentCalendar component: navigable monthly grid, field selector
(defaults to first field with "weight" in label, else first active field),
blue badges showing subject count per day, click to open modal with all
subjects' data for that day.
- Integrated into ExperimentDetail as displayMode "calendar", persisted
in localStorage alongside the existing list/group modes.
- experimentsApi.getCalendar() added to API client.
Tests:
- backend/tests/calendar.test.js: 8 unit tests (404, empty days, builtin
count, custom field count, whitespace ignored, multi-month, field echo,
missing param).
- frontend/tests/ExperimentCalendar.test.jsx: 13 RTL tests covering
rendering, default field selection, count badges, month navigation,
field-change re-fetch, day click modal, and multi-subject display.
All 47 backend + 13 calendar frontend tests passing.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
802 B
SQL
22 lines
802 B
SQL
CREATE TABLE "daily_analyses" (
|
|
"id" TEXT NOT NULL,
|
|
"daily_status_id" TEXT NOT NULL,
|
|
"created_at" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
"file_name" TEXT,
|
|
"timestamp_col" TEXT NOT NULL,
|
|
"note_col" TEXT NOT NULL,
|
|
"classifications" JSONB NOT NULL,
|
|
"total_note_rows" INTEGER NOT NULL,
|
|
"sequence" JSONB NOT NULL,
|
|
"category_counts" JSONB NOT NULL,
|
|
"consecutive_stats" JSONB NOT NULL,
|
|
"runs" JSONB NOT NULL,
|
|
CONSTRAINT "daily_analyses_pkey" PRIMARY KEY ("id")
|
|
);
|
|
|
|
ALTER TABLE "daily_analyses"
|
|
ADD CONSTRAINT "daily_analyses_daily_status_id_fkey"
|
|
FOREIGN KEY ("daily_status_id")
|
|
REFERENCES "daily_statuses"("id")
|
|
ON DELETE CASCADE ON UPDATE CASCADE;
|