Denis Krivosheev
Denis Krivosheev
Helo @xlfe . I know nothing of helix, but I'm sure `posh` doesn't have out of the box support for it. But it may coincidentally work if it uses atoms...
I've spent a lot of time with this issue and want to share it now. For integrate posh and re-frame we need only the ways to write subscriptions and handlers....
Here the helper function ```clojure (defn reg-event-ds ([k interceptors handler] (reg-event-fx k (into [] (concat [(inject-cofx :ds)] interceptors)) (fn [{:keys [ds]} signal] { :transact (handler @ds signal) }))) ([k handler]...
I've just released a library that allows combining re-frame and DataScript together [DataFrame](https://github.com/denistakeda/data-frame)
@bamarco . Unfortunately, I still can not merge it :-( A bit later I'll move the differences manually to another PR and provide it to you for review.
Hello @fpischedda . Basically this PR is mostly finished work, the only problem is that it breaks tests. The reason for it is that we need to test in both...
Also, I would like to have some more declarative way to work with rum, something like `re-posh` for reagent. But this is a plan for the future.
Hello @jleonard-r7 . Thank you for reporting this. I'll have a look
Thank you @jleonard-r7 . Will check this out
Hello @jleonard-r7 . I've checked the example and indeed, it works not as expected. So-far `posh` library is unable to watch the entities based on keyword and `:db/ident` rule. I'm...