-
Notifications
You must be signed in to change notification settings - Fork 427
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
Incorrect value decremented when step > minValue for counter Input #2034
Comments
Thanks for opening your first issue! 👋 |
Thanks @rk-sf for such a detailed issue. I'll add this to our backlog. |
Been a while since I touched this component, but after some investigation I realized this is actually as-designed (though I admit it does seem weird). When I originally added the counter feature to input, I made sure to have it mirror the exact behavior of an HTML input type="number" element. The behavior reported in this issue is actually consistent with how it's handled in the browser, as can be seen in this fiddle: https://jsfiddle.net/sxj6kpm8/ Basically, when handling minimum values that aren't multiples of the step size the browser decides to adjust the integer value immediately upon increment or decrement to be a multiple of the minimum value. Weirdly enough, it doesn't do anything at all if the maximum value isn't a multiple of the step size. This isn't the behavior I'd likely have chosen, but it's consistent across all browsers so I made sure this component was in alignment. Even though this wasn't an actual bug due to odd browser implementation of inputs, good eye for pointing this out @rk-sf! Perhaps I should add a comment in the source code to highlight this peculiarity... what do you think @interactivellama? |
Yes, please highlight this quirk for future consumers. I suggest adding it to the component overview comment above the class definition. |
@kevinparkerson The counter variant is not a controlled input, it's uncontrolled. If we had an |
@rk-sf If we added a callback to override the internal logic of the control, would you use the counter? Pseudo-code of proposal:
|
@interactivellama I definitely would have used such an event if it were available at the time. Thanks for looking into it everyone! |
@interactivellama I like that idea, allows for custom behavior if the default is not sufficient 👍 |
Summary:
When counter input set to max value, then decremented with step > minValue, first decrement is
maxValue - (step - minValue)
instead of justmaxValue - step
.eg.
maxValue=1000
minValue=2
step=100
value=1000
decrement()
// value == 902 == 1000 - (100 - 2) == maxValue - (step - minValue)
I'll likely not be working on the issue.
Reproducible from the example page: https://react.lightningdesignsystem.com/components/inputs/
I'll go ahead and add a ticket
The text was updated successfully, but these errors were encountered: