untangled

NEW CHANNEL: #fulcro
tony.kay 2017-06-16T06:17:43.892651Z

Just pushed another update to 1.0.0-SNAPSHOT of the combined library. I’ve been adding some more bootstrap wrappers. Just got modal mostly working. The dev guide has a nice demo of it that also shows a common (more advanced) composition: Having two orthogonal stateful components (with queries) where one needs to be pre-written, but allow another to be embedded within it. The repository is here: https://github.com/awkay/untangled You can clone it to run the devguide. There is a shell script that should work on OSX called run-devguide,sh. The modal stuff is in the section N15_Twitter_Bootstrap_Components.cljs. If you just want to read the source/comments, look here (lines 284+): https://github.com/awkay/untangled/blob/ec713f37da91914aa2191c3048ef5e372b78452c/src/devguide/untangled_devguide/N15_Twitter_Bootstrap_Components.cljs#L284

👍 5
🎉 1
tony.kay 2017-06-16T06:18:01.894705Z

it is up on clojars as well

2017-06-16T20:18:09.237432Z

for those who have worked with reagent/re-frame, can you suggest tradeoffs that it makes or potential pitfalls of its approach? I prefer untangled personally, but my team mates are leaning toward reagent/re-frame.

tony.kay 2017-06-16T20:56:14.841832Z

@uwo I wrote a more detailed response on #om 🙂

tony.kay 2017-06-16T20:57:11.856781Z

I know we have some users that ported to Untangled from a reagent-based system.

tony.kay 2017-06-16T20:57:27.861046Z

@currentoor ???

2017-06-16T20:57:40.864593Z

@tony.kay thanks!!!

currentoor 2017-06-16T20:57:52.867601Z

Hi @tony.kay, what’s up?

tony.kay 2017-06-16T20:58:07.871231Z

Were you one of the ones that ported from reframe?

currentoor 2017-06-16T20:58:17.873789Z

I’ve never used reframe/reagent

tony.kay 2017-06-16T20:58:25.875856Z

oh…hm. someone else I guess

tony.kay 2017-06-16T20:59:03.885998Z

@uwo check the clojurians archive for reframe comments in this channel

tony.kay 2017-06-16T20:59:07.886813Z

we’ve talked about it before

2017-06-16T20:59:33.893395Z

oh. thanks. I didn’t know that you could go very far back in the slack archives. I thought they were autodeleted

2017-06-16T20:59:46.896882Z

thanks for the fantastic write up!

tony.kay 2017-06-16T21:01:03.918680Z

search for re-frame

tony.kay 2017-06-16T21:02:33.942427Z

You’re welcome. Yeah, I didn’t know about the archive for a long time either…

tony.kay 2017-06-16T21:02:40.944046Z

super-handy

2017-06-16T23:55:48.617956Z

How can I access app state from UntagledNetwork/send? I was under impression that complete-app in the legacy rest api example is used for that, but even if I set it in UntagledNetwork/start, it is still nil when UntagledNetwork/send is called…