-
-
Notifications
You must be signed in to change notification settings - Fork 9
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
all{componentName} method for each component type #109
Comments
cc: @jonaslagoni @smoya |
all{componentName}
method for each component type
This issue has been automatically marked as stale because it has not had recent activity 😴 It will be closed in 120 days if no further activity occurs. To unstale this issue, add a comment with a detailed explanation. There can be many reasons why some specific issue has no activity. The most probable cause is lack of time, not lack of interest. AsyncAPI Initiative is a Linux Foundation project not owned by a single for-profit company. It is a community-driven initiative ruled under open governance model. Let us figure out together how to push this issue forward. Connect with us through one of many communication channels we established here. Thank you for your patience ❤️ |
Transferred this issue to the parser-api repository as this is a decision on the API side. BTW, I don't see a problem adding those new methods to the root of the document.
@KhudaDad414 are you ok taking this? cc @jonaslagoni |
Sure. I am going to open the PRs. |
Thinking if it would make sense to additionally add mirror methods to those new Not pretty sure if it has a use case, just trying to be consistent, but no strong feelings. WDYT @jonaslagoni ? |
Use-case over everything IMO, cause you are forcing more work across parsers (in the future), so it has to have reason. |
@smoya PRs are ready for review: asyncapi/parser-js#969, #111 🙇 |
Agree. cc @KhudaDad414 |
It would make sense to have those methods for all of the components in the root. we already have
regarding the use case, it would be useful at least for us(in Optimizer). we are currently grouping them based on their jsonpath. so I am sold.
should I go ahead and add them as well? |
Reason/Context
In our Optimizer, the current design requires us to manually locate each component in a central location. This approach essentially replicates what the parser does when navigating between AsyncAPI versions, indicating that it's far from ideal.
However, the parser is capable of providing all the components the Optimizer requires for its logic without necessitating duplication. Certain existing functions significantly aid this process, and we could further streamline it by introducing additional functions for different component types.
Description
In order to improve this situation without making drastic changes, I propose that we introduce an
all{componentName}
function for every component that can be declared in thecomponents
section.The
Document
object of the parser already supports the following methods:To optimize our process, we need to add the following methods:
These enhancements would ensure we effectively leverage the parser's capabilities by Optimizer and maybe other tools as well.
The text was updated successfully, but these errors were encountered: