1034 initial design for autocomplete checklist#1113
Open
NexInfinite wants to merge 18 commits intomainfrom
Open
1034 initial design for autocomplete checklist#1113NexInfinite wants to merge 18 commits intomainfrom
NexInfinite wants to merge 18 commits intomainfrom
Conversation
…hecklist items are auto updated
…, and accel healthy auto check list options
Contributor
There was a problem hiding this comment.
Pull request overview
Introduces an initial framework for “auto-completing” pre-flight checklist items by binding checklist entries to live drone/telemetry state, along with a revamped checklist editing UI.
Changes:
- Added a central registry of auto-binding keys/options and wired new auto-binding update paths into Redux.
- Replaced the rich-text (HTML) checklist editor with a structured item editor that supports selecting an auto-completion binding per item.
- Updated checklist rendering to account for auto-bound (non-manual) items and removed the legacy HTML parsing helper.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| gcs/src/redux/slices/checklistSlice.js | Adds reducers/extraReducers to apply auto-binding updates to checklist item checked state. |
| gcs/src/redux/middleware/socketMiddleware.js | Dispatches an auto-binding update for EKF “all green” based on computed EKF status. |
| gcs/src/helpers/checklistAutoBindings.js | Introduces a centralized binding key/label registry and UI options list. |
| gcs/src/helpers/checkList.js | Removes legacy HTML→checklist parsing helper (no longer used). |
| gcs/src/components/dashboard/tabsSectionTabs/preFlightChecklistSection.jsx | Seeds new checklists with an initial item that has a state binding. |
| gcs/src/components/dashboard/preFlightChecklist/checkListEdit.jsx | New checklist editor UI for item text + optional auto-binding selection. |
| gcs/src/components/dashboard/preFlightChecklist/checkListArea.jsx | Updates checklist display/behavior for auto-bound items and removes HTML-based mapping. |
| .vscode/settings.json | Adds “hdop” to workspace spell-check dictionary. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…-for-autocomplete-checklist' into 1034-initial-design-for-autocomplete-checklist
Contributor
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 8 out of 8 changed files in this pull request and generated 4 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…-for-autocomplete-checklist' into 1034-initial-design-for-autocomplete-checklist
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.
Added the initial design framework for auto completing checklist along with some basic checklist options and a new UI for the checklist creation.