Redesign client into SaaS-style UI with left sidebar navigation#178
Open
saadelbassiti-code wants to merge 2 commits into
Open
Redesign client into SaaS-style UI with left sidebar navigation#178saadelbassiti-code wants to merge 2 commits into
saadelbassiti-code wants to merge 2 commits into
Conversation
Replace the top nav bar with a left vertical navigation sidebar and
apply a consistent design-token system across the shell and shared
components:
- App.vue: sidebar layout ("Catalyst Components" brand), design tokens,
consistent spacing and polished professional styling
- FilterBar, LanguageSwitcher, ProfileMenu: restyled to match the new
sidebar shell
- Add docs/architecture.html documenting the app architecture
- Add saas-ui-redesign skill used to drive the redesign
Note: App.vue now calls api.getTasks() on mount but the backend has no
/tasks route yet (returns 404 on every page). Tracked as a follow-up.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
The sidebar UI calls api.getTasks/createTask/toggleTask/deleteTask, but
the backend had no /tasks routes, so every page logged a 404 + AxiosError
on mount. Add the missing endpoints against an in-memory task store:
- GET /api/tasks list tasks
- POST /api/tasks create (starts pending; priority defaults to medium)
- PATCH /api/tasks/{id} toggle pending<->completed
- DELETE /api/tasks/{id} delete
String ids ("task-N") avoid collisions with the frontend's numeric mock
task ids. Adds tests/backend/test_tasks.py (9 tests) covering CRUD, toggle,
404s, and validation. Verified: all 6 routes now load with zero console
errors; full backend suite passes (49 tests).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replace the top nav bar with a left vertical navigation sidebar and apply a consistent design-token system across the shell and shared components:
Note: App.vue now calls api.getTasks() on mount but the backend has no /tasks route yet (returns 404 on every page). Tracked as a follow-up.