@@ -23,14 +23,13 @@ module Component
23
23
# the need for needs_update?
24
24
#
25
25
module ShouldComponentUpdate
26
- def should_component_update? ( native_next_props , native_next_state )
26
+ def should_component_update? ( next_params , next_state )
27
27
State . set_state_context_to ( self , false ) do
28
- next_params = native_next_props . clone
29
28
# rubocop:disable Style/DoubleNegation # we must return true/false to js land
30
29
if respond_to? ( :needs_update? )
31
- !!call_needs_update ( next_params , native_next_state )
30
+ !!call_needs_update ( next_params , next_state )
32
31
else
33
- !!( props_changed? ( next_params ) || native_state_changed? ( native_next_state ) )
32
+ !!( props_changed? ( next_params ) || native_state_changed? ( next_state ) )
34
33
end
35
34
# rubocop:enable Style/DoubleNegation
36
35
end
@@ -39,14 +38,13 @@ def should_component_update?(native_next_props, native_next_state)
39
38
# create opal hashes for next params and state, and attach
40
39
# the changed? method to each hash
41
40
42
- def call_needs_update ( next_params , native_next_state )
41
+ def call_needs_update ( next_params , next_state )
43
42
component = self
44
43
next_params . define_singleton_method ( :changed? ) do
45
44
component . props_changed? ( self )
46
45
end
47
- next_state = Hash . new ( native_next_state )
48
46
next_state . define_singleton_method ( :changed? ) do
49
- component . native_state_changed? ( native_next_state )
47
+ component . native_state_changed? ( next_state )
50
48
end
51
49
needs_update? ( next_params , next_state )
52
50
end
@@ -64,7 +62,7 @@ def call_needs_update(next_params, native_next_state)
64
62
# Otherwise we check time stamps
65
63
66
64
# 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 )
68
66
next_state = next_state_hash . to_n
69
67
%x{
70
68
var current_state = #{ @native } .state
0 commit comments