refactor(tui): split app.rs and views.rs into modular components#65
Merged
daisuke8000 merged 1 commit intomainfrom Dec 20, 2025
Merged
refactor(tui): split app.rs and views.rs into modular components#65daisuke8000 merged 1 commit intomainfrom
daisuke8000 merged 1 commit intomainfrom
Conversation
Split large files for better readability and maintainability: app.rs (1165 lines) → app/ directory: - mod.rs: App struct, initialization, and rendering - action_handler.rs: AppAction event processing - data_handler.rs: Async data loading with tokio tasks - input_handler.rs: Keyboard event processing views.rs (1004 lines) → views/ directory: - mod.rs: Module exports - welcome.rs: Welcome screen and placeholder - lists.rs: Questions, Collections, Databases list views - drill_down.rs: Collection→Questions, DB→Schemas→Tables - results.rs: Query result and table preview rendering content/mod.rs additional splits: - types.rs: ContentView, InputMode, SortOrder, QueryResultData - navigation.rs: Navigation stack and view transitions - selection.rs: Selection navigation for each view type - search.rs: Search mode handling - sort.rs: Sort modal and index-based sorting - filter.rs: Filter modal and filtering - result_search.rs: All-column search in results - pagination.rs: Pagination and scrolling - key_handler.rs: Key event handling per view All 32 tests pass. No functional changes.
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.
Summary
app.rs(1165 lines) intoapp/directory with 4 modulesviews.rs(1004 lines) intoviews/directory with 4 modulescontent/mod.rsfunctionality into 9 modulesChanges
app/ directory
views/ directory
content/ additional modules
Test plan