feat(frontend): add Drop Missing Values (DropNa) transformation UI#256
Open
dncoder14 wants to merge 1 commit intoc2siorg:mainfrom
Open
feat(frontend): add Drop Missing Values (DropNa) transformation UI#256dncoder14 wants to merge 1 commit intoc2siorg:mainfrom
dncoder14 wants to merge 1 commit intoc2siorg:mainfrom
Conversation
Adds the DropNa transformation form to the data grid menu, calling the existing backend /transform endpoint. - Adds DROP_NA to operationTypes.js - Creates DropNaForm.jsx with radio toggle for 'All columns' vs 'Specific columns' - Wires up visibility state and renders form in MenuNavbar.jsx
PR ReviewFrontend
This comment updates automatically on each push. |
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.
Description
Adds the "Drop Missing Values" feature to the data transformation menu. The backend already supports the
dropNaoperation_type, so this connects perfectly to the existing/transformAPI route seamlessly matching exactly howdrop_duplicateoperates.Changes included:
DROP_NA = "dropNa"tooperationTypes.js.DropNaForm.jsxmatching the existing menu styling (Tailwind CSS, error handling hook, structure).columns: nullvscolumns: stringpayload condition required by the backend.DropNaFormtoMenuNavbar.jsxwith full state hook implementations for rendering and visibility.Fixes #(issue number)
Type of Change
How Has This Been Tested?
The new form respects the established
transformProject()API wrapper architecture. Form payload dynamically adjustsdrop_na_paramsmatching the exact schema definition validated in existing backend tests.Screenshots (if applicable)
N/A
Checklist