Fork me on GitHub
#om
<
2016-05-10
>
cjmurphy00:05:15

@kendall.buchanan: As the child is getting the parent's props, and the child gets re-rendered if the parent's props change, then there's no more reason for the props that are being passed down to be real props at all. So another possibility is to have them passed down as computed props - out of band. That is I think how I would do it.

spiralganglion01:05:09

@dimiter: I just realized this was the Om channel (I thought it was a different one. Must have toggled here by accident.) I highly doubt that my suggestion is idiomatic for Om, since I have very little experience with it. Perhaps someone else here would be able to offer a more official answer.

dimiter01:05:06

Yeah. It was more a general cljs question anyways. I dont think OM has an idiomatic approach to what i want to do.

tomjack03:05:59

I would try react-motion, but this is actually kind of tricky. react-motion-ui-pack tries to make it easier

tomjack03:05:38

someday I hope to do (better, find?) something about that for om

francoiswirion08:05:48

@ag I think https://github.com/bendlas/om-next-demo/ has implemented todo item creation

bendlas12:05:48

@francoiswirion: I would like to believe they have 😉 Though the whole thing felt a bit sketchy, and I'm not sure what we did to get it working. It definitely had something to do with declaring the query :remote true

francoiswirion13:05:17

@bendlas lol 😄, thanks for weighing in I too have to understand and properly make work the remote stuff in my toy app I'm a little slowed down by having separate repos for server and client, and not having a good testing / workflow story going on the server side time for a detour

kendall.buchanan15:05:16

@cjmurphy: Thank you, I think I’ve settled on the same solution.

dimiter22:05:10

Hi all, looking for a multi-select implementation in OM. Anyone have any samples?

dimiter23:05:23

I used this in Pure React, but am unsure of how I would use that in OM. Still a bit fuzzy on the inter-op.