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

The project has moved to Hyperstack!!

Results 76 hyper-react issues
Sort by recently updated
recently updated
newest added

### Hyperloop Proposed Statement of Direction We have spent some time this last week pulling together the thoughts of the core contributors to the project and mapped out a few...

its just too long... We will do both, and then let evolution decide which we keep...

currently react.js component class wrapping the ruby class gets a componentDidCatch function. This makes react.js think that every component is a error boundry, which means that nested errors do not...

Currently, the first time a ruby component class is passed to createElement, a wrapper react.js component class is created (see react/api.rb) The lifecycle methods in the wrapper class then call...

For example ```ruby # add the class funky to any DIV class FunkyDiv < Hyperloop::Component collect_all_other_params_as :opts render do opts = params.opts.dup opts[:class] = "funky #{opts[:class]}" DIV(opts, &children) # &children...

```ruby class Foo < Hyperloop::Component collect_all_other_params_as :opts ... end ... class Test < Hyperloop::Component after_mount do every(1) { force_update! } end render do Foo(time: Time.now) end end ``` The value...

bug

see https://github.com/ruby-hyperloop/hyperloop-config/issues/17

messages that occur before first mount are being lost. This is due to a change in react-rails

messages that occur before first mount are being lost. This is due to a change in react-rails

For example lets say you `import 'jquery'` and you forget the `client_only: true` option. this will throw a bunch of errors during prerendering, before it even tries to start rendering...