Add frame/dataframe controls, tab drag hints, and closable alerts#17
Open
afffe18 wants to merge 1 commit intocodex/2026-04-20_22-45-14-rewrite-backend-with-fastapifrom
Conversation
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.
Motivation
Description
duplicateDataframe,duplicateFrame, andmoveFrameToDataframe, plus UI controls (tab buttons and aSelect+Move framebutton) to trigger them; active frame/dataframe selection is updated after moves. (src/App.tsx)dataframeDropIndex/frameDropIndexand rendering a dashed placeholder element at the hover position while dragging. (src/App.tsx)dataframes[i]._extensions.dummyValuefrom the UI viatoggleDummyValue. (src/App.tsx)✕button, andAdd material colornow usesgetUniqueMaterialKeyto generate unique keys (e.g.new_material,new_material_1). (src/App.tsx)Alertcomponent to acceptchildrensafely; added an inline✕to dismiss notifications. (src/components/ui/alert.tsx,src/App.tsx)openpyxlfirst-row parsing withpandas.read_excel(..., sheet_name=None)to extract sheet columns as dataframe column names, and addedpandastobackend/requirements.txt. (backend/app.py,backend/requirements.txt)uvicorn backend.app:app ...and documented how to call the reference plotter viareference/src/plot_ashby.pyby callingmain(dataframe_config, interactive=False). (README.md)src/App.tsx)Testing
npm run build(Vite/TS build) and the build completed successfully.npm run lint(ESLint) and it completed with no errors after the fix.Codex Task