This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-04-16
Channels
- # beginners (81)
- # calva (6)
- # cider (21)
- # clj-kondo (2)
- # clojure (62)
- # clojure-austin (3)
- # clojure-europe (3)
- # clojure-italy (20)
- # clojure-nl (39)
- # clojure-russia (4)
- # clojure-spec (19)
- # clojure-uk (23)
- # clojurescript (76)
- # cursive (6)
- # data-science (9)
- # datomic (12)
- # defnpodcast (1)
- # figwheel-main (3)
- # fulcro (8)
- # jackdaw (5)
- # jobs (1)
- # jobs-discuss (18)
- # joker (1)
- # leiningen (2)
- # liberator (2)
- # off-topic (148)
- # onyx (5)
- # pedestal (39)
- # planck (7)
- # re-frame (5)
- # reagent (3)
- # reitit (37)
- # shadow-cljs (165)
- # tools-deps (1)
- # yada (19)
I watched a talk about React and the so called time-slicing, and about the virtues of asynchronous rendering. There was a notion of priority of updates, and how low priority updates don't block high priority ones. Does Fulcro allow developers to leverage that? Or am I confused, and I don't have to specify which updates are high-priority?
In particular, I'm talking about this section of the talk: https://youtu.be/nLF0n9SACd4?t=419
React is basically implementing all of that internally. I think their idea is that when new events arrive they can interrupt rendering and handle them. By time slicing the updates any “fast rendering” components are likely to succeed before an event could arrive, allowing the fast responsive components to not be blocked by slow ones
my answer, of course, is based on the limited info I’ve seen from React team..I’m not following this particular topic closely
Hi, after reading wilker’s article https://medium.com/@wilkerlucio/a-guide-to-organizing-styles-on-fulcro-apps-b280d2dfee6b, I was wondering if something like “app local” css might be useful. where say :@my-class {...}
gets munged and injected, but only relative to say the app root/key or something. So that you could plop in and use your “global” common utilities, etc across components, but still get the name collision avoidance and what have you.