-
Notifications
You must be signed in to change notification settings - Fork 323
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
Virtual Component Groups filtered by completion IDs #3570
Merged
Merged
Changes from 61 commits
Commits
Show all changes
63 commits
Select commit
Hold shift + click to select a range
b8727f7
WIP todo
akavel 07c0d71
WIP add components_by_id field
akavel b60c77d
WIP another TODO
akavel 50d9f27
WIP store component IDs
akavel ee4d725
WIP filtered_favorites()
akavel 82aab62
WIP filter_favorites()
akavel 6d3dfde
CLEANUP some comments
akavel 254fd0e
sketch of test
akavel 61933fa
add test
akavel d078009
cargo fmt
akavel 226f18a
retain_components_by_id
akavel 760b54a
retain_favorites_with_ids_passed_to_extend
akavel cc63b02
CLEANUP a comment
akavel 13fab9b
renames in test
akavel 964c654
tweak comment
akavel ab8f406
add test case in wasm test
akavel 998ad8b
fix clippy
akavel e74d211
tweak comment
akavel fcd8942
better test + docs
akavel 72e3828
Merge remote-tracking branch 'origin/develop' into wip/akavel/filter-…
akavel 9b60a90
DEBUG
akavel 8282b15
WIP set_initial_entries_order
akavel 5961b13
WIP matched_items
akavel 5c0f2ed
Revert "DEBUG"
akavel 70f9352
WIP with_initial_entries_order_filtered
akavel c64022f
cleanup & fmt
akavel edddc81
rename with_... func
akavel 2e28fd3
WIP doc for with_...
akavel bfedb83
doc for with_...
akavel c59c6a9
review: improve docs
akavel fafff46
tweak doc
akavel 62ebf9b
When building...
akavel d7299c3
fix layoing
akavel e2450bf
link component group in docs
akavel ea97bbb
cargo fmt
akavel 6e93a34
review: WIP set_favorites -> set_structure_of_favorites
akavel 732b343
review: WIP rename extend to extend_list_and_enable_matching_favorites
akavel a41e095
review: WIP favorites_structure, favorites_to_enable
akavel ee5d332
WIP add favs to all_components only when building
akavel 9130830
WIP build_favorites_and_add_to_all_components
akavel 0212860
WIP further rename in build_favs...
akavel 4ae4fea
WIP rename set_grouping_and_order_of_favs
akavel e21eb89
WIP start writing module doc
akavel 52233b1
Groups...by name
akavel a0451f1
Components in each Group are ordered...
akavel 72a75b5
field grouping_and_order_of_favorites
akavel 34daefc
rename extend_list_and_enable_favs_with_ids
akavel 1838258
WIP more module docs
akavel 358113e
WIP cleanup docs step 1
akavel fa7e5d7
tweak doc to explain purpose of builder
akavel a6e0de3
move and doc favorites_to_enable
akavel 7379f7c
allowed_favorites
akavel 2728721
extend_list_and_allow_...
akavel d5efc8a
shorten List doc + update extend_... doc
akavel e16fc70
shorten doc of build() and mention empty groups in module doc
akavel 3de3d8a
WIP retain_entries
akavel ddb1e7d
Group::retain_entries
akavel 7aceafa
tweak method docs to not mention other methods
akavel 6c241ea
cargo fmt
akavel d7495db
WIP tweaking build_favorites...
akavel 547be3b
shorten & cleanup build_favorites_...
akavel 79afbd7
Merge branch 'develop' into wip/akavel/filter-favs-by-this-182661634
mergify[bot] 4177173
Merge branch 'develop' into wip/akavel/filter-favs-by-this-182661634
mergify[bot] 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
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
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.
Why this is needed?
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.
To allow the use of the
Rc::unwrap_or_clone
function.