Hey all! Has anyone tried using Reveal along with Weasel + Piggieback?
Hi! I haven't tried this setup ๐ If you'll make it work, please consider making a write up ๐
weasel/piggieback is nrepl stuff, would reveal's nrepl middleware be enough in this case?
So far I havenโt been able to get that to succeed. But Iโm going to keep tinkering with this till I can get it to work, and I will definitely share my notes once I do!
Hey there! I made another minor update, 1.2.186
that makes observable views more generic, e.g. you are no longer limited to refs, but instead can use any observable data source. Here is example that observes the tap queue to view latest tapped value:
{:fx/type observable-view
;; generic observable:
:subscribe (fn [notify]
(add-tap notify) ;; sub
#(remove-tap notify)) ;; unsub
:fn (fn [v] {:fx/type value-view :value v})}