Skip to content
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

Merged
merged 2 commits into from
Jul 31, 2017
Merged

Slider: min / max value fix #262

merged 2 commits into from
Jul 31, 2017

Conversation

bitpshr
Copy link
Member

@bitpshr bitpshr commented Jul 21, 2017

Type: bug

The following has been addressed in the PR:

  • There is a related issue
  • All code matches the style guide
  • Unit or Functional tests are included in the PR

Description:

This PR updates the Slider component so it never renders a value higher than its max or lower than its min.

Resolves #259

@bitpshr bitpshr requested a review from smhigley July 21, 2017 19:37
@codecov
Copy link

codecov bot commented Jul 21, 2017

Codecov Report

Merging #262 into master will increase coverage by <.01%.
The diff coverage is 100%.

Impacted file tree graph

@@            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
Impacted Files Coverage Δ
src/slider/Slider.ts 98.27% <100%> (+0.06%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 551a3fd...d223e32. Read the comment docs.

value = min
} = this.properties;

value = value > max ? max : value;
value = value < min ? min : value;
Copy link
Contributor

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?

Copy link
Member

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)
}

Copy link
Member Author

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.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cool :)

@dylans dylans added this to the 2017.07 milestone Jul 29, 2017
@bitpshr bitpshr merged commit c1d56aa into dojo:master Jul 31, 2017
@bitpshr bitpshr deleted the slider-min-max branch July 31, 2017 14:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants