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

ReactSortable options not updating on rerender #185

Open
IlyasArinov opened this issue Sep 28, 2020 · 3 comments
Open

ReactSortable options not updating on rerender #185

IlyasArinov opened this issue Sep 28, 2020 · 3 comments

Comments

@IlyasArinov
Copy link

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

@mehdi-dalil
Copy link

It seems like its an issue with sortablejs, the options we give to the object at initialization are not being updated dynamically

@IlyasArinov
Copy link
Author

IlyasArinov commented Oct 5, 2020

For whoever stumbles upon this, here is the solution:
const key = useMemo(() => some uuid generator, [some props]);
<ReactSortable key={key} ....

@itsmichaeldiego
Copy link

itsmichaeldiego commented Jul 21, 2021

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!

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

No branches or pull requests

3 participants