hyper-react
hyper-react copied to clipboard
The project has moved to Hyperstack!!
You will get this warning but the functionality will work as expected. See this example from the tutorial: ``` class App < React::Component::Base def render div do Nav(login: method(:login)) Messages()...
_From @akshatpradhan on May 3, 2015 18:33_ what is the best way to do integration testing in React.rb?  _Copied from original issue: zetachang/react.rb#25_
_From @catmando on December 15, 2015 2:36_ If you specify a parameter name as `:class` it gets translated to `:className` before handed over to the component. So if you want...
_From @catmando on December 9, 2015 18:18_ the export_state macro does two things: 1) creates a state variables that is shared by all instances of the component class. 2) makes...
_From @catmando on December 20, 2015 20:19_ Need some way to test components. Right now no reason why capybara will not work, but that is for testing entire view (or...
_From @catmando on December 9, 2015 15:45_ currently you have to define Hash._react_param_conversion(json, validate_only=nil) for the conversion to work. This should be built-in ``` ruby class Hash def self._react_param_conversion(json, validate_only...
_From @ajjahn on December 9, 2015 16:18_ Since I've been harping on this subject and recently some related issues (#94, #95) have been opened, it seems like a good time...
_From @catmando on December 22, 2015 13:7_ We need to clean this up for example the html attribute `default-value` should be expressible as `:default_value` or `"default-value"`. Sometimes things are getting...
_From @catmando on January 21, 2016 23:41_ Here are a couple of handy methods we have started to use in our code, that I would like to see appear in...
_From @catmando on February 13, 2016 18:37_ Currently full server support is only "easily" done by using the react-rails gem. So if you want pre-rerendering in any situation where you...