-
Notifications
You must be signed in to change notification settings - Fork 6.8k
feat(cdk-experimental/menu): Use DI instead of CdkMenuPanel to connect menus #24558
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
Merged
Conversation
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
65ff045
to
c5fa21a
Compare
c5fa21a
to
ce9e8fe
Compare
mmalerba
commented
Mar 10, 2022
crisbeto
approved these changes
Mar 14, 2022
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.
LGTM
0680658
to
e989930
Compare
e989930
to
36d3282
Compare
36d3282
to
f780d1a
Compare
efda395
to
c01a543
Compare
forsti0506
pushed a commit
to forsti0506/components
that referenced
this pull request
Apr 3, 2022
…t menus (angular#24558) * feat(cdk-experimental/menu): Use DI instead of CdkMenuPanel to connect menus * fixup! feat(cdk-experimental/menu): Use DI instead of CdkMenuPanel to connect menus * fixup! feat(cdk-experimental/menu): Use DI instead of CdkMenuPanel to connect menus
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
action: merge
The PR is ready for merge by the caretaker
target: major
This PR is targeted for the next major release
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.
This PR aims to simplify the API by eliminating
MenuPanel
, which was a directive that existed purely to glue together other components and directives. Specifically it was used to pass along theMenuStack
and to associate aMenu
with the trigger that opened it.In the reworked API,
MenuStack
becomes injectable and we create a new base class for all menu triggers,MenuTrigger
that is also injectable. The new injectables work as follows:MenuTrigger
provide bothMenuStack
andMenuTrigger
to anyMenu
they openMenu
injects an optionalMenuStack
andMenuTrigger
Menu
registers with its injectedMenuStack
andMenuTrigger
atngOnInit