Skip to content

Commit f0d8b3a

Browse files
committed
Use nextContext vs unjsify’ing it
1 parent f791d0d commit f0d8b3a

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

lib/react_client.dart

+9-6
Original file line numberDiff line numberDiff line change
@@ -253,9 +253,9 @@ final ReactDartInteropStatics _dartInteropStatics = (() {
253253
/// 3. Update [Component.state] by calling [Component.transferComponentState]
254254
void _afterPropsChange(Component component, InteropContextValue nextContext) {
255255
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]
259259
}
260260

261261
void _clearPrevState(Component component) {
@@ -278,10 +278,13 @@ final ReactDartInteropStatics _dartInteropStatics = (() {
278278
/// Wrapper for [Component.componentWillReceiveProps].
279279
void handleComponentWillReceiveProps(Component component, ReactDartComponentInternal nextInternal, InteropContextValue nextContext) => zone.run(() {
280280
var nextProps = _getNextProps(component, nextInternal);
281+
var newContext = _unjsifyContext(nextContext);
282+
281283
component
282284
..nextProps = nextProps
285+
..nextContext = newContext
283286
..componentWillReceiveProps(nextProps)
284-
..componentWillReceivePropsWithContext(nextProps, _unjsifyContext(nextContext));
287+
..componentWillReceivePropsWithContext(nextProps, newContext);
285288
});
286289

287290
/// Wrapper for [Component.shouldComponentUpdate].
@@ -291,7 +294,7 @@ final ReactDartInteropStatics _dartInteropStatics = (() {
291294
// If shouldComponentUpdateWithContext returns a valid bool (default implementation returns null),
292295
// then don't bother calling `shouldComponentUpdate` and have it trump.
293296
bool shouldUpdate =
294-
component.shouldComponentUpdateWithContext(component.nextProps, component.nextState, _unjsifyContext(nextContext));
297+
component.shouldComponentUpdateWithContext(component.nextProps, component.nextState, component.nextContext);
295298

296299
if (shouldUpdate == null) {
297300
shouldUpdate = component.shouldComponentUpdate(component.nextProps, component.nextState);
@@ -314,7 +317,7 @@ final ReactDartInteropStatics _dartInteropStatics = (() {
314317
/// Call `componentWillUpdate` and the context variant
315318
component
316319
..componentWillUpdate(component.nextProps, component.nextState)
317-
..componentWillUpdateWithContext(component.nextProps, component.nextState, _unjsifyContext(nextContext));
320+
..componentWillUpdateWithContext(component.nextProps, component.nextState, component.nextContext);
318321

319322
_afterPropsChange(component, nextContext);
320323
});

0 commit comments

Comments
 (0)