feat(csv-transformer): API-sourced worker status, global theme fixes, and CSV UI polish#1066
Merged
ct3685 merged 5 commits intoMay 5, 2026
Conversation
…rClient and related components - Simplified CsvTransformerClient by removing the cronEnabled prop, which is no longer needed. - Updated the Page component to reflect this change, ensuring it no longer passes the cronEnabled prop. - Enhanced user experience by directly managing worker status within the CsvTransformer component, providing real-time feedback on background processing status. This refactor streamlines the component's interface and improves maintainability.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
…teraction - Removed redundant color and variant props from the CsvTransformer component to streamline the code. - Introduced custom styling for MuiChip components, ensuring better visual feedback on selection states. - Updated hover and active states for chips to enhance user experience and maintain consistency across light and dark modes. This refactor improves the overall maintainability of the component while enhancing the user interface.
- Updated MuiChip component styles to provide better visual feedback across light and dark modes. - Adjusted background and border colors for various states to ensure consistency and improved user interaction. - Refined typography color settings for better readability based on file presence. This refactor enhances the overall user experience and maintains a cohesive design across the application.
…rast - Updated styling for filled colored chips to ensure labels remain white for contrast. - Clarified comments to specify that outlined colored chips will use the palette color for text, avoiding unnecessary overrides. This refactor enhances the visual consistency and accessibility of the MuiChip component across different color modes.
…and-streamline-CsvTransformerClient-component
ct3685
added a commit
that referenced
this pull request
May 5, 2026
## 🚀 Release: Staging to Production **Release Date:** 2026-05-05 ### Changes in this release - feat(csv-transformer): API-sourced worker status, global theme fixes, and CSV UI polish (#1066) (1a2dd33) - chore(llmchain): drop noisy *****FINAL RESULT***** console output (#1065) (1154e74) - fix(credentials): resolve case-mismatched credential lookups returning 500 (#1063) (e2db107) --- *This PR is automatically created/updated when commits are pushed to staging.* *Merging this PR will trigger the release workflow to create a new GitHub release.* --------- Co-authored-by: Cameron Taylor <50385537+ct3685@users.noreply.github.com>
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
CSV Transformer — Worker Status via API
GET /api/v1/csv-parser/worker-statusendpoint on the Flowise server that exposes whetherENABLE_CSV_RUN_CRONis enabledpackages/server/src/utils/isCsvRunCronEnabled.tsas single source of truth for the flag (used by both cron registration and the new endpoint)CsvTransformer.Client.tsxnow fetches worker status from the API at runtime — the web app no longer needsENABLE_CSV_RUN_CRONin its environment variablescronEnabledprop fromCsvTransformerClientandpage.tsx; banner state is nowloading | enabled | disabled | errordriven by the live API responseGlobal Theme Fixes (
muiOverrides.ts)MuiChip: replaced blanketglassSubtlespread (invisible text in both modes) with solid, mode-aware surface + explicittext.primarylabel; scoped to:not([class*="MuiChip-color"])and:not(.MuiChip-colorDefault)so status chips keep MUI palette colorsMuiButton.containeddark mode: wasglassPrimary=rgba(0,0,0,0.6)(near-invisible); now solid#2196f3with proper hoverMuiPaper,MuiDialog: replacedglassSecondarywith solid surfaces + explicittext.primaryMuiMenu/MuiMenuItem: solid backgrounds +action.hoverhover (wasglassHover= white-on-white in light mode)MuiButton.root: removedglassSubtlespread (was addingbackdropFilter: blurto every button)MuiTabs.root: removedglassSubtle(was adding blur + near-white background)MuiAccordion,MuiAlert: replaced glass spreads with solid surfaces + explicit text colorsMuiBackdrop: removedblur(8px)that was blurring the full page on every dropdown/selectCSV Transformer UI Polish
ProcessCsv.tsx: column selection chips now use solid#2196f3for selected / visible mode-aware grey for unselected (viasxtheme callback); no longer relies onpalette.primary.mainProcessCsv.tsx: AI ProcessorSelectusesMenuPropsto suppress full-page backdrop blur; added "Create new processor…" option that opens CSV marketplace in a new tabProcessCsv.tsx: all navigation buttons (Back,Cancel,Next,Process and Download) use consistentvariant="outlined"stylecolor="primary"(invisible in dark mode) withcolor="text.primary"/color="text.secondary"ProcessingHistory.tsx: DataGrid replaced hardcodedcolor: 'white'withtext.primary/text.secondarypalette tokensparseCsv.ts: strip BOM/zero-width chars from headers; deduplicate column names; exportformatCsvHeaderForUihelper',",') inside JS string literals inProcessCsv.tsx,jlinc-partnership.tsx,webinar-thank-you.tsxTest Plan
ENABLE_CSV_RUN_CRONon the web envflowiseserver build passes (pnpm --filter flowise build)