This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-03-22
Channels
- # beginners (42)
- # boot (73)
- # cider (17)
- # clara (1)
- # cljs-dev (47)
- # cljsrn (9)
- # clojars (4)
- # clojure (241)
- # clojure-italy (11)
- # clojure-norway (5)
- # clojure-russia (93)
- # clojure-spec (28)
- # clojure-uk (32)
- # clojurescript (170)
- # core-async (20)
- # cursive (62)
- # data-science (2)
- # datomic (47)
- # dirac (4)
- # events (1)
- # funcool (12)
- # gsoc (1)
- # hoplon (59)
- # immutant (8)
- # lambdaisland (4)
- # luminus (3)
- # lumo (11)
- # off-topic (13)
- # om (81)
- # onyx (1)
- # pedestal (47)
- # planck (30)
- # re-frame (2)
- # reactive (1)
- # reagent (2)
- # ring-swagger (15)
- # rum (1)
- # slack-help (5)
- # specter (5)
- # testing (5)
- # uncomplicate (8)
- # untangled (16)
- # vim (71)
- # yada (16)
How does the untangled support-viewer know what the state has been updated?
I was looking for a hook that I can use to know whenever the state updates. Imagine an implicit trailing read to every transact. I couldn't work out how the :current-position read was always current.
@baptiste-from-paris The css in untangled-ui was originally based on an internal set of elements designed for our employer, and then later adapted partially to conform to Google’s material design where it made sense. Some of it conforms to their spec, but other parts are just well designed in it’s own way. Under the hood it’s written with only spec compliant CSS compiled using PostCSS.
thx @stephenway that’s what exactly what I needed to know
anyway, it’s beautiful 🙂
I have to say that I struggle a lot when I have to produce CSS. Can you share any tools or workflow you are using ?
Sure! Mostly your best tools will be npm packages for postcss and gulp https://github.com/untangled-web/untangled-ui/blob/develop/package.json
depending on what your style is, you can craft your own preprocessor that lets you write css the way you want to
I’m generally against using syntax sugar or logic in my stylesheets so I stick to just future spec plugins that let me write future code
I'll take a look.
Thanks for sharing !