Fork me on GitHub
#om
<
2016-09-13
>
noonian02:09:13

@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

peeja15:09:56

What does :pathopt mean in Om Next?

anmonteiro16:09:44

@peeja means "path optimization"

anmonteiro16:09:04

it’s useful to start computing queries from a certain sub-tree when doing incremental rendering

anmonteiro16:09:12

instead of at the root

peeja16:09:47

Ah, neat. That makes more sense than "path optional". 🙂

denik20:09:43

Does anyone know of examples besides in the om wiki where set-query! / update-query! are used?

anmonteiro22:09:52

@dnolen ^ had a little time to kill

dnolen22:09:09

@anmonteiro how was the conf?

anmonteiro22:09:16

@dnolen good good! lots of awesome talks, and got the opportunity to chat with Jafar Husain

dnolen22:09:57

@anmonteiro oh cool nice! Was he doing another Falcor thing?

anmonteiro22:09:15

nah, he was there giving a talk about new JS features

anmonteiro22:09:54

@dnolen btw was a bummer that I had to miss ClojuTRE. looking forward to the video of your talk

dnolen22:09:15

@anmonteiro it went over well and I got to tell some stories some people weren’t familiar with

dnolen22:09:25

now I have to think about what to say at EuroClojure 🙂

anmonteiro22:09:01

I have been struggling with myself not to ask what that talk is going to be about 🙂

anmonteiro22:09:05

since it says “TBD"

dnolen22:09:25

heh well your guess is as good as mine at this point 😛

anmonteiro22:09:47

ah, now I get the “TBD”

anmonteiro22:09:10

really excited for EuroClojure

anmonteiro22:09:23

that one I’ll definitely be there!

dnolen22:09:31

so am I, it should be a lot of fun

anmonteiro22:09:01

@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

anmonteiro22:09:14

any ideas on how to solve that one?

anmonteiro22:09:26

thinking that we’ll need a macros NS at this point

dnolen22:09:55

I’ll have to think about that

anmonteiro22:09:56

but then I’m not sure how to have defui be in the om.next namespace

dnolen22:09:11

it’s OK since server side rendering is a tad higher priority that bootstrap support

anmonteiro22:09:37

another solution would be not to require-macros in om.next and have users write :refer-macros

anmonteiro22:09:58

which would mean they can’t :refer [defui] (with current implicit macro loading support)

dnolen22:09:09

I understand the problem