UWFlow / rmc

Flow is a website that lets you plan courses with friends.
https://uwflow.com
MIT License
233 stars 73 forks source link

Make ratings bar green and red #301

Closed JGulbronson closed 6 years ago

JGulbronson commented 7 years ago

Not sure how I feel about this one.. I've had it requested though, so figured I'd put it up and see what people think. Especially makes it clear when a course has 0%.

screen shot 2016-11-12 at 8 08 13 pm
bhamodi commented 7 years ago

I think it looks good!

arumoy-shome commented 7 years ago

In my humble opinion, I don't think the red adds any value. Rather, to me it looks more convoluted and confuses the intent of the bar. For example, looking at the useful bar, is 51% useful a good thing or a bad thing? What I would suggest instead would be to drop two colours at the same time and instead make red appear until a threshold (say 25%). In code it would look something like this:

// in server/static/js/ratings.js

let color = "bar-success"

if (percent < 25) {
  color = "bar-danger"
}

// add color class to your element

Apologies for my broken Javascript but you get the point. Thoughts?

jlfwong commented 6 years ago

@JGulbronson Can you either merge or close this please?