Replies: 1 comment
|
I'm having an issue of the same category that, if I set the value to something outside the slider's range (the use case being the slider is only a convenient input for common values), then the slider clamps the value back and calls the |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hiya, been scouring through the source code but can't seem to find any answers so I figured I'd ask.
The use case is basically a playback slider on an audio element to control the current time.
I am looking to have the slider component only fire events when the user is actually interacting with the slider.
The time value is being updated outside by the playback by the audio element.
I'm trying to make it so when the user starts sliding. The bound time values "disengages" and only actually changes when
onValueCommittedfires.Here's some pseudo code of how I'd like for this to work.
Currently the issue is
draggingwill be set to true every timeplayer.timeupdates since a change to the Slider'svalueprop will causeonValueChangeto fire.Thanks in advanced!
All reactions