Fork me on GitHub
#re-frame
<
2017-01-22
>
qqq00:01:09

Does reframe have anything like casatra? I like the idea of clojure client making RPC to server.

nilrecurring00:01:42

@witek: could you describe with some more detail your usecase about the subscription firing the handler? Asking because if you have to do a computation on it you can just do it in the sub and then expose the result, while if you want to sideeffect then you can do it in the event that triggered the favorite-items sub data to change

nilrecurring00:01:22

@witek: OTOH there is definitely the need deref-ing subscriptions in handlers (e.g. to feed a subscription result to a handler at the end of a chain of events firing each other) and a discussion going on in this issue in github: https://github.com/Day8/re-frame/issues/255

nilrecurring00:01:44

@mikethompson: I guess at this point there should be a FAQ about this also, it's getting asked quite often lately. I'd be happy to write it down; do you have any "official" recommendation/thought/comment on this?

mikethompson02:01:09

There is the scope for someone to solve these issues in libraries rather than by additions to the re-frame core.

fossifoo13:01:33

whoever wrote the new "intro" to re-frame, it's even better than the old one. and i already linked people to read that to understand "reactive programming" 🙂

sandbags21:01:36

@andre not sure if this is a good idea or not but i just had a desire to be able to see the value of one of my subs in re-frisk

sandbags21:01:05

@andre ah, that seems to be whats in [:handlers :sub]