Matt Parker

Results 43 comments of Matt Parker

I ended up using the ghcjs-servant-router library (https://github.com/plow-technologies/servant-ghcjs-router), but I modified it so all the routes return a concur Widget and the `initRouter` function runs `runWidgetInBody . forever` on the...

Did you ever find out anything more about this? If it's just a vdom bug, would you recommend that I just use a different concur backend for now?

Ok thanks! I'll try concur-react or fall back to using strictness.

Ok, thanks. I got concur-react to build with ghc and then started converted my project to it, but the -react version has fewer functions and examples, so for now I'll...

Hey, just wanted to let you know that I used Concur (vdom) for a few hours and I really love it so far. I made a list of expandable items...

@robinvd Yep, you just have to move your servant api definition and proxy into some common place (and use `Data.Proxy(Proxy)` instead of Servant-server's `Proxy`), then use this library: https://github.com/plow-technologies/ghcjs-servant-client to...

Thanks, I'll make a simplified version that demos it and paste it here later today.

Ok here's a widget that will just load a bunch of buttons: ``` import Concur.VDOM ( HTML, button, el, el_ ) slowList :: [Int] -> Widget HTML Int slowList =...

Hey thanks! That update made my button list really fast. Even the list with 4500 users loaded quickly. I didn't measure it, but the new buttons seem just as fast...