Alex Gunnarson
Alex Gunnarson
@Lokeh there is a full implementation in CLJS, yes (haven't tested recently if it works; I know it was modified at one point). However `posh.lib.ratom` as implemented in CLJS is...
Haven't checked everything about the code you posted, but on first glance it looks reasonable to me!
`What I probably want is to be able to transact data, then get the list of queries whose results have changed and the delta in query results.` -> I also...
@xlfe Not sure how Helix works internally but when you say bridge Datascript and Posh with \, the place to look for extending Posh to other non-Reagent React libraries would...
(Disclaimer: I have nothing to do with the creator of Posh, though I'm just as appreciative of it as you are!) I've been working somewhat on what you've been saying...
Also, as for GC of DataScript data, you can use Reagent's :componentDidUnmount and :componentDidMount etc. to do that, right? Whenever it unmounts, transactions matching the pattern originally specified in the...
No problem. Thanks for yours! That's correct about freactive, though I'm not suggesting switching from Reagent to freactive (I've already tried that — it was interesting because I could write...
That's likely because posh.plugin-base is on `master` but hasn't been released as part of an artifact :) You could release your own artifact like `[markzorkman/posh "0.5.6"]` ? ... though maybe...
I have a CircleCI file I usually use — let me paste it in here.
`circle.yml`: ``` test: override: - case $CIRCLE_NODE_INDEX in 0) echo "lein test-clj" && lein test-clj ;; 1) echo "lein test-cljs" && lein test-cljs ;; esac: parallel: true ``` That tests...