Fork me on GitHub
#fulcro
<
2018-11-26
>
souenzzo16:11:39

I moved from #figwheel to #shadow-cljs and now my fulcro icon says "app detected" but on console says No app connected. I'm using

:devtools   {:after-load client.user/on-jsload
              :preloads   [client.user
                           devtools.preload
                           fulcro.inspect.preload]}
and
[fulcrologic/fulcro "2.6.15"
                                       :exclusions [cljsjs/react
                                                    cljsjs/react-dom
                                                    cljsjs/react-dom-server]]
[fulcrologic/fulcro-inspect "2.2.4"]

pvillegas1216:11:42

@souenzzo if you are referring to the fulcro chrome plugin, try reinstalling it (it sometimes gets corrupted)

wilkerlucio16:11:13

I'm really puzzled why this happens, I got about 4 reports of that, and makes no sense... chrome is screwing extensions? -.-

pvillegas1216:11:59

Extension land becomes hairy quickly 😛

pvillegas1216:11:12

Especially due to reproducibility

tony.kay19:11:22

and FYI: you don’t need the cljsjs exclusions…in fact your IDE will likely work better if you include them. Shadow doesn’t even look at them

souenzzo02:11:38

1- my coworker running/working with fulcro+figwheel (using the inspect) connected in my http server and the inspect does not work 2- after remove all chrome conf/settings dir's and basically a fresh install, still not working 😞

tony.kay02:11:44

If you want support, I’d suggest just using the lein new fulcro app template. It is known to work, and there is no reason to roll it like this. Sorry, not willing to debug your thing.

pserrano17:11:07

I'm trying to reproduce the todo list from the youtube tutorial (part 4), but besides jsut having the data initialized from get-initial-state I also get it comming from a pathom server. The load is triggered by a button. The data initialized manually gets rendered, the data comming from the server doesn't. All the data gets normalized correctly.

tony.kay19:11:43

If you load something, you have to ensure that you trigger that load from the ultimate parent of the loaded data (the list component) OR include data keys for refresh. Please make sure you understand the data refresh in Fulcro.