This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-09-13
Channels
- # aws-lambda (21)
- # beginners (8)
- # boot (67)
- # braveandtrue (2)
- # cider (12)
- # cljs-dev (38)
- # cljsjs (87)
- # cljsrn (11)
- # clojure (307)
- # clojure-austin (29)
- # clojure-finland (1)
- # clojure-italy (9)
- # clojure-russia (19)
- # clojure-spec (71)
- # clojure-uk (33)
- # clojurescript (109)
- # clojutre (1)
- # core-async (2)
- # cursive (24)
- # datomic (11)
- # devops (5)
- # ethereum (5)
- # figwheel (2)
- # hoplon (25)
- # ipfs (1)
- # jobs (1)
- # luminus (17)
- # off-topic (2)
- # om (38)
- # om-next (3)
- # onyx (166)
- # other-lisps (1)
- # proton (5)
- # re-frame (15)
- # reagent (45)
- # ring (2)
- # spacemacs (6)
- # specter (12)
- # untangled (58)
- # yada (23)
@jaerme From looking at the project.clj
, I don’t think the source paths are correct for the example builds. The examples haven’t been touched in 2 years so I’m sure they are from Om.now. If you want to compile them anyway you might try changing the :source-paths
for the “hello” build to “src/main” instead of “src” here: https://github.com/omcljs/om/blob/master/project.clj#L56
@peeja means "path optimization"
it’s useful to start computing queries from a certain sub-tree when doing incremental rendering
instead of at the root
this example uses path optimization: https://github.com/omcljs/om/blob/master/src/devcards/om/devcards/core.cljs#L311-L397
Does anyone know of examples besides in the om wiki where set-query!
/ update-query!
are used?
@dnolen ^ had a little time to kill
@anmonteiro haha 🙂
@anmonteiro how was the conf?
@dnolen good good! lots of awesome talks, and got the opportunity to chat with Jafar Husain
@anmonteiro oh cool nice! Was he doing another Falcor thing?
nah, he was there giving a talk about new JS features
@dnolen btw was a bummer that I had to miss ClojuTRE. looking forward to the video of your talk
@anmonteiro it went over well and I got to tell some stories some people weren’t familiar with
I have been struggling with myself not to ask what that talk is going to be about 🙂
since it says “TBD"
ah, now I get the “TBD”
really excited for EuroClojure
that one I’ll definitely be there!
@dnolen btw and also related to my question earlier in #cljs-dev.
My server-side rendering PR breaks support for bootstrap CLJS because of :require-macros
in the om.next
namespace
any ideas on how to solve that one?
thinking that we’ll need a macros NS at this point
but then I’m not sure how to have defui
be in the om.next
namespace
another solution would be not to require-macros
in om.next
and have users write :refer-macros
which would mean they can’t :refer [defui]
(with current implicit macro loading support)
gotcha