Description
I'm copy the example from here and can't get the search focus/highlight working.
I debug the code and see that getDerivedStateFromProps
is called a first time ( after pass the searchQuery={text}
) and it does .search()
and return the searchMatches
, but it is called again and in this second time it just returns the instanceProps
and the prevState that came in this second time has the searchMatches
empty.
I have the same dependencies like the sandbox, react/react-dom 16.9.0-alpha-0 and I also try with the previous one 16.8.6 but can't get it working.
I also literally copy the codesandbox.io code and put in in the main of my app, but it didn't work.
I can't reproduce or debug the state/error in https://codesandbox.io
If someone could give some idea or point me in some direction to understand this I will really appreciate it.