feat(ui): upgrade ExtensionTableView with TableToolbar, custom SQL filter, and async count calculation - #329
Merged
Conversation
…lter, and async count calculation
9 tasks
ZhuchkaTriplesix
added a commit
that referenced
this pull request
Jul 27, 2026
feat(ui): upgrade ExtensionTableView with TableToolbar, custom SQL filter, and async count calculation
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
Upgrades
ExtensionTableViewwith the universalExtensionTableToolbar, custom SQL filtering (WHERE clause), asynchronous row count calculation (count()), and DDL inspection support.Closes #324
Part of Epic #322
Changes
ExtensionTableToolbar(lib/features/extensions/extension_table_toolbar.dart) following the design ofPostgresTableToolbar. Includes:paginationLabel).db.getObjectMetadata.WHERE clausetext field.ExtensionTableView(lib/features/extensions/extension_table_view.dart):SELECT count(*)/count()runs asynchronously in the background (_fetchCountAsync) after the initial row data page (SELECT * ... LIMIT/OFFSET) loads, eliminating UI freezing on large datasets.WHEREfilters (e.g., id > 100 AND status = 'active') which immediately apply to both page queries and count calculations.Verification
flutter test test/features/extensions/extension_table_toolbar_test.dart(All tests passed).flutter analyzeacross project (No issues found).flutter test(All 813 tests passed).