om

Please ask the channel first, not @dnolen directly!
linuss 2017-08-29T14:57:04.000169Z

Hey guys, I have the following bits of code and data: https://pastebin.com/uShRBusM . I'm trying to find a way to include a components property as a query parameter in an ident (in order to resolve foreign keys). Does anybody have an idea how to do this?

rplevy 2017-08-29T17:15:12.000512Z

Does anyone know what ref-cursor is for? The documentation was unclear to me. I found that I could remove it from an Om application with no loss of functionality. Having it in, on the other hand was causing performance problems because it was being called very frequently in the context where it was used.

rplevy 2017-08-29T18:00:27.000028Z

I'm trying to test for problems with stale data from cursor as that is my best understanding of what ref-cursor is for.

drcode 2017-08-29T19:25:30.000103Z

When I do (om/set-query! this {:query ...}) will it affect all instances of the component or only the this component?

driphter 2017-08-29T22:10:20.000121Z

@anmonteiro Is your omify library currently working/usable?

anmonteiro 2017-08-29T22:14:19.000263Z

@driphter haven’t tried it in a while

anmonteiro 2017-08-29T22:14:26.000142Z

report any issues you find

driphter 2017-08-29T22:15:42.000296Z

Alright, will do. Thanks!

rplevy 2017-08-29T23:14:01.000150Z

I've been testing leaving out ref-cursor and I don't find any problems so far with doing so. I'm looking for someone who understands om internals a little better to tell me if it's a terrible idea. 🙂

petterik 2017-08-29T23:59:02.000276Z

Is there a reason why react16 wouldn't re-render with om.next? I've heard that the isMounted code would have to change, so I changed that: https://github.com/petterik/om/commit/9735bdc362f991930c43962df66baf3bbcc3130a#diff-ee424e6559581b5b893371373a777e5eR193 Anything else? @anmonteiro do you know?