-
Notifications
You must be signed in to change notification settings - Fork 3.2k
feat: FIT-976: [FSM UI] Data Manager State Column #8807
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for label-studio-docs-new-theme canceled.
|
✅ Deploy Preview for label-studio-playground ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for label-studio-storybook ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for heartex-docs canceled.
|
Codecov Report✅ All modified and coverable lines are covered by tests.
Additional details and impacted files@@ Coverage Diff @@
## develop #8807 +/- ##
===========================================
- Coverage 67.70% 60.04% -7.67%
===========================================
Files 806 553 -253
Lines 62093 38986 -23107
Branches 10328 10328
===========================================
- Hits 42043 23408 -18635
+ Misses 20047 15575 -4472
Partials 3 3
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This pull request introduces a new
TaskStatecell view for displaying task state information in the data manager UI. The main focus is on providing a user-friendly, color-coded badge representation of task states, complete with tooltips and consistent styling. Additionally, the new cell view is integrated into the data manager's column types and filter system. There is also a minor cleanup of a debug log in thePeopleListcomponent.Task State Cell View Implementation and Integration:
TaskStatecell view inTaskState.jsxthat displays task states as color-coded badges with human-readable labels and tooltips, using a 4-color system and Tailwind CSS classes for styling. (web/libs/datamanager/src/components/CellViews/TaskState.jsx)TaskStatecell view in the cell views index for use throughout the application. (web/libs/datamanager/src/components/CellViews/index.js)TaskStateas a valid column type in the data manager's tab column store. (web/libs/datamanager/src/stores/Tabs/tab_column.jsx)TaskStatecolumn type by mapping it to the string filter in the filters index. (web/libs/datamanager/src/components/Filters/types/index.js)Minor Cleanup:
PeopleListcomponent for cleaner output. (web/apps/labelstudio/src/pages/Organization/PeoplePage/PeopleList.jsx)