Skip to content
This repository was archived by the owner on Oct 19, 2018. It is now read-only.

Commit a0b4093

Browse files
committed
revert Opal.hash to Hash.new
1 parent 5d41dfe commit a0b4093

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

lib/react/api.rb

+7-4
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class extends React.Component {
7373
}
7474
shouldComponentUpdate(next_props, next_state) {
7575
var instance = this._getOpalInstance.apply(this);
76-
return #{`instance`.should_component_update?(`Opal.hash(next_props !== null ? next_props : {})`, `Opal.hash(next_state !== null ? next_state : {})`) if type.method_defined? :should_component_update?};
76+
return #{`instance`.should_component_update?(Hash.new(`next_props`), Hash.new(`next_state`)) if type.method_defined? :should_component_update?};
7777
}
7878
componentWillUpdate(next_props, next_state) {
7979
var instance = this._getOpalInstance.apply(this);
@@ -126,9 +126,12 @@ def self.create_element(type, properties = {}, &block)
126126

127127
# Children Nodes
128128
if block_given?
129-
[yield].flatten.each do |ele|
130-
params << ele.to_n
131-
end
129+
a = [yield].flatten
130+
%x{
131+
for(var i=0, l=a.length; i<l; i++) {
132+
params.push(a[i].$to_n());
133+
}
134+
}
132135
end
133136
React::Element.new(`React.createElement.apply(null, #{params})`, type, properties, block)
134137
end

0 commit comments

Comments
 (0)