/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/rn-tester/js/examples/Performance/performanceComparisonExamples/ReRenderWithNonPureChildExample.js
64 строки
2 KB
Tim Yung
RN: Delete `@oncall` Annotations (#51416)
18 май 2025, 02:18
18 май 2025, 02:18
84de8a0
Код
Авторство
О чём код?
/** * 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 */ 'use strict'; import type {ScrollEvent} from 'react-native'; import {LIST_100_ITEMS} from '../components/itemData'; import ItemList from '../components/ItemList'; import * as React from 'react'; import {memo} from 'react'; import {Text} from 'react-native'; const {useCallback, useState} = React; const ItemListMemo = 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, };