gsxdsm
e67dd11b50
FN-6829: dock todos as a project view
...
Convert Todos into the standard project right-content navigation surface.
- Route Todos through taskView state instead of modal manager state.
- Remove TodoModal wiring, styles, and tests while updating header, sidebar, mobile nav, and history coverage.
- Polish TodoView as a standalone content page with refreshed header and layout styling.
- Update dashboard and todo documentation for the full-view behavior.
Files changed:
docs/dashboard-guide.md | 5 +-
docs/todo-view.md | 5 +-
packages/dashboard/app/App.tsx | 30 ++---
.../app/__tests__/lazy-loaded-views-docs.test.ts | 10 +-
packages/dashboard/app/components/AppModals.tsx | 16 ---
packages/dashboard/app/components/Header.tsx | 12 +-
.../dashboard/app/components/LeftSidebarNav.tsx | 8 +-
packages/dashboard/app/components/MobileNavBar.tsx | 8 +-
packages/dashboard/app/components/TodoModal.css | 76 ------------
packages/dashboard/app/components/TodoModal.tsx | 79 ------------
packages/dashboard/app/components/TodoView.css | 55 ++++++---
packages/dashboard/app/components/TodoView.tsx | 24 ++--
.../app/components/__tests__/AppModals.test.tsx | 56 ---------
.../app/components/__tests__/Header.test.tsx | 26 ++--
.../components/__tests__/LeftSidebarNav.test.tsx | 7 +-
.../app/components/__tests__/MobileNavBar.test.tsx | 22 +++-
.../app/components/__tests__/TodoModal.test.tsx | 136 ---------------------
.../__tests__/TodoView.mobile-css.test.ts | 7 --
.../app/components/__tests__/TodoView.test.tsx | 11 +-
...-merge-toggle-blank.mobile-integration.test.tsx | 1 -
.../__tests__/navigation-history.test.tsx | 29 ++++-
.../dashboard/app/hooks/useMobileScrollLock.ts | 2 +-
packages/dashboard/app/hooks/useModalManager.ts | 10 --
packages/dashboard/app/hooks/useViewState.ts | 7 +-
24 files changed, 161 insertions(+), 481 deletions(-)
Fusion-Task-Id: FN-6829
Fusion-Task-Lineage: b4034bf2-b8e2-47ec-be7c-11c320d2fc44
2026-06-21 13:25:40 -07:00