Saloneer
Saloneer
_From @ajjahn on January 8, 2016 15:28_ @catmando Can you provide a more complete example, so I can be sure I'm following the motivation for this?
_From @catmando on January 8, 2016 21:35_ From our code base. This is the actual example that trigged this issue ``` ruby def render div do button(params.attributes.merge({id: "#{job.finishing.id}_trigger_button"})) do #...
_From @zetachang on March 20, 2015 16:7_ Looks like a cool idea (also learn some cool tricks from your code :smile: ), would you mind explaining more on the haml2react.rb...
_From @elia on March 20, 2015 16:56_ Would be cool to replace jsx with haml, I know they feel strongly about keeping the dom declaration along with the component code...
_From @adambeynon on March 20, 2015 21:31_ @elia Another useful idea coming from the ember guys is that because they use a template language, rather than pure javascript, they are...
_From @adambeynon on March 20, 2015 21:33_ Sorry, I didn't explain that too well, but this does: https://github.com/emberjs/ember.js/pull/10501
_From @zetachang on March 21, 2015 8:10_ Just come up with idea to support different template language (erb, haml) by extending the DOM2React idea @elia present. Basically every time the...
_From @elia on March 21, 2015 8:23_ @adambeynon that's what I meant referring to ember's glimmer engine, actually I got the "inspiration " just after watching the ember 2015 keynote...
_From @zetachang on March 21, 2015 8:50_ Actually the render method will work like pseudo code below, ``` ruby def render offscreen_element = Element.create(Template['hello_message'].render(self)) DOM2React.build(offscreen_element) end ``` So it's still...
_From @elia on March 21, 2015 9:18_ I see now, I still feel as it could defy react's performance gains. If js perf wasn't broken it would have been good...