Gui workflow - #74
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request introduces a comprehensive web-based GUI editor for OpenUTM scenario workflows. The implementation adds a complete React/TypeScript frontend with visual graph editing capabilities, drag-and-drop scenario building, real-time execution monitoring, and configuration management.
Changes:
- Complete web-editor frontend application with React 19, TypeScript, and Vite
- Visual DAG editor for scenario design using @xyflow/react
- Support for groups, loops, conditions, and background tasks
- Comprehensive test suite with Vitest and React Testing Library
Reviewed changes
Copilot reviewed 165 out of 169 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| web-editor/vite.config.ts | Vite configuration with API proxy and test setup |
| web-editor/tsconfig.*.json | TypeScript configurations for app and build tools |
| web-editor/package.json | Dependencies and build scripts |
| web-editor/src/types/scenario.ts | Core type definitions for scenarios and operations |
| web-editor/src/utils/scenarioConversion.ts | YAML-to-graph and graph-to-YAML conversion logic |
| web-editor/src/components/ScenarioEditor.tsx | Main editor component with graph management |
| web-editor/src/components/ScenarioEditor/*.tsx | Sub-components for toolbox, properties, panels |
| web-editor/src/hooks/*.ts | Custom hooks for graph, runner, file operations |
| web-editor/src/styles/*.css | CSS modules for theming and component styling |
| tests/test_*.py | Python test files for backend integration |
| scenarios/*.yaml | Example scenario definitions |
| Documentation | README files explaining features and architecture |
Comments suppressed due to low confidence (1)
src/openutm_verification/core/clients/flight_blender/flight_blender_client.py:728
- Nested for statement uses loop variable 'message' of enclosing for statement.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
This pull request introduces a comprehensive web-based GUI editor for OpenUTM scenario workflows. The implementation adds a complete React/TypeScript frontend with visual graph editing capabilities, drag-and-drop scenario building, real-time execution monitoring, and configuration management.
Changes: