This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-04-22
Channels
- # beginners (17)
- # cider (3)
- # cljsrn (18)
- # clojure (76)
- # clojure-france (1)
- # clojure-italy (4)
- # clojure-nl (3)
- # clojure-poland (1)
- # clojure-uk (5)
- # clojurescript (33)
- # core-async (10)
- # datomic (31)
- # duct (5)
- # emacs (4)
- # fulcro (1)
- # graphql (5)
- # keechma (3)
- # off-topic (36)
- # onyx (1)
- # re-frame (4)
- # reagent (9)
- # reitit (9)
- # shadow-cljs (11)
- # vim (2)
fortunately I'm mostly using this project as a POC so if i end up having to pay a terrible toll for it it won't matter
re-frame-10x 0.3.3 is out now, the main change is that the -react16
branch now uses reagent 0.8.0: https://github.com/Day8/re-frame-10x/blob/master/CHANGELOG.md#033---2018-04-23
Also, code traces are limited to 50 traces, so that the user and browser isn't overwhelmed by too much tracing
I have a quick question, been reading the docs: https://github.com/Day8/re-frame/blob/master/docs/Subscribing-To-External-Data.md on how to use reg-sub-raw to create a sub that say issues a fetch to a server. I’m trying to figure out how one would make it ‘refresh’? I can see it if you’re say listening to something streaming like a websocket (or rethinkdb in the example). But let’s say we’re just doing gets GET’s. My component with the subscription needs to render calls the subscription which issues the GET. All good. But now, I say changed the filter on a grid, and need the sub to refetch. Is my having dispatched a new event and perhaps mucked with the db sufficient to cause it to re-eval?