-
Notifications
You must be signed in to change notification settings - Fork 41
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
Cleaning up the dashboard cruft + addressing the current issues with the dashboard #984
Comments
Updated original post, shifting json form migration to #997 instead |
Updated original post, assigning lower priority to showing predicted length of scheduled task, as it can vary wildly depending on which robot gets assigned the task, and there would be follow-up difficulties of
I would actually suggest that we make the length of execution a part of the schedule form, with a default value of the current 45 minutes, and let the users assign more appropriate values themselves. This will also help resolve the UX issue of shorter schedules (e.g. 5 minutes), where nothing can be read from the schedule event as the event box is too small, which gets increasingly bad if users clutter a lot of short scheduled tasks together. |
The length of a scheduled task is just the estimated length, it doesn't have to be very accurate. Making the user set an expected length is a possible solution. As for the user setting very short 5min schedules, if the calendar library doesn't handle that, then I guess we can consider making a PR to improve it. Google calendar for example has a minimal size. |
The library handles it properly without issue, my concern is that of readability at first glance of the schedule calendar where it is just littered with little blocks with no texts (same as google calendar if we cramp a lot of small events), I believe we should just let users configure the length, since if there is a UX issue, they can set a longer time for readability on their own |
Before proceeding, is there an existing issue or discussion for this?
Description
Throughout the last few months, there have been many changes made to the dashboard specifically catered certain scenarios (e.g. There are many hacks put in so that things render properly on very specific devices). There are also many areas of the dashboard that is lacking and can be improved.
- [ ] Remove reliance on hard coded task forms. Current plan is to introduce something on top of a task, called a "mission". A mission definition will include the inputs, a ui schema and a json document with json reference that defines how to convert the inputs into a RMF task. This conversion will be done by the api-server and the frontend will only work with missions.react-components
but obviously it has failed. The new approach is to combinermf-auth
,react-components
anddashboard
into the one package. Instead of focusing on flexible, unopinionated components, it will focus on simple and opinionated components. Meaning that instead of having components that takes data and callbacks from props, they will manage their own data and actions.The text was updated successfully, but these errors were encountered: