react-haskell icon indicating copy to clipboard operation
react-haskell copied to clipboard

React bindings for Haskell

Results 14 react-haskell issues
Sort by recently updated
recently updated
newest added
trafficstars

Im just trying out ghcjs and came across these react bindings. When I install via cabal though I get the following error ``` [ 1 of 15] Compiling React.GHCJS (...

https://gist.github.com/LovelyYanki/d846d32ab876853097b7 is it needed to cabal install webkit to display the react native in web widget? if it needed to display in web, why it is called react native? how...

$cabal install ./react-haskell Resolving dependencies... Configuring react-haskell-2.0.1... Building react-haskell-2.0.1... Failed to install react-haskell-2.0.1 Build log ( /home/mule/.cabal/logs/react-haskell-2.0.1.log ): Configuring react-haskell-2.0.1... Building react-haskell-2.0.1... Preprocessing library react-haskell-2.0.1... [14 of 15] Compiling React.Events...

I've replaced haste with ghcjs specfic stuff in .cabal and added a shell.nix and a default.nix. If you have a checkout of nixpkgs you should be able to run: ```...

I've done some refactoring and got rudimentary composable classes working, without losing any functionality. I've also factored out animations into their own modules. This should make native class interop a...

What types of events are there? Currently mouse, keyboard, change, focus. What properties do they all hold? How do properties map from js to haskell?

enhancement
question

After installing with `haste-inst install`, I run: `hastec --with-js=lib/stubs.js example/simple/simple.hs --out=example/simple/main.js` from the root of the project And then open the file in chrome. And when I type in the...

Hi @joelburget , it's me again. sorry to be a pain on here! At the moment, the signals appear to get queued when they are triggered, and they are evaluated...

It's currently impossible to render a class from a `ReactT`. This should be possible with `locally` or something. In the best of all worlds you could do something like: ```...

enhancement
question

I want to use JS-defined react classes. Once imported they should behave exactly the same as react-haskell classes. Also see issue #8 for more on classes.

enhancement