mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/41334 TSIA. Changelog: [Internal] Reviewed By: robhogan Differential Revision: D51025812 fbshipit-source-id: e10d437be775a6b80946483aa96460f34927f870
65 lines
1.8 KiB
JavaScript
65 lines
1.8 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict-local
|
|
* @format
|
|
* @oncall react_native
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import type {ScrollEvent} from 'react-native/Libraries/Types/CoreEventTypes';
|
|
|
|
import {LIST_100_ITEMS} from '../components/itemData';
|
|
import ItemList from '../components/ItemList';
|
|
import * as React from 'react';
|
|
import {Text} from 'react-native';
|
|
|
|
const {useCallback, useState} = React;
|
|
const ItemListMemo = React.memo(ItemList);
|
|
|
|
function ReRenderWithNonPureChildBadExample(): React.Node {
|
|
const [scrollOffset, setScrollOffset] = useState(0);
|
|
const onScroll = useCallback(
|
|
(evt: ScrollEvent) => {
|
|
setScrollOffset(evt.nativeEvent.contentOffset.x);
|
|
},
|
|
[setScrollOffset],
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<Text>{`Scroll Offset X: ${scrollOffset}`}</Text>
|
|
<ItemList data={LIST_100_ITEMS} onScroll={onScroll} />
|
|
</>
|
|
);
|
|
}
|
|
|
|
function ReRenderWithNonPureChildGoodExample(): React.Node {
|
|
const [scrollOffset, setScrollOffset] = useState(0);
|
|
const onScroll = useCallback(
|
|
(evt: ScrollEvent) => {
|
|
setScrollOffset(evt.nativeEvent.contentOffset.x);
|
|
},
|
|
[setScrollOffset],
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<Text>{`Scroll Offset X: ${scrollOffset}`}</Text>
|
|
<ItemListMemo data={LIST_100_ITEMS} onScroll={onScroll} />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default {
|
|
title: 'List re-render due to not pure or memoized',
|
|
description:
|
|
'Get horizontal scroll offset.\nThe List component is not pure in the bad example. Even though all props are not changed, it will still re-render when parent re-renders.',
|
|
Bad: ReRenderWithNonPureChildBadExample,
|
|
Good: ReRenderWithNonPureChildGoodExample,
|
|
};
|