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

https://github.com/ruby-hyperloop/hyper-react/blob/6a5fa7b850932388a999b79575d520d569cae7f3/lib/react/component/api.rb#L18

enhancement
help wanted

if you say for example: `MyRubyComponent().on(:change)` then MyRubyComponent will receive a `onChange` param. But if you say `MyRubyComponent().on(:foo_bar)` then MyRubyComponent will receive a `on_foo_bar` param. See https://github.com/ruby-hyperloop/hyper-react/blob/dc90b8444f5a64831e6d9f21c280b0b7afab8b34/lib/react/element.rb#L122 For why. The...

i.e. add grammar so atom knows that this is a component class then you can add an auto complete provider... etc sample rails grammar: https://github.com/atom/language-ruby-on-rails/blob/master/grammars/ruby%20on%20rails.cson grammar syntax: http://manual.macromates.com/en/language_grammars

help wanted

due to change in run_child_block

bug

```ruby require 'jquery' require 'opal-jquery' module Hyperloop def self.mount_all Element['[data-hyperloop-mount]'].each do |mount_point| component_name = mount_point.attr('data-hyperloop-mount') component = nil begin component = Object.const_get(component_name) rescue message = "Could not find Component class...

currently `.while_loading` is attached to a component like this: ```ruby Component(p1: exp1) do ... render some stuff end .while_loading do ... render this stuff if loading end ``` Now that...

otherwise in future you will have REACT::VERSION = 1.2 then you upgrade to 1.3 for some minor thing and now all other gems have to be re-released even though nothing...

discussion

currently you cannot say this: ```ruby Foo do lambda (x) { DIV { x } } end ``` even though its legal JS... i.e. we only allow strings or other...

A one size fits all form builder is hard. The Rails `form_builder` isn't flexible enough to work with frameworks like Bootstrap, so then there was `simple_form` but that's nowhere near...