Skip to content
Advertisement

useEffect doesn’t fire when data change

I created a table with filter. every thing worked well. Later on, I wanted to change the filters from material ui to Core ui. I created one filter and tried to test it before moving. But it didn’t work. The problem that useEffect doesn’t fire no matter what. I even tried to put variable x and increment it when a click happen and put it as arguement in useEffect. but nothing happen.

function renderTableData(will render my table every time I pick a filter) function onSiteChange(a function trigger when I pick a filter) function UpdateTableData (will feed my table for the 1st time)

thank you

JavaScript

Advertisement

Answer

You haven’t used any state, or change states or props which are not causing re-render and useEffect acordingly

You will need to have yourdataFiltred and dataSiteFiltred store in a state then update it in order to cause re-rendering/useEffect.

Something like this:

JavaScript

and update your state like this:

JavaScript

useEffect only accept one dependency array

So if you want to watch both arrays do this:

JavaScript

In case it does not activate useEffect after array change, you could consider use Array.length

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement