-
Notifications
You must be signed in to change notification settings - Fork 64
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
Slider: min / max value fix #262
Conversation
Codecov Report
@@ Coverage Diff @@
## master #262 +/- ##
==========================================
+ Coverage 98.78% 98.78% +<.01%
==========================================
Files 24 24
Lines 1476 1478 +2
Branches 434 436 +2
==========================================
+ Hits 1458 1460 +2
Partials 18 18
Continue to review full report at Codecov.
|
value = min | ||
} = this.properties; | ||
|
||
value = value > max ? max : value; | ||
value = value < min ? min : value; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't a suggestion so much as a question: my initial instinct is towards Math.max(value, min)
and Math.min(value, max)
for readability. Just curious if there's a rationale for one vs. the other apart from personal preference?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I used the following previously (taken from npm/clamp
).
function clamp(value, min, max) {
return min < max
? (value < min ? min : value > max ? max : value)
: (value < max ? max : value > min ? min : value)
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@smhigley just preference. Even if I used Math.max
and Math.min
, I'd want to check that the value
was actually greater than the max
or less than the min
before calling them, and at that point, I might as well just use the max
and min
directly to avoid unnecessary indirection of a Math
method.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cool :)
Type: bug
The following has been addressed in the PR:
Description:
This PR updates the Slider component so it never renders a value higher than its
max
or lower than itsmin
.Resolves #259