Mitch VanDuyn

Results 207 issues of Mitch VanDuyn

```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...

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...