feat(webapp): Connection list view refresh#5776
Closed
agusayerza wants to merge 2 commits intomasterfrom
Closed
Conversation
Add hasPausedSyncs field to the connections list API response. Instead of fetching all syncs for the page's connections and querying orchestrator for each state, we now reverse the lookup: ask orchestrator for all PAUSED schedules in the environment first (fast path returns immediately when nothing is paused), then resolve only those sync IDs back to connection IDs. - Add partial index (name) WHERE state = 'PAUSED' on schedules table - Extend scheduler/orchestrator search to support namePrefix + state - Add Orchestrator.getPausedSyncsByEnvironment() - Add getSyncsByIds() to sync service - Add hasPausedSyncs to ApiConnectionSimple type
Refresh the connections list UI with improved filtering and status indicators. - Replace MultiSelect with new Combobox component (single + multi-select) - Add granular Status filter: OK, Error, Auth error, Sync error, Paused syncs - Status filter persisted in URL query params - Show hasPausedSyncs indicator per connection row - Integration filter now shows logos and "Add integration" footer CTA - Rename StatusCircleWithIcon → StatusWithIcon with redesigned style - Add neutral feedback color CSS variables - Fix MultiSelect: strict equality, remove duplicate check icon # Conflicts: # packages/webapp/src/pages/Connection/List.tsx
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.
Refresh the connection list view with its new design
https://www.figma.com/design/2MyZwo8A4D2XRIOhXL3cZ8/CURRENT-%F0%9F%90%BA-Design-Sytem---Product?node-id=9094-77970&m=dev
Requires #5699 to be merged
NAN-5076