-
Notifications
You must be signed in to change notification settings - Fork 10
refactor(networks): Refactor visualization suite to enable download of PNG files #173
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
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
60b761b
visualization not appearing for some reason
tonywu1999 a0cd3fd
find a way to provide new visualization suite
tonywu1999 fc5d7e3
remove shiny legend
tonywu1999 6647703
remove cytoscape dependencies
tonywu1999 420e21a
event handlers work super well
tonywu1999 cf68cfc
remove generate cytoscape config code
tonywu1999 1571ab2
remove code for opening urls
tonywu1999 b2a44ee
fix edge table
tonywu1999 4274365
fix download analysis code
tonywu1999 cd5dcbd
fix unit tests
tonywu1999 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 was deleted.
Oops, something went wrong.
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.
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.
Persist rendered network data to keep click highlighting in sync.
output$networkis rendered from a snapshot created on Display Network, but the click handlers readrenderNetwork()(live inputs). If inputs change after rendering, edge/node clicks can map against a different dataset than what is shown.💡 Suggested fix (cache displayed network snapshot and reuse it in click observers)
Also applies to: 612-627
🤖 Prompt for AI Agents