feat: Create Graph Visualization Module and Library Settings#2
Merged
Conversation
- Added the graph-visualizer multi-platform module to the project and completed the settings/dependency linkage. - Cleaned up the Gradle configuration so the module can be referenced from composeApp. - Added ignore rules to prevent kotlin-js-store build artifacts from being tracked in version control. #1
- Implemented the GraphVisualizer/SimpleGraphVisualizer APIs and option presets. - Added a force-directed layout, node/edge rendering, and selection/zoom/pan interactions. - Supports nodeInfo fallback, style customization, and behavior controlled by animation flags. #1
- Added validation tests for graph model creation, signatures, and edge handling. - Added tests covering layout convergence, determinism, collision avoidance, and scale calculations. - Added tests verifying behavior for styles, selection state, and interaction state. #1
- Added sample graph data, styles, and screen components. - Switched the app entry screen to VisualizerSampleScreen. - The sample provides demo interactions such as node selection, edge highlighting, and toggling label sizes. #1
- Add a CI workflow to run build and tests when a PR is opened against main. - Add a CD workflow to run Release Please on merge to main, generating the changelog and a release PR. #1
- add GitHub Pages workflow (.github/workflows/pages-web.yml) - build web bundle with :composeApp:composeCompatibilityBrowserDistribution - publish composeWebCompatibility production output as Pages artifact #1
- Added a README with project overview, setup instructions, usage examples, and contribution guidelines. - Added a LICENSE file to clearly define usage and distribution terms. #1
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
resolved #1
Built a graph visualization module and set up an open-source release pipeline, including CI/CD and project documentation (README, LICENSE).
Changes
Library Core
CI/CD
-Set up CD using release-please
Docs
Impact