-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🪟 🎉 Column selection UI #20267
Merged
Merged
🪟 🎉 Column selection UI #20267
Changes from 10 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
c119870
align oss & cloud default feature definition
josephkmh 3e14038
first pass at selecting fields
josephkmh c397048
update selectedFields interface
josephkmh e16d513
Merge branch 'master' into joey/column-selection-ui
josephkmh f9abd59
add column selection for nested fields
josephkmh 49e380c
add column selection UI behind feature flag (experiment)
josephkmh b41d049
identify selected fields by path rather than string
josephkmh 1725714
Merge branch 'master' into joey/column-selection-ui
josephkmh 77a7da0
i18n text
josephkmh bf64645
no column selection by default
josephkmh a9ef2b4
remove comment
josephkmh de4fcdf
simplify code
josephkmh c5ae772
remove space
josephkmh 1d37d90
Merge branch 'master' into joey/column-selection-ui
josephkmh f5694bd
Merge branch 'master' into joey/column-selection-ui
josephkmh a5dff3c
fix merge conflict
josephkmh b089133
Merge branch 'master' into joey/column-selection-ui
josephkmh dda15d6
remove unused FeatureItem
josephkmh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
60 changes: 38 additions & 22 deletions
60
airbyte-webapp/src/components/connection/CatalogTree/FieldHeader.tsx
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A thought: if
onSelectedFieldsUpdate
tookpreviouslySelectedFields
as a second param, instead of justselectedFields
, then the special-case propsonFirstFieldDeselected
andonAllFieldsSelected
could go away and and the fact that those are special cases would be more cleanly scoped to this one file.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point, I think that would indeed be cleaner! As discussed offline, I'll defer this to a follow-up PR