Fork me on GitHub
#reagent
<
2018-01-30
>
justinlee00:01:15

@blake.watsonwhat do you meant “still running”? is there a chance that it is doing something asynchronous?

blake01:01:31

@lee.justin.m I sort of assumed that spreadsheet-table starts and lock-fields starts right after, but I suppose lock-fields could be running first, followed by spreadsheet-table. I'm not doing anything asynchronous =deliberately=.

ajs13:01:34

with things like track and reaction I assume that reagent unregisters/cleans-up references to these things when an owning component that uses them disappears?

eveko13:01:27

is there a way to read inner atom values of a component through the repl just like global atoms ? Say i have (defn component [] (let [someatom r/atom nil] fn[](...)) is there a way to see what is in someatom through the repl

escherize15:01:27

@eveko did you try putting a def inside the component to put the value of someatom into a var?