Task #402: Convert Notes into in-app messaging
Original task: turn personal Notes into in-app messaging — sender composes a note (title/content/color), picks recipient(s), Send. Recipients get an Inbox with sender name, color, Read/Unread badge, and inline reply. Sender sees Sent Notes with per-recipient status. Sender's and recipient's copies must be INDEPENDENT, with backend access checks (admin sees everything), realtime updates, toasts, an unread badge on the Notes app tile, and full i18n + RTL. Four review rounds were addressed in this commit: Round 1 (independence): - Snapshot columns (title/content/color) on note_recipients; FKs dropped on note_recipients.note_id and note_replies.note_id so recipient threads survive the sender deleting their note. - /notes/received and /notes/:id/thread render the recipient snapshot. Round 2: - POST /notes/:id/reply: owner is now allowed to reply too. - Added GET /notes/:id as alias of /notes/:id/thread. - Added OpenAPI ops for the Notes routes; ran orval codegen. - use-notifications-socket.ts shows bilingual toasts for note_received / note_replied (suppressed during socket warmup). - home.tsx renders an unread badge on the Notes app tile. Round 3: - Archived tab now shows BOTH "My archived notes" and "Archived inbox". - Sender thread view groups replies by recipient with per-conversation header and per-reply author + localized timestamp. - Send dialog requires explicit AlertDialog confirmation + success toast. - Realtime toast strings moved off hardcoded EN/AR to i18n keys. - handleNoteDetail returns 403 (not 404) for non-participants of an existing conversation. - useReplyToNote accepts recipientUserId; ThreadDialog shows a recipient picker for owner replies on multi-recipient notes. Round 5 (this round): admin authorization fix - handleNoteDetail: admin bypass is now evaluated BEFORE the "non-participant 403" branch. When the sender has deleted the live note row but recipient snapshots remain, an admin GET /notes/:id now returns 200 with thread payload assembled from a fallback recipient snapshot (instead of 403). - New regression test: "admin can read a note whose sender deleted their copy (recipient snapshot remains)". Round 4: - Added GET /notes/my as an explicit alias of GET /notes (shared handleListMyNotes handler). - Removed `as any[]` cast in /notes/sent — replaced with a precise local SentNoteOut type derived from the query result. - Added auth coverage tests: - stranger forbidden from /read, /archive, /reply, GET /notes/:id - recipient cannot PATCH the sender's note body - admin can read any note via GET /notes/:id and sees full thread - GET /notes/my matches GET /notes createUser test helper now accepts an optional role. Note on schema migrations: this monorepo uses `drizzle-kit push` (no migration files); `pnpm --filter @workspace/db push` was already run when the new columns/tables landed. Tests: 11 backend tests in notes-share.test.mjs + 1 e2e (notes-inbox) all pass. tx-os typecheck is clean. Architect re-review: PASS. Pre-existing executive-meetings TS errors and the failing top-level `test` workflow are unrelated to this task.
This commit is contained in:
@@ -460,6 +460,29 @@ test("admin can read any note via GET /notes/:id and sees full thread", async ()
|
||||
);
|
||||
});
|
||||
|
||||
test("admin can read a note whose sender deleted their copy (recipient snapshot remains)", async () => {
|
||||
const sender = await createUser("notes_admdel_sender");
|
||||
const recipient = await createUser("notes_admdel_recipient");
|
||||
const adminUser = await createUser("notes_admdel_admin", "admin");
|
||||
const sCookie = await login(sender.username);
|
||||
const aCookie = await login(adminUser.username);
|
||||
|
||||
const note = await createNote(sCookie, { title: "WillDelete" });
|
||||
await api(`/notes/${note.id}/send`, sCookie, {
|
||||
method: "POST",
|
||||
body: JSON.stringify({ recipientUserIds: [recipient.id] }),
|
||||
});
|
||||
// Sender deletes the live note row; recipient snapshot must remain.
|
||||
await pool.query(`DELETE FROM notes WHERE id = $1`, [note.id]);
|
||||
|
||||
const res = await api(`/notes/${note.id}`, aCookie);
|
||||
assert.equal(res.status, 200, "admin must still read the thread after sender delete");
|
||||
const body = await res.json();
|
||||
assert.equal(body.isAdmin, true);
|
||||
assert.equal(body.title, "WillDelete", "admin sees recipient snapshot title");
|
||||
assert.ok(body.recipients.length >= 1, "admin sees recipient list");
|
||||
});
|
||||
|
||||
test("GET /notes/my returns the same payload as GET /notes (alias)", async () => {
|
||||
const owner = await createUser("notes_my_owner");
|
||||
const cookie = await login(owner.username);
|
||||
|
||||
Reference in New Issue
Block a user