aboutsummaryrefslogtreecommitdiffstats
path: root/tui/tui.go
Commit message (Collapse)AuthorAgeFilesLines
* Optimize asset packaging: move UI assets to root dist/ and decouple rice ↵Adam Mathes11 days1-318/+0
| | | | embedding
* feat(tui): modernize TUI layout with sidebar and keybindings (NK-gdf99z)Adam Mathes12 days1-87/+203
|
* refactor(backend): improve testability and add tests (NK-6q9nyg)Adam Mathes12 days1-0/+5
|
* Fix TUI content view navigation and interactionAdam Mathes12 days1-23/+21
| | | | | | | | - Integrated viewport.Model for scrollable content view - Fixed 'q' and 'esc' navigation from content view - Added unit tests for content state transitions and rendering - Cleaned up unused TUI delegate code - Increased TUI package coverage to ~70%
* Fix nil-pointer panics in TUI and add unit testsAdam Mathes12 days1-2/+10
| | | | | | | - Initialized list models in NewModel to prevent panic on WindowSizeMsg - Added nil check for selectedFeed in itemsMsg handler - Created tui/tui_test.go with unit tests for state transitions and resizing - Verified all tests pass
* Implement Bubble Tea Terminal UI (TUI)Adam Mathes12 days1-0/+191
- Added Bubble Tea, Lipgloss, and Bubbles dependencies - Implemented TUI package in tui/ for browsing feeds and items - Added --tui flag to main command - Verified build and existing tests