jena
jena copied to clipboard
Improve the upload progress indication bar color for in-progress
Version
4.6.0-SNAPSHOT
Feature
From: https://github.com/apache/jena/pull/1307#issuecomment-1202252555
At the moment the upload is handled with a Vue component. It works very well, and is highly customizable. The default behavior for progress indication is as follows:
- No status
- After a file is selected it displays the file name
- After the upload now button is clicked a yellow bar is filled as the upload takes place
- Once the upload hits 100% it turns green and after a few ms's (probably updating DOM or waiting for DOM updates?) the text appears with the amount of data uploaded
The issue is in the step 3, where the orange-y color can be perceived as an indication for warning or concern. I think we use this color in other places with that meaning too.
We can displayed a striped bar, a blinking bar, use a lighter-green, etc. There are probably other ways to display it to the user in a less confusing way.
Are you interested in contributing a solution yourself?
Yes