Thanks
I get Revision nil
when using fulcro-inspect
- this only happens when devtools
is already open. If i close it and reopen it and then click on fulcro inspect
tab, i can see the app db
data. I tried reinstalling the extension and restarting the server, but i get the same issue every time including on two different systems. I'm using Fulcro inspect 3.0.2
and fulcro version 3.4.3
. Reading earlier threads, I've checked that third party cookies
are enabled and also ad blockers
are disabled on the page.
@reshef.mann Are you using Fulcro version 3.4.2+? The latest Fulcro Inspect requires that to work.
@henrik I'm using fulcro version 3.4.3
and fulcro inspect version 3.0.2
and see the same issue.
@dionysius.almeida The issue is strange because Fulcro Inspect is working fine for me... Make sure your Chrome version is up to date as well. Try setting "Site access" to "On Click" in your Fulcro Inspect extension settings. This way, when you use Fulcro Inspect, you need to click on the Fulcro Inspect extension icon to "activate" it. From your screenshot, you should click on the puzzle icon towards the right end of your navigation bar, then click on "Fulcro Inspect". Hope that manually turning on Fulcro Inspect can solve your issue of it not working all the time. The bright side is that you could still get it to work somehow, despite the workaround (i.e. closing and opening it again). Hope you can find a solution. P.S. You @ a different person, not me. I am @hk9861.
@hk9861 Thank you for your help. Yes I did @ a different person đ. I did change it to "`On Click`" but it's the same result. I guess I will have to live with the closing and opening developer tools
for now.
@hk9861 Thanks! I was indeed using and older version (I cloned the fulcro template). It works fine now.
Any further updates on this? Iâm not able to reproduce on MacOS. I just updated all deps on the template and reinstalled from Chrome store to be sure. I see no problems.
@tony.kay This matter was interesting so I took some time to investigate. Based on the screenshot provided by @dionysius.almeida, I tried out the same piece of demo codes under chapter 3.9.1 in the Fulcro book. The issue does exist for this particular demo. However, Fulcro Inspect works fine in other settings, like the latest Fulcro RAD Demo which I just checked. A video is worth a thousand words, so I have prepared the following video to show the strange behaviour. The same behaviour can also be observed when running the codes in a workspace. Also note that after getting "Revision nil", if you send any transaction, Fulcro Inspect springs up properly again. Hope this is helpful in the debugging process.
P.S. The console error message is the same as stated by @reshef.mann above. So, it might be worth noting that the error message in this issue is the same as the one caused by not running Fulcro 3.4.2+. Error message points to: [fulcro.inspect.chrome.devtool.main:176] - Something was nil (anonymous) @ main.js:4081 .
Thanks a lot @hk9861. This is a very minor issue that has to do with how Inspect works now. The older inspect used to send every database delta but as a diff. This was a lot of overhead, and would also get out of sync. The new version asks for diffs based on what it already has, and the UI just sends revision numbers. So, at each swap on the state atom the UI is sending âI now have revision n+1â, to which Inspect responds by looking in the history of what it has (I have nothing) and sends a message âI need all of revision n+1". Startup is a bit of a conundrum, because the app has to send a connect message, but if Inspect isnât running when the app starts, then there is nothing to talk to. Thus, when you open inspect it is just waiting for an app to âappearâ. Remember: you can embed 20 apps on a single page. I guess each app could poll for inspect if it hasnât reached it, but simple interacting with the app âfixes itâ, because then the app knows to try to talk to Inspect. Iâm sure this could be made better, but I donât currently have the time to work on it, test it, and then do the hour of deployments stuff to get it out.
It really should work if you open the app with Inspect open, so that is a minor bug, but just interacting with the app should âwake it upâ I think, no?
Is the latest inspector version expected to work at https://book.fulcrologic.com/ at the moment? I seem to get "revision: nil" no matter what i try.
Seems like the book is running version 3.0.8, so i assume that's a no then?
That was it. Installed an older version of inspect, and now it works fine. https://github.com/fulcrologic/fulcro-developer-guide/pull/60 with added instructions.
Ah, thanks. I had overlooked that. I upgrade the bookâs deps, and recompiled, and also finished making some demos work that I hadnât gotten around to porting from 2.x
@tony.kay Your explanation is spot on and helps me make sense of how Inspect works behind the scene. Agree that this is a very minor issue. In case of "Revision nil" situation that is not due to incompatible versions, one can easily "wake it up" by either interacting with the app or simply re-opening Chrome Dev Tools. To me, it is a good enough solution already.