@@ -253,9 +253,9 @@ final ReactDartInteropStatics _dartInteropStatics = (() {
253
253
/// 3. Update [Component.state] by calling [Component.transferComponentState]
254
254
void _afterPropsChange (Component component, InteropContextValue nextContext) {
255
255
component
256
- ..props = component.nextProps // [1]
257
- ..context = _unjsifyContext ( nextContext) // [2]
258
- ..transferComponentState (); // [3]
256
+ ..props = component.nextProps // [1]
257
+ ..context = component. nextContext // [2]
258
+ ..transferComponentState (); // [3]
259
259
}
260
260
261
261
void _clearPrevState (Component component) {
@@ -278,10 +278,13 @@ final ReactDartInteropStatics _dartInteropStatics = (() {
278
278
/// Wrapper for [Component.componentWillReceiveProps] .
279
279
void handleComponentWillReceiveProps (Component component, ReactDartComponentInternal nextInternal, InteropContextValue nextContext) => zone.run (() {
280
280
var nextProps = _getNextProps (component, nextInternal);
281
+ var newContext = _unjsifyContext (nextContext);
282
+
281
283
component
282
284
..nextProps = nextProps
285
+ ..nextContext = newContext
283
286
..componentWillReceiveProps (nextProps)
284
- ..componentWillReceivePropsWithContext (nextProps, _unjsifyContext (nextContext) );
287
+ ..componentWillReceivePropsWithContext (nextProps, newContext );
285
288
});
286
289
287
290
/// Wrapper for [Component.shouldComponentUpdate] .
@@ -291,7 +294,7 @@ final ReactDartInteropStatics _dartInteropStatics = (() {
291
294
// If shouldComponentUpdateWithContext returns a valid bool (default implementation returns null),
292
295
// then don't bother calling `shouldComponentUpdate` and have it trump.
293
296
bool shouldUpdate =
294
- component.shouldComponentUpdateWithContext (component.nextProps, component.nextState, _unjsifyContext ( nextContext) );
297
+ component.shouldComponentUpdateWithContext (component.nextProps, component.nextState, component. nextContext);
295
298
296
299
if (shouldUpdate == null ) {
297
300
shouldUpdate = component.shouldComponentUpdate (component.nextProps, component.nextState);
@@ -314,7 +317,7 @@ final ReactDartInteropStatics _dartInteropStatics = (() {
314
317
/// Call `componentWillUpdate` and the context variant
315
318
component
316
319
..componentWillUpdate (component.nextProps, component.nextState)
317
- ..componentWillUpdateWithContext (component.nextProps, component.nextState, _unjsifyContext ( nextContext) );
320
+ ..componentWillUpdateWithContext (component.nextProps, component.nextState, component. nextContext);
318
321
319
322
_afterPropsChange (component, nextContext);
320
323
});
0 commit comments