We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi! For some reason whenever I pass dynamic props that depend on state to ReactSortable component, the component options do not update.
Please check the sandbox: https://codesandbox.io/s/sortable-js-bug-4gpsd
As you can see initially ReactSortable gets passed IsDisabled = false, and then on first render it updates to true, but you can still sort.
Expected behavior For options to update according to props.
Versions: react-sortablejs = 6.0.0 react = 16.13.1
Please check the sandbox
https://codesandbox.io/s/sortable-js-bug-4gpsd
The text was updated successfully, but these errors were encountered:
It seems like its an issue with sortablejs, the options we give to the object at initialization are not being updated dynamically
Sorry, something went wrong.
For whoever stumbles upon this, here is the solution: const key = useMemo(() => some uuid generator, [some props]); <ReactSortable key={key} ....
const key = useMemo(() => some uuid generator, [some props]);
<ReactSortable key={key} ....
I am having the same issue, the fix provided by @IlyasArinov works, but there should be a better way or a proper fix for this!
No branches or pull requests
Hi! For some reason whenever I pass dynamic props that depend on state to ReactSortable component, the component options do not update.
Please check the sandbox: https://codesandbox.io/s/sortable-js-bug-4gpsd
As you can see initially ReactSortable gets passed IsDisabled = false, and then on first render it updates to true, but you can still sort.
Expected behavior
For options to update according to props.
Versions:
react-sortablejs = 6.0.0
react = 16.13.1
Please check the sandbox
https://codesandbox.io/s/sortable-js-bug-4gpsd
The text was updated successfully, but these errors were encountered: