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

Commit c270004

Browse files
committed
remove useless copying and a fix
1 parent 2f0e8b2 commit c270004

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

lib/react/component/should_component_update.rb

+6-8
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,13 @@ module Component
2323
# the need for needs_update?
2424
#
2525
module ShouldComponentUpdate
26-
def should_component_update?(native_next_props, native_next_state)
26+
def should_component_update?(next_params, next_state)
2727
State.set_state_context_to(self, false) do
28-
next_params = native_next_props.clone
2928
# rubocop:disable Style/DoubleNegation # we must return true/false to js land
3029
if respond_to?(:needs_update?)
31-
!!call_needs_update(next_params, native_next_state)
30+
!!call_needs_update(next_params, next_state)
3231
else
33-
!!(props_changed?(next_params) || native_state_changed?(native_next_state))
32+
!!(props_changed?(next_params) || native_state_changed?(next_state))
3433
end
3534
# rubocop:enable Style/DoubleNegation
3635
end
@@ -39,14 +38,13 @@ def should_component_update?(native_next_props, native_next_state)
3938
# create opal hashes for next params and state, and attach
4039
# the changed? method to each hash
4140

42-
def call_needs_update(next_params, native_next_state)
41+
def call_needs_update(next_params, next_state)
4342
component = self
4443
next_params.define_singleton_method(:changed?) do
4544
component.props_changed?(self)
4645
end
47-
next_state = Hash.new(native_next_state)
4846
next_state.define_singleton_method(:changed?) do
49-
component.native_state_changed?(native_next_state)
47+
component.native_state_changed?(next_state)
5048
end
5149
needs_update?(next_params, next_state)
5250
end
@@ -64,7 +62,7 @@ def call_needs_update(next_params, native_next_state)
6462
# Otherwise we check time stamps
6563

6664
# rubocop:disable Metrics/MethodLength # for effeciency we want this to be one method
67-
def native_state_changed?(next_state)
65+
def native_state_changed?(next_state_hash)
6866
next_state = next_state_hash.to_n
6967
%x{
7068
var current_state = #{@native}.state

0 commit comments

Comments
 (0)