-
Notifications
You must be signed in to change notification settings - Fork 113
feat(calm-widgets): extend render-interfaces to support related mode #2701
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
rocketstack-matt
merged 6 commits into
finos:main
from
markscott-ms:feat/1600-ignore-connected-interfaces
Jun 21, 2026
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
9aba1cf
feat(calm-widgets): add ignore-connected-interfaces option to block-a…
markscott-ms 4815c7f
docs(calm-widgets): document ignore-connected-interfaces option in RE…
markscott-ms 3a492dd
refactor(calm-widgets): remove unused seedNodes from VisibilityResult
markscott-ms a66e58d
refactor(calm-widgets): replace ignore-connected-interfaces with rend…
markscott-ms 457f707
Merge branch 'main' into feat/1600-ignore-connected-interfaces
markscott-ms decfe32
Merge branch 'feat/1600-ignore-connected-interfaces' of https://githu…
markscott-ms 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 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
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
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
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
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
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
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
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
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
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
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
104 changes: 104 additions & 0 deletions
104
calm-widgets/test-fixtures/block-architecture-widget/render-interfaces-related/context.json
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,104 @@ | ||
| { | ||
| "nodes": [ | ||
| { | ||
| "unique-id": "payment-service", | ||
| "node-type": "service", | ||
| "name": "Payment Service", | ||
| "description": "Processes customer payments", | ||
| "interfaces": [ | ||
| { | ||
| "unique-id": "payment-api", | ||
| "protocol": "HTTPS", | ||
| "port": 8080, | ||
| "path": "/api/v1/payments" | ||
| }, | ||
| { | ||
| "unique-id": "audit-log-iface", | ||
| "protocol": "AMQP", | ||
| "port": 5672, | ||
| "path": "/audit" | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "unique-id": "fraud-service", | ||
| "node-type": "service", | ||
| "name": "Fraud Detection Service", | ||
| "description": "Analyses transactions for fraudulent activity", | ||
| "interfaces": [ | ||
| { | ||
| "unique-id": "fraud-check-api", | ||
| "protocol": "HTTPS", | ||
| "port": 9090, | ||
| "path": "/api/v1/check" | ||
| }, | ||
| { | ||
| "unique-id": "risk-model-iface", | ||
| "protocol": "gRPC", | ||
| "port": 50051, | ||
| "path": "/risk" | ||
| }, | ||
| { | ||
| "unique-id": "score-db-iface", | ||
| "protocol": "JDBC", | ||
| "port": 5432, | ||
| "path": "/scores" | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "unique-id": "notification-service", | ||
| "node-type": "service", | ||
| "name": "Notification Service", | ||
| "description": "Sends alerts and confirmations to customers", | ||
| "interfaces": [ | ||
| { | ||
| "unique-id": "email-iface", | ||
| "protocol": "SMTP", | ||
| "port": 587, | ||
| "path": "/email" | ||
| }, | ||
| { | ||
| "unique-id": "sms-iface", | ||
| "protocol": "HTTPS", | ||
| "port": 443, | ||
| "path": "/sms" | ||
| } | ||
| ] | ||
| } | ||
| ], | ||
| "relationships": [ | ||
| { | ||
| "unique-id": "payment-to-fraud", | ||
| "description": "Payment Service calls Fraud Detection before authorising a transaction", | ||
| "relationship-type": { | ||
| "connects": { | ||
| "source": { | ||
| "node": "payment-service", | ||
| "interfaces": ["payment-api"] | ||
| }, | ||
| "destination": { | ||
| "node": "fraud-service", | ||
| "interfaces": ["fraud-check-api"] | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| { | ||
| "unique-id": "payment-to-notification", | ||
| "description": "Payment Service triggers notifications on transaction events", | ||
| "relationship-type": { | ||
| "connects": { | ||
| "source": { | ||
| "node": "payment-service", | ||
| "interfaces": ["payment-api"] | ||
| }, | ||
| "destination": { | ||
| "node": "notification-service", | ||
| "interfaces": ["email-iface"] | ||
| } | ||
| } | ||
| } | ||
| } | ||
| ] | ||
| } |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.