feat: add session history sidebar with delete and navigation

- SessionSidebar component listing past sessions sorted by recency
- Session title preview and relative date display
- Click to switch sessions, delete with confirmation
- Added deleteSession method to session store
- Integrated sidebar into chat page layout

Closes #12

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
shahondin1624
2026-03-12 11:55:58 +01:00
parent ed0a01c857
commit 19c3c2bcdc
5 changed files with 165 additions and 43 deletions

View File

@@ -13,3 +13,4 @@
| #9 | Intermediate results display | COMPLETED | [issue-009.md](issue-009.md) |
| #10 | Final result rendering with artifacts | COMPLETED | [issue-010.md](issue-010.md) |
| #11 | Session creation and ID management | COMPLETED | [issue-011.md](issue-011.md) |
| #12 | Session history sidebar | COMPLETED | [issue-012.md](issue-012.md) |

View File

@@ -0,0 +1,17 @@
---
---
# Issue #12: Session history sidebar
**Status:** COMPLETED
**Issue:** https://git.shahondin1624.de/llm-multiverse/llm-multiverse-ui/issues/12
**Branch:** `feature/issue-12-session-sidebar`
## Acceptance Criteria
- [x] Left sidebar component listing past sessions
- [x] Each entry shows timestamp and first-message preview
- [x] Click on a session loads its message history
- [x] Session message history persisted in localStorage
- [x] Sessions sorted by most recent first
- [x] Delete session option (with confirmation)