om

Please ask the channel first, not @dnolen directly!
2017-04-11T08:04:50.976672Z

@wilkerlucio I’ve copied the om.next.impl.parser namespace into my project and have built my own Reconciler and Indexer to have an om.next like experience with Rum (still work in progress). So in a way I’m already including Om in my project. The downside was that I had to figure out what I had to include and how it worked. A seperate project would make it easier for others to figure this out and in return maybe contribute back to the parts that are shared. But then again maybe it’s too early

dzannotti 2017-04-11T12:05:20.046207Z

Is there a library similiar to https://github.com/acdlite/recompose for om?

2017-04-11T12:11:16.121513Z

Don't think so @dzannotti. Clojurescript already provides a lot of utility for working with functions and data that you might need a library like lodash for.

dzannotti 2017-04-11T12:12:52.142361Z

@danielstockton recompose idea is to use HoC to manipulate props/store state (rather than a single atom re-frame way)

2017-04-11T12:18:02.210274Z

Are you talking about om or om.next? Also, is there a specific problem you're trying to find a solution to?

dzannotti 2017-04-11T12:19:09.224901Z

just om, no problem i'm specifically trying to solve, I just like the way recompose constructs apps, and was looking for something similiar

2017-04-11T12:21:04.251194Z

Just om uses a single atom (re-frame way) but has cursors so that each component knows where to update in the overall state. Otherwise, I'm not familiar with recompose at all, I'm afraid.