fulcro

Book: http://book.fulcrologic.com, Community Resources: https://fulcro-community.github.io/, RAD book at http://book.fulcrologic.com/RAD.html
cjmurphy 2020-11-11T02:14:29.124900Z

You can repeat the same data all over your UI as much as you want.

cjmurphy 2020-11-11T06:45:27.125100Z

All the steps needing to be done to the data could just be a mutation??

timovanderkamp 2020-11-11T12:51:27.138200Z

I ran into issues with Dynamic Routing after upgrading from 3.1.10 to 3.4.3. Maybe it helps someone who is running into similar issues. We kept on seeing this error dr/target-ready! was called but there was no router waiting for the target listed:. The cause: We wrapped (dr/change-route! ..). in a mutation. Somewhere between version 3.1.10 and 3.4.3 dynamic routing started using the binding comp/*after-render true to block the deferred-routes completion-fn tx’s until the next render. The usim event route! would trigger this render and un-block the tx’s of the deferred routes. Mutation actions also have the binding comp/*after-render set to true by default causing the event route! to also be blocked until the next render. Solution: Don’t wrap (dr/change-route! ..) in a mutation or bind comp/*after-render to false in the mutation action.

👍 2
💯 1
xceno 2020-11-11T14:08:33.140900Z

omg thank you, I was searching for the cause just now