Mitch VanDuyn

Results 207 issues of Mitch VanDuyn

No place to stick an issue for a whole org, so am putting it here for discussion: There is a new reactrb github org setup. https://github.com/reactrb PROPOSAL 1: Because some...

discussion

otherwise it confuses sprockets

children needs to check if props.children is defined before proceeding

bug

For example `Foo().on(:save) { do_something }.on(:cancel) { do_something}` should be `Foo().on(:save, :cancel) {do_something}`

enhancement
help wanted

In writing documentation I realize we are at odds with Ruby terminology here. Should we allow "class:" as an alias for "type:" in Param declarations? If so should we eventually...

discussion

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 cannot use react-rails you have to brew...

what should happen if native objects are passed to react.rb components? Currently we do nothing UNLESS you explicitly declare the type of the param, AND that type class has an...

enhancement
discussion

currently if you do this: ``` ruby # Rb is native ReactBootstrap class TooltipExample < React::Component::Base def render tip = Rb.Tooltip(id: 'foo'){'a tooltip'}. div { h2 { 'Tooltip Example'} Rb.ButtonToolbar...

Here are a couple of handy methods we have started to use in our code, that I would like to see appear in 0.8 or 0.9: ``` ruby React::Element#append_to(dom_element) #...

thinking that we should allow HTML components to be expressed in all CAPS. ``` ruby class TodoList < React::Component::Base param :items, type: [String] def render UL do params.items.each_with_index do |item,...