feat(fase-3): Tareas + Notas — TDD complete (148 tests green)

3.0 Tests primero
  pgTAP: 005_tasks_rls.sql (5 — completion CHECK), 006_notes_trash_purge.sql (4 — purge SQL inline + pin/archive CHECK)
  Vitest RLS: rls-tasks.test.ts (14), rls-notes.test.ts (15)
  Playwright: tasks.test.ts (3), notes.test.ts (4)

3.1 Tareas
  Migration 008_tasks.sql: task_lists + tasks + task_list_collective_id() helper
  CHECK constraint: is_completed ⇔ completed_by ⇔ completed_at
  RLS by role + cross-collective isolation
  Store apps/web/src/lib/stores/tasks.ts (optimistic CRUD + reorder)
  /tasks overview (grid + sticky create input + 5s polling)
  /tasks/[id] detail with svelte-dnd-action reorder, flip animation,
    inline edit (dblclick), "Completed by …" attribution via lazy-loaded
    collective_members

3.2 Notas
  Migration 009_notes.sql: notes + note_color enum (8) + pin/archive CHECK
    + 7d trash window in RLS + fn_notes_touch trigger + pg_cron purge job
  Store apps/web/src/lib/stores/notes.ts (CRUD + pin/archive/trash/duplicate)
  /notes board (pinned section testid notes-pinned + 30s polling)
  /notes/[id] editor (title + textarea, 500ms debounced autosave,
    color picker, pin/archive/duplicate/trash actions)
  /notes/archive (restore + send to trash)
  /notes/trash (restore + permanent delete)

3.Z Verification
  just test-all → 148 verdes, 2 skipped:
    25 pgTAP (was 16, +9)
    88 Vitest integration (was 59, +29; 2 presence skipped)
    6 Vitest unit (unchanged)
    29 Playwright (was 22, +3 tasks +4 notes)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-13 10:28:19 +02:00
parent e7a961a66d
commit 104eeba02e
23 changed files with 2563 additions and 81 deletions

View File

@@ -96,7 +96,44 @@
"list_finish_confirm_yes": "Yes, finish",
"list_finish_confirm_no": "Keep shopping",
"tasks_title": "Tasks",
"tasks_no_lists": "No task lists yet",
"tasks_create_first": "Create your first task list",
"tasks_new_list_placeholder": "New task list",
"tasks_new_task_placeholder": "Add task",
"tasks_empty": "No tasks yet",
"tasks_empty_hint": "Add your first task below",
"tasks_completed_section": "Completed",
"tasks_pending_section": "To do",
"tasks_completed_by": "Completed by {name}",
"tasks_toggle": "Toggle task",
"tasks_uncheck": "Uncheck task",
"tasks_delete": "Delete task",
"tasks_delete_list": "Delete list",
"tasks_delete_list_confirm": "Delete this task list and all its tasks?",
"notes_title": "Notes",
"notes_new": "New note",
"notes_pinned_section": "Pinned",
"notes_active_section": "Notes",
"notes_archive": "Archive",
"notes_archive_view": "Archived notes",
"notes_archived_empty": "No archived notes",
"notes_trash_view": "Notes trash",
"notes_trash_empty": "Trash is empty",
"notes_pin": "Pin note",
"notes_unpin": "Unpin note",
"notes_unarchive": "Unarchive note",
"notes_send_to_trash": "Move to trash",
"notes_restore": "Restore",
"notes_duplicate": "Duplicate",
"notes_color": "Color",
"notes_title_placeholder": "Title",
"notes_content_placeholder": "Start writing…",
"notes_content_aria": "Content",
"notes_back_to_board": "Back to board",
"notes_saved": "Saved",
"notes_saving": "Saving…",
"notes_empty_board": "No notes yet",
"notes_empty_board_hint": "Click \"New note\" to start writing",
"search_title": "Search",
"search_placeholder": "Search lists, tasks, notes…",
"trash_restore": "Restore",