diff --git a/e2e/delegated-writes.spec.ts b/e2e/delegated-writes.spec.ts index 34bd0c476..42d7a972c 100644 --- a/e2e/delegated-writes.spec.ts +++ b/e2e/delegated-writes.spec.ts @@ -9,19 +9,22 @@ * * ## Why it gates itself instead of seeding a WRITE grant directly * - * The grant level is chosen in the invitation form, which is another chunk's - * work. Rather than mint a WRITE row behind the UI's back — which would prove - * the journey works for a grant no person can create — the journey looks for - * the level control and stands down when it is not there yet. + * The grant level is chosen in the invitation form. Rather than mint a WRITE + * row behind the UI's back — which would prove the journey works for a grant + * no person can create — the journey looks for the level control and stands + * down when it is not there yet. * - * **To enable this once the invite form ships its level control:** if it lands - * under a different `data-slot` than the constant below, change that one - * string. Nothing else in this file assumes anything about the control except - * that picking WRITE and submitting mints a WRITE grant. + * That guard was written against a `data-slot` the form never shipped under + * (`grant-invite-level`; the control landed as `grant-invite-access-option`), + * so from the day the control arrived until 2026-08-03 every test in this file + * skipped and the whole delegated-write journey ran nowhere. The file said out + * loud what to change and nobody changed it, which is the standing lesson + * about a check that cannot fail: the skip is quiet, and a quiet skip and a + * passing suite look identical in a CI summary. * - * The skip is deliberately loud rather than silent: it names the missing - * control, so a run where the control exists and the journey still does not - * execute reads as a bug in this file rather than as an absence upstream. + * The constant is the real one now. If it moves again, change that one string: + * nothing else here assumes anything about the control except that choosing + * WRITE and submitting mints a WRITE grant. * * ## What this spec cannot cover * @@ -45,10 +48,10 @@ import { * The invitation form's grant-level control. The journey runs when this is on * the page and stands down when it is not. One string, one place. */ -const GRANT_LEVEL_SLOT = "grant-invite-level"; +const GRANT_LEVEL_SLOT = "grant-invite-access-option"; /** The value the level control carries for a grant that may add entries. */ -const WRITE_LEVEL_VALUE = "write"; +const WRITE_LEVEL_VALUE = "WRITE"; test.describe("delegated writes", () => { // One journey in order, like the read-only sibling: each step is the next @@ -110,9 +113,11 @@ test.describe("delegated writes", () => { await expect(submit).toBeEnabled({ timeout: 1000 }); }).toPass({ timeout: 15_000 }); - await ownerPage - .locator(`[data-slot="${GRANT_LEVEL_SLOT}"]`) - .selectOption(WRITE_LEVEL_VALUE); + const writeOption = ownerPage.locator( + `[data-slot="${GRANT_LEVEL_SLOT}"][data-access="${WRITE_LEVEL_VALUE}"]`, + ); + await writeOption.click(); + await expect(writeOption).toHaveAttribute("data-selected", "true"); // Read the posted body: a level control that renders and sends a hardcoded // level would pass every render assertion and ship a read-only grant. @@ -125,7 +130,7 @@ test.describe("delegated writes", () => { access?: string; }; expect( - posted.access?.toLowerCase(), + posted.access, "the invitation must carry the level the owner chose", ).toBe(WRITE_LEVEL_VALUE); }); @@ -162,8 +167,14 @@ test.describe("delegated writes", () => { res.request().method() === "POST" && res.url().endsWith("/api/measurements"), ); - await page.getByRole("button", { name: /add measurement/i }).click(); - await page.locator('input[name="value"], #value').first().fill("71.5"); + // Stable attributes and the form's real fields, neither of which this + // step had. It looked for a button named "Add measurement" (the header + // reads "Add") and then for a `value` input (the form opens on blood + // pressure, which has three). Both were wrong from the day they were + // written and nobody found out, because the whole file was skipping. + await page.locator('[data-slot="measurement-add"]').click(); + await page.locator("#sys").fill("124"); + await page.locator("#dia").fill("78"); await page.getByRole("button", { name: /^save$/i }).click(); expect((await post).status(), "the write must be accepted").toBeLessThan( 300, @@ -180,6 +191,28 @@ test.describe("delegated writes", () => { ); }); + test("a deep link opens exactly what the level admits", async ({ page }) => { + // The gate binds to the level the server resolved, not to a blanket + // "somebody else's record" flag. Both halves matter and only a browser + // can show either: the SSR suite holds a component's paint, never a URL. + // + // Admitted: entering a reading, so `?add=` opens the same sheet the + // header button opens. + await page.goto("/measurements?add=WEIGHT"); + await expect( + page.locator('[data-slot="shared-record-banner"]'), + ).toBeVisible(); + await expect( + page.locator('[data-slot="responsive-sheet-content"]').first(), + ).toBeVisible(); + + // Also admitted: adding a medication with its schedule. + await page.goto("/medications?new=1"); + await expect( + page.locator('[data-slot="medication-wizard-dialog"]'), + ).toBeVisible(); + }); + test("the owner sees that somebody else was in their record", async () => { await ownerPage.goto("/settings/access"); const rows = ownerPage.locator('[data-slot="record-activity-row"]'); diff --git a/src/__tests__/delegable-surface-guard.test.ts b/src/__tests__/delegable-surface-guard.test.ts index 532eb962a..144a4c6b7 100644 --- a/src/__tests__/delegable-surface-guard.test.ts +++ b/src/__tests__/delegable-surface-guard.test.ts @@ -428,11 +428,11 @@ const DELEGABLE_ROUTES: Record = { "app/api/biomarkers/[id]/route.ts": "One biomarker of the record, fetch-then-guard against the resolved user.", "app/api/allergies/route.ts": - "The record's allergy list — the single most useful thing a caregiver can read, and a plain list of the owner's own rows.", + "The record's allergy list — the single most useful thing a caregiver can read, and a plain list of the owner's own rows. The POST beside it is NOT delegable and is deliberately absent from the write literal below: the only surface that posts to it lives under `/settings`, which a switch closes, so admitting the write would freeze a permission ahead of any caller for it. The route comment carries the argument.", "app/api/allergies/[id]/route.ts": "One allergy of the record, fetch-then-guard against the resolved user.", "app/api/family-history/route.ts": - "The record's family history. The payload describes the owner's relatives, so it is the one admitted read where third-party health information is present by design rather than by accident; a caregiver reading it is the use the feature exists for, and the row is stored as the owner's.", + "The record's family history. The payload describes the owner's relatives, so it is the one admitted read where third-party health information is present by design rather than by accident; a caregiver reading it is the use the feature exists for, and the row is stored as the owner's. Its POST is not delegable, for the reason its allergy sibling gives plus one of its own — see the route comment.", "app/api/family-history/[id]/route.ts": "One family-history entry of the record, fetch-then-guard against the resolved user.", "app/api/mental-health/assessments/route.ts": @@ -512,6 +512,17 @@ const DELEGABLE_ROUTES: Record = { * thirty-one read-only delegable modules do not do, and it is the difference * the identifier matcher above cannot see. * + * v1.36.x — `POST /api/allergies` and `POST /api/family-history` left this + * list, and the removal is worth reading before either is proposed again. The + * argument for admitting them was never wrong; what they lacked was a caller. + * The only surface in the product that posts to either lives in Settings → + * Anamnese, and a switch closes `/settings` — so a delegate could not reach + * the form at any grant level, and the two entries were a permission frozen + * ahead of the surface that would exercise it. Both delegable READ arms stay: + * a caregiver reading the allergy list is what the feature is for. Whoever + * builds a caregiver-reachable medical-history surface adds them back in the + * same diff, which is the two-ended change this list is meant to hold to. + * * Every member also has to call `auditLog`, asserted below. That is not a * stylistic preference. The decision not to add a `writtenBy` column to eleven * tables rests entirely on the audit trail carrying the actor, and `auditLog` @@ -528,10 +539,6 @@ const DELEGABLE_WRITE_ROUTES: Record = { "Entering a lab result. The free-text path may mint a biomarker, and mints it into the RECORD's catalogue — a result added to somebody's record that left the marker on the helper's account would be worse than useless to the owner.", "app/api/biomarkers/route.ts": "Adding an analyte to the record's catalogue. A name the record already tracks is the ordinary 409 from the same `(userId, name)` uniqueness the owner would hit themselves.", - "app/api/allergies/route.ts": - "Adding an allergy. The cleanest admission in the set: a plain statement about the record's own body, and the single most useful thing a caregiver can contribute.", - "app/api/family-history/route.ts": - "Adding a family-history entry. Third-party health data by design — the row describes the record's relatives — and it is stored as the record's own, which is exactly how the delegable read arm already serves it.", "app/api/illness/episodes/route.ts": "Opening an illness episode. The module gate runs against the RECORD before the write, so a delegate cannot create an episode inside a record whose owner switched the module off.", "app/api/custom-metrics/[id]/entries/route.ts": @@ -569,7 +576,7 @@ const ACTOR_ROUTES: Record = { * stay a formality by accident: every addition has to be counted here as well * as listed above, which is one more place a careless admission has to pass. */ -const FROZEN_ENTRY_COUNT = 57; +const FROZEN_ENTRY_COUNT = 55; /** * The two surfaces that authenticate a Bearer token outside `requireAuth` — diff --git a/src/__tests__/success-affordance-guard.test.ts b/src/__tests__/success-affordance-guard.test.ts index 23bc53a73..ac13ec592 100644 --- a/src/__tests__/success-affordance-guard.test.ts +++ b/src/__tests__/success-affordance-guard.test.ts @@ -256,7 +256,9 @@ const PINNED_AFFORDANCES: Record< "toast.success": 2, }, "src/components/medications/take-all-due.ts": { "toast.success": 1 }, - "src/components/medications/use-medication-intake.ts": { "toast.success": 5 }, + // v1.36.x — one fewer: the log-intake path's three-armed toast collapsed + // into the shared `intakeToastOptions` decision plus a single call pair. + "src/components/medications/use-medication-intake.ts": { "toast.success": 4 }, "src/components/medications/wizard/medication-wizard-dialog.tsx": { "toast.success": 1, }, diff --git a/src/app/api/allergies/route.ts b/src/app/api/allergies/route.ts index f29719ded..8225b7e0d 100644 --- a/src/app/api/allergies/route.ts +++ b/src/app/api/allergies/route.ts @@ -11,7 +11,7 @@ import { NextRequest } from "next/server"; import { prisma } from "@/lib/db"; -import { apiHandler, requireRecordAuth } from "@/lib/api-handler"; +import { apiHandler, requireAuth, requireRecordAuth } from "@/lib/api-handler"; import { annotate } from "@/lib/logging/context"; import { auditLog } from "@/lib/auth/audit"; import { @@ -67,10 +67,37 @@ export const GET = apiHandler(async (request: NextRequest) => { export const POST = apiHandler(withIdempotency<[NextRequest]>(postAllergy)); async function postAllergy(request: NextRequest): Promise { - // v1.36.x — a delegated write, and the cleanest of them: the row is a plain - // statement about the record's own body, and the caller appears in the audit - // trail rather than in the row. - const { user } = await requireRecordAuth("write"); + // v1.36.x — the GET above is delegable and this is not, which is the + // opposite of where the classification landed and worth the paragraph. + // + // Nothing about the row changed: it is still a plain statement about the + // record's own body, still the single most useful thing a caregiver could + // contribute, and the argument for admitting it still holds. What it does + // not have is a caller. The only place in the product that posts here is the + // allergy manager in Settings → Anamnese, and `/settings/*` is not a + // shared-record destination — the shell shows the "not part of what was + // shared" panel there, so no delegate can reach the form at any level. + // + // An admitted write with no reachable surface is the one-ended change this + // repository keeps rediscovering (CLAUDE.md, "A two-ended change carries + // both ends"): the permission ships, the consumer is the follow-up, and + // nothing in the gate notices because every other check proves the other + // end. The frozen list is built the other way round on purpose — its own + // actor-surface note says the rest "arrive as their own diffs; naming them + // before they exist would freeze a guess." + // + // So this arm waits for the surface that would exercise it, and the two + // land together. Choosing that surface is design work, not a fix: allergies + // and family history have exactly one home today, that home is a personal + // account surface a switch rightly closes, and bolting a second copy onto a + // shared page would split one concept across two places. Re-admitting is + // one line here plus one entry in `delegable-surface-guard.test.ts` plus the + // paragraph that argues it — which is exactly the reviewed diff that guard + // exists to force. + // + // The half that was always the point is untouched: a caregiver can still + // READ the allergy list inside the record. + const { user } = await requireAuth(); const { data: rawBody, error: jsonError } = await safeJson(request, { maxBytes: 16 * 1024, diff --git a/src/app/api/family-history/route.ts b/src/app/api/family-history/route.ts index d560de87e..f3b3e22bb 100644 --- a/src/app/api/family-history/route.ts +++ b/src/app/api/family-history/route.ts @@ -12,7 +12,7 @@ import { NextRequest } from "next/server"; import { prisma } from "@/lib/db"; -import { apiHandler, requireRecordAuth } from "@/lib/api-handler"; +import { apiHandler, requireAuth, requireRecordAuth } from "@/lib/api-handler"; import { annotate } from "@/lib/logging/context"; import { auditLog } from "@/lib/auth/audit"; import { @@ -62,11 +62,22 @@ export const POST = apiHandler( ); async function postFamilyHistory(request: NextRequest): Promise { - // v1.36.x — a delegated write, and the one where third-party health data is - // present by design: the row describes the record's relatives. It is stored - // as the record's own, exactly as the delegable READ arm above already - // serves it, and the audit trail names who entered it. - const { user } = await requireRecordAuth("write"); + // v1.36.x — not a delegated write, though the GET above is delegable. The + // reasoning is written out at the sibling arm in `api/allergies/route.ts` + // and is the same here: the only surface that posts to either route is the + // manager in Settings → Anamnese, and `/settings/*` is closed inside a + // shared record, so no delegate can reach the form at any level. An + // admitted write with no reachable caller is a permission frozen ahead of + // the surface that would exercise it. + // + // This arm carried an extra reason to wait. The row describes the record's + // RELATIVES, so it is the one admitted write where third-party health + // information is present by design — and frequently the delegate is that + // relative, asserting a condition about themselves into somebody else's + // record. The classification admitted it and named the discomfort. Landing + // it together with the surface that offers it means the copy on that surface + // can say whose statement the row is, which no route comment can. + const { user } = await requireAuth(); const { data: rawBody, error: jsonError } = await safeJson(request, { maxBytes: 16 * 1024, diff --git a/src/app/measurements/page.tsx b/src/app/measurements/page.tsx index f6517480a..3f753ed8e 100644 --- a/src/app/measurements/page.tsx +++ b/src/app/measurements/page.tsx @@ -157,6 +157,7 @@ export default function MeasurementsPage() { actions={ canAdd ? ( - + {canManage ? ( + <> + + {/* The upload affordance is a deep link into the vault with + this episode pre-filtered. The vault's own upload control + is `canManage`-gated, so an ungated link here would send a + delegate to a page with nothing to press. */} + + + ) : null} {hasMore ? ( + {canManage ? ( + + ) : null} ); diff --git a/src/components/measurement-reminders/vorsorge-section.tsx b/src/components/measurement-reminders/vorsorge-section.tsx index 3f0fa6413..c5412c6da 100644 --- a/src/components/measurement-reminders/vorsorge-section.tsx +++ b/src/components/measurement-reminders/vorsorge-section.tsx @@ -983,21 +983,28 @@ function VorsorgeCard({
- + {/* The same gate the cards branch applies through + `primaryButton`. The list branch used to inline its own + ungated copy, and which branch a person sees is a per-browser + preference that survives the switch — so the identical action + was offered or withheld depending on a view toggle. */} + {canManage ? ( + + ) : null} {headerActions}
diff --git a/src/components/medications/__tests__/use-medication-intake.test.ts b/src/components/medications/__tests__/use-medication-intake.test.ts index 8a5572b38..b73ca1e8d 100644 --- a/src/components/medications/__tests__/use-medication-intake.test.ts +++ b/src/components/medications/__tests__/use-medication-intake.test.ts @@ -3,6 +3,7 @@ import type { QueryClient } from "@tanstack/react-query"; import { toast } from "sonner"; import { + intakeToastOptions, runLogIntake, runRecordIntake, runUndoIntake, @@ -475,3 +476,67 @@ describe("runUndoIntake — shared soft-delete", () => { expect(toast.success).not.toHaveBeenCalled(); }); }); + +/** + * v1.36.x — the one decision every intake surface shares. + * + * Three surfaces record a dose and all three showed the same success toast: + * the cards, the log-intake dialog, and the dose-history ledger. Two of them + * learned to name the record and drop Undo inside somebody else's; the ledger + * built its own copy of the ternary and learned neither, so a delegate met a + * dead Undo on every dose they marked. This is the copy that is left. + * + * Whole objects rather than field probes: when one person's record is being + * separated from another's, a failure should print what would have been shown + * rather than `false !== true`. + * + * Mutation check, run: making `intakeToastOptions` ignore `recordName` → the + * two shared-record legs go red, printing the Undo action they returned. + */ +describe("intakeToastOptions — the shared toast decision", () => { + const onUndo = vi.fn(); + + it("carries an Undo in the caller's own record", () => { + expect( + intakeToastOptions({ recordName: null, eventId: "evt-1", t, onUndo }), + ).toEqual({ + action: { + label: "medications.intakeUndo", + onClick: expect.any(Function), + }, + }); + }); + + it("names the record and offers no Undo inside somebody else's", () => { + expect( + intakeToastOptions({ + recordName: "Margarethe", + eventId: "evt-1", + t, + onUndo, + }), + ).toEqual({ description: "recordSharing.toast.savedTo:Margarethe" }); + }); + + it("still names the record when the write returned no event id", () => { + // The two arms are not alternatives: the receipt is owed either way, and + // an absent event id must not fall through to a bare "Saved". + expect( + intakeToastOptions({ + recordName: "Margarethe", + eventId: undefined, + t, + onUndo, + }), + ).toEqual({ description: "recordSharing.toast.savedTo:Margarethe" }); + }); + + it("carries nothing when there is neither a record to name nor an undo", () => { + expect( + intakeToastOptions({ recordName: null, eventId: undefined, t, onUndo }), + ).toBeUndefined(); + expect( + intakeToastOptions({ recordName: null, eventId: "evt-1", t }), + ).toBeUndefined(); + }); +}); diff --git a/src/components/medications/detail/efficacy/efficacy-tab.tsx b/src/components/medications/detail/efficacy/efficacy-tab.tsx index 8d0ac882b..bba726adc 100644 --- a/src/components/medications/detail/efficacy/efficacy-tab.tsx +++ b/src/components/medications/detail/efficacy/efficacy-tab.tsx @@ -36,6 +36,7 @@ import { queryKeys } from "@/lib/query-keys"; import { apiGet, apiPut } from "@/lib/api/api-fetch"; import { useTranslations, useFormatters } from "@/lib/i18n/context"; import { useAuth } from "@/hooks/use-auth"; +import { useRecordCapabilities } from "@/hooks/use-record-capabilities"; import { DEFAULT_TIMEZONE } from "@/lib/tz/format"; import type { MedicationEfficacyDTO, @@ -388,6 +389,11 @@ function RetargetControl({ onChanged: () => void; }) { const { t } = useTranslations(); + // Repointing what a medication is judged against rewrites a setting the + // owner chose — not an admitted create, and `PUT .../efficacy/target` + // resolves the caller, so it is refused at both grant levels. The Wirkung + // tab itself stays readable; only the dial goes. + const { canManage } = useRecordCapabilities(); const [value, setValue] = useState(""); const [busy, setBusy] = useState(false); @@ -437,7 +443,7 @@ function RetargetControl({ } }; - if (items.length === 0) return null; + if (!canManage || items.length === 0) return null; return (
- void runUndoIntake({ - medication: { id: medicationId, name: medicationName }, - eventId, - t, - queryClient, - }), - }, - } - : undefined, + // The shared decision, not a fourth copy of it: name the record it + // landed in, and withhold an Undo the server would refuse there. + intakeToastOptions({ + recordName, + eventId, + t, + onUndo: (id) => + void runUndoIntake({ + medication: { id: medicationId, name: medicationName }, + eventId: id, + t, + queryClient, + }), + }), ); await invalidateKeys(queryClient, [ ...medicationDependentKeys, @@ -314,7 +326,15 @@ export function DoseHistoryLedger({ setMarking(null); } }, - [marking, medicationId, medicationName, queryClient, queryKey, t], + [ + marking, + medicationId, + medicationName, + queryClient, + queryKey, + recordName, + t, + ], ); /** diff --git a/src/components/medications/use-medication-intake.ts b/src/components/medications/use-medication-intake.ts index f9ef5dfab..bf1abbdaa 100644 --- a/src/components/medications/use-medication-intake.ts +++ b/src/components/medications/use-medication-intake.ts @@ -29,6 +29,54 @@ interface MedicationIntakeIdentity { name: string; } +/** + * What rides alongside a successful intake toast — and the one place that + * decides it. + * + * Three surfaces record a dose: the medication cards through + * {@link runRecordIntake}, the log-intake dialog through {@link runLogIntake}, + * and the dose-history ledger, which builds its own POST because it also has + * an optimistic cache patch to make. All three showed the same success toast + * and all three had to reach the same two conclusions: + * + * - inside somebody else's record, name the record. "Saved" alone is the one + * confirmation a person acting for somebody else does not need. + * - and drop Undo there. A delegate may record a dose and may not remove + * one, so an Undo they can see is an Undo the server refuses. + * + * Two of the three learned that; the ledger did not, which is a delegate + * meeting a dead Undo on every dose they mark. Three copies of one ternary is + * how that happens, so there is one now. + */ +export function intakeToastOptions(input: { + /** The record the dose landed in, or null in the caller's own. */ + recordName: string | null | undefined; + /** The created event, when the POST returned one. */ + eventId: string | undefined; + t: Translator; + /** Reverse the write. Omitted where the caller offers no undo at all. */ + onUndo?: (eventId: string) => void; +}): + | { description: string } + | { action: { label: string; onClick: () => void } } + | undefined { + const { recordName, eventId, t, onUndo } = input; + if (recordName) { + return { + description: t("recordSharing.toast.savedTo", { name: recordName }), + }; + } + if (eventId && onUndo) { + return { + action: { + label: t("medications.intakeUndo"), + onClick: () => onUndo(eventId), + }, + }; + } + return undefined; +} + /** * v1.12.2 — the take / skip + Undo intake orchestration shared by the * generic {@link MedicationCard} and the {@link Glp1MedicationCard}. @@ -146,20 +194,12 @@ export async function runRecordIntake(deps: { : "medications.intakeToastTaken", { name: medication.name }, ), - recordName - ? { - description: t("recordSharing.toast.savedTo", { - name: recordName, - }), - } - : eventId - ? { - action: { - label: t("medications.intakeUndo"), - onClick: () => void undoIntake(eventId), - }, - } - : undefined, + intakeToastOptions({ + recordName, + eventId, + t, + onUndo: (id) => void undoIntake(id), + }), ); await invalidateMedicationReads(queryClient); onRecorded?.(eventId, skipped); @@ -248,17 +288,14 @@ export async function runLogIntake(deps: { // a real Undo action to attach; keeps the no-undo call signature // identical to the pre-fix behaviour (existing unit tests assert the // single-argument call). - if (recordName) { - toast.success(message, { - description: t("recordSharing.toast.savedTo", { name: recordName }), - }); - } else if (eventId && undoIntake) { - toast.success(message, { - action: { - label: t("medications.intakeUndo"), - onClick: () => void undoIntake(eventId), - }, - }); + const options = intakeToastOptions({ + recordName, + eventId, + t, + onUndo: undoIntake ? (id) => void undoIntake(id) : undefined, + }); + if (options) { + toast.success(message, options); } else { toast.success(message); } diff --git a/src/lib/insights/__tests__/coach-launch-context.test.tsx b/src/lib/insights/__tests__/coach-launch-context.test.tsx index 0fbe78781..a4054c979 100644 --- a/src/lib/insights/__tests__/coach-launch-context.test.tsx +++ b/src/lib/insights/__tests__/coach-launch-context.test.tsx @@ -1,11 +1,7 @@ -import { describe, it, expect } from "vitest"; +import { describe, it, expect, vi } from "vitest"; import { renderToStaticMarkup } from "react-dom/server"; -import { - CoachLaunchProvider, - resolveLaunchState, - useCoachLaunch, -} from "../coach-launch-context"; +import type { AccountAccess } from "@/lib/sharing/account-access-view"; /** * v1.4.27 R3d MB4 — Coach launch context smoke contract. @@ -19,8 +15,48 @@ import { * 3. The hook returns `null` when called outside the provider — * consumers degrade gracefully (e.g. the launch button renders * nothing rather than crashing). + * 4. v1.36.x — the provider publishes nothing inside somebody else's + * record, so (3) also covers every consumer under a switch. The shell + * mounts no drawer there, and a launch call that opened nothing was a + * button that silently did nothing on every page that offers one. + * + * Mutation check, run: dropping the `inSharedRecord` arm from the provider's + * value memo → "publishes nothing inside somebody else's record" goes red + * with the full context shape in the diff. */ +const OWNER = { + accountId: "acct-owner", + username: "owner", + displayName: "Margarethe", + access: "write" as const, + canWrite: true, +}; + +const mockAccessRef: { value: AccountAccess } = { + value: { accounts: [OWNER], active: null, canSwitch: true }, +}; + +vi.mock("@/hooks/use-auth", () => ({ + useAuth: () => ({ + user: { + id: "delegate", + username: "delegate", + email: null, + role: "USER", + avatarUrl: null, + modules: {}, + accountAccess: mockAccessRef.value, + }, + isAuthenticated: true, + isLoading: false, + refetch: vi.fn(), + }), +})); + +const { CoachLaunchProvider, resolveLaunchState, useCoachLaunch } = + await import("../coach-launch-context"); + function Probe({ output }: { output: string[] }) { const launch = useCoachLaunch(); if (!launch) { @@ -72,6 +108,41 @@ describe("CoachLaunchProvider", () => { expect(html).toContain('data-slot="child-mount"'); expect(html).toContain("child"); }); + + it("publishes nothing inside somebody else's record, at both levels", () => { + for (const access of ["read", "write"] as const) { + mockAccessRef.value = { + accounts: [OWNER], + active: { ...OWNER, access, canWrite: access === "write" }, + canSwitch: true, + }; + const output: string[] = []; + renderToStaticMarkup( + + + , + ); + // The whole recorded value, not a boolean: a failure prints the shape + // that leaked rather than `false !== true`. + expect(output, `grant level: ${access}`).toEqual(["null"]); + } + mockAccessRef.value = { accounts: [OWNER], active: null, canSwitch: true }; + }); + + it("still renders its children there — only the launch value is withheld", () => { + mockAccessRef.value = { + accounts: [OWNER], + active: OWNER, + canSwitch: true, + }; + const html = renderToStaticMarkup( + +
child
+
, + ); + mockAccessRef.value = { accounts: [OWNER], active: null, canSwitch: true }; + expect(html).toContain('data-slot="child-mount"'); + }); }); /** diff --git a/src/lib/insights/coach-launch-context.tsx b/src/lib/insights/coach-launch-context.tsx index c8f1cbd12..fc5689729 100644 --- a/src/lib/insights/coach-launch-context.tsx +++ b/src/lib/insights/coach-launch-context.tsx @@ -10,6 +10,7 @@ import { type ReactNode, } from "react"; +import { useRecordCapabilities } from "@/hooks/use-record-capabilities"; import type { CoachScopeSource, CoachScopeWindow } from "@/lib/ai/coach/types"; /** @@ -191,7 +192,30 @@ export interface CoachLaunchProviderProps { children: ReactNode; } +/** + * Owns the drawer's launch state — and publishes it only where a drawer + * exists to receive it. + * + * v1.36.x — the shell stopped mounting `` inside somebody + * else's record, and this provider kept answering: `askCoach()` set an open + * flag that nothing was reading, so every per-page Coach entry point became a + * button that did nothing at all. A control that errors tells a person where + * they stand; one that silently does nothing tells them the product is + * broken. + * + * The gate lives here, on the publisher, rather than in `useCoachLaunch()`. + * Six components read this context and five already treat `null` as "no Coach + * here", so withholding the value fixes all of them at once and a seventh + * inherits the rule. Putting it in the hook instead would drag the account + * query into every one of those components for an answer that is the same in + * all of them. + * + * Nothing is taken away by this: `/insights` and `/coach` are not + * shared-record destinations, so the Coach is outside what sharing covers to + * begin with. + */ export function CoachLaunchProvider({ children }: CoachLaunchProviderProps) { + const { inSharedRecord } = useRecordCapabilities(); const [open, setOpen] = useState(false); const [closeIntent, setCloseIntent] = useState(null); const [prefill, setPrefill] = useState(null); @@ -277,20 +301,24 @@ export function CoachLaunchProvider({ children }: CoachLaunchProviderProps) { [], ); - const value = useMemo( - () => ({ - open, - closeIntent, - prefill, - autoSend, - scope, - documentId, - workoutId, - askCoach, - registerScope, - setOpen: handleSetOpen, - }), + const value = useMemo( + () => + inSharedRecord + ? null + : { + open, + closeIntent, + prefill, + autoSend, + scope, + documentId, + workoutId, + askCoach, + registerScope, + setOpen: handleSetOpen, + }, [ + inSharedRecord, closeIntent, open, prefill, @@ -316,6 +344,12 @@ export function CoachLaunchProvider({ children }: CoachLaunchProviderProps) { * `` so consumer components can degrade gracefully * (e.g. the hero strip's "Ask the coach" action stays disabled until * the provider mounts). + * + * v1.36.x — also `null` inside somebody else's record, and by the same + * mechanism: the provider publishes nothing there (see its own docblock), so + * every consumer's existing `if (!launch) return null` becomes right without + * being told. Kept as a plain context read on purpose — the answer is decided + * once, in the provider, rather than by a hook that six components call. */ export function useCoachLaunch(): CoachLaunchValue | null { return useContext(CoachLaunchContext); diff --git a/tests/integration/sharing-delegable-writes.test.ts b/tests/integration/sharing-delegable-writes.test.ts index ffd64238e..e06f51d75 100644 --- a/tests/integration/sharing-delegable-writes.test.ts +++ b/tests/integration/sharing-delegable-writes.test.ts @@ -426,10 +426,76 @@ writeContract("POST /api/biomarkers", { }); /* -------------------------------------------------------------------------- */ -/* 4 — allergies */ +/* 4 + 5 — allergies and family history, the two that are NOT delegable */ /* -------------------------------------------------------------------------- */ -writeContract("POST /api/allergies", { +/** + * The opposite contract, and it earns its place beside the admitted ones. + * + * Both of these verbs were admitted and then withdrawn, and the argument for + * admitting them was never wrong: an allergy is a plain statement about the + * record's own body and the single most useful thing a caregiver could + * contribute. What they lack is a caller. The only surface in the product that + * posts to either lives in Settings, and a switch closes `/settings` — so no + * delegate can reach the form at any grant level, and admitting the write + * would freeze a permission ahead of anything that exercises it. + * + * Both READ arms stay delegable; the read suite pins them. What is pinned here + * is the pair that has to move together: the route refuses, and the owner's own + * unswitched write still lands. Withdrawing a delegated write by breaking the + * ordinary one would be the worse bug, and no other test in this file would + * have noticed. + * + * Re-admitting means flipping `requireAuth()` back to `requireRecordAuth`, + * re-listing the route in `delegable-surface-guard.test.ts`, and replacing this + * block with a `writeContract` — in the same diff as the caregiver-reachable + * surface that made it worth doing. + */ +function refusedWriteContract( + name: string, + c: { + call: () => Promise; + ok: number; + count: (userId: string) => Promise; + }, +) { + describe(name, () => { + for (const access of ["READ", "WRITE"] as const) { + it(`refuses a delegate holding a ${access} grant, and writes nothing`, async () => { + const owner = await makeUser("owner"); + const delegate = await makeUser("delegate"); + + await switchInto(owner.id, delegate.id, access); + const response = await c.call(); + + // The undeclared-mode refusal, not the no-grant one: the route names + // no sharing mode at all, so the carrier is refused before any grant + // is consulted. A WRITE grant makes no difference, which is the point. + expect(response.status).toBe(403); + expect((await payload(response)).meta?.errorCode).toBe( + "sharing.not_permitted", + ); + + // Neither account, not just not the owner's — a handler that fell + // back to the caller would have written a row somewhere. + expect(await c.count(owner.id)).toBe(0); + expect(await c.count(delegate.id)).toBe(0); + }); + } + + it("still lets the owner write it themselves", async () => { + const owner = await makeUser("owner"); + await signIn(owner.id); + + const response = await c.call(); + + expect(response.status).toBe(c.ok); + expect(await c.count(owner.id)).toBe(1); + }); + }); +} + +refusedWriteContract("POST /api/allergies", { call: async () => { const { POST } = await import("@/app/api/allergies/route"); return post(POST as Handler, "/api/allergies", { @@ -439,15 +505,10 @@ writeContract("POST /api/allergies", { }); }, ok: 201, - auditAction: "allergy.create", count: (userId) => getPrismaClient().allergy.count({ where: { userId } }), }); -/* -------------------------------------------------------------------------- */ -/* 5 — family history */ -/* -------------------------------------------------------------------------- */ - -writeContract("POST /api/family-history", { +refusedWriteContract("POST /api/family-history", { call: async () => { const { POST } = await import("@/app/api/family-history/route"); return post(POST as Handler, "/api/family-history", { @@ -456,7 +517,6 @@ writeContract("POST /api/family-history", { }); }, ok: 201, - auditAction: "family-history.create", count: (userId) => getPrismaClient().familyHistoryEntry.count({ where: { userId } }), });