This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-10-15
Channels
- # bangalore-clj (4)
- # beginners (53)
- # boot (7)
- # cider (1)
- # clara (1)
- # cljs-dev (13)
- # clojure (29)
- # clojure-dusseldorf (3)
- # clojure-russia (7)
- # clojure-spec (63)
- # clojure-uk (7)
- # clojurescript (51)
- # css (1)
- # datomic (5)
- # emacs (1)
- # events (1)
- # fulcro (15)
- # hoplon (3)
- # immutant (3)
- # juxt (1)
- # midje (2)
- # off-topic (24)
- # om (1)
- # parinfer (1)
- # portkey (54)
- # re-frame (4)
- # reagent (13)
- # schema (1)
- # shadow-cljs (19)
- # sql (1)
- # testing (37)
- # yada (2)
is there a built in way in fulcro to move the data once successfully loaded to a specific location like target
? (target seems to add the loading info so it causes a bit of flickering).
@claudiu you can set the option :marker
to false
, this will prevent the loading markers to be added
@wilkerlucio thank you 🙂
no problem 😉
@claudiu and one tip if you like to show some loading UI without the flickering: use a different key for the target (eg: :ui/my-think-loading
), and then move the result in a post-mutation
yep that's what I'm doing now. was just hoping for something in flucro seems like a pretty common scenario
could be, but in this case, if fulcro have something, it would have to define some convention over the names
and mess with queries and other things, so getting a bit complex, I'm not sure if we have a good idea of how to solve without intruducing much complexity
in the end, I think is not so bad to solve in now, just a bit extra effort 🙂