SectionList - maintainVisibleContentPosition not working as expected.
まだ誰も着手していません。
- 主要言語
- C++
- スター
- 127k
- フォーク
- 25.3k
- 平均マージ
- 1日 23時間
- マージ済み PR(30日)
- 4
説明
Description
I am implementing a bidirectional chat. When prepending bubble messages to my sectionlist, the look-and-feel is not smoothy, the scroll position is auto-scrolled to the top. In other words, the new content inserted at the top is moving down the current visible content.
Testing on iPhone 11 pro, iOS 14.3
React Native version:
System:
OS: Windows 10 10.0.19041
CPU: (12) x64 Intel(R) Core(TM) i7-8750H CPU @ 2.20GHz
Memory: 8.07 GB / 15.85 GB
Binaries:
Node: 12.18.1 - C:\Program Files\nodejs\node.EXE
Yarn: 1.22.4 - C:\Program Files (x86)\Yarn\bin\yarn.CMD
npm: 6.14.5 - C:\Program Files\nodejs\npm.CMD
Watchman: Not Found
SDKs:
Android SDK: Not Found
Windows SDK: Not Found
IDEs:
Android Studio: Version 3.6.0.0 AI-192.7142.36.36.6241897
Visual Studio: Not Found
Languages:
Java: 1.8.0_221
Python: 3.7.4
npmPackages:
@react-native-community/cli: Not Found
react: ^16.13.1 => 16.14.0
react-native: ^0.63.4 => 0.63.4
react-native-windows: ^0.63.16 => 0.63.16
Steps To Reproduce
Provide a detailed list of steps that reproduce the issue.
- Create a bidirectional SectionList with pagination.
- Prepend 20 items to it when top reached.
const keyExtractor = useCallback(({ id }) => id, []);
const renderItem = useCallback(({ item, index }) => {
const { content, date, mine } = item;
const { onBubbleLongPress } = props;
return (
<View
onLayout={(event) => {
itemHeights.current[index] = event.nativeEvent.layout.height;
}}
>
<Bubble
content={content}
date={date}
mine={mine}
onLongPress={() => onBubbleLongPress?.(item)}
/>
</View>
);
}, []);
const handleOnScroll = ({ nativeEvent }) => {
if (isScrollCloseToTop(nativeEvent)) {
props.onStartReached?.();
}
};
const isScrollCloseToTop = ({ contentOffset, contentSize }) => {
const currentYOffset = contentOffset.y;
const diff = currentYOffset - lastYOffset.current;
lastYOffset.current = contentOffset.y;
// Close to top when scrolling to the top and distance is <= 30% content's height
return diff < 0 && contentOffset.y <= 0.3 * contentSize.height;
};
return (
<SectionList
sections={sections}
keyExtractor={keyExtractor}
renderItem={renderItem}
renderSectionHeader={renderSectionHeader}
onScroll={handleOnScroll}
maintainVisibleContentPosition={{
minIndexForVisible: 0,
}}
/>
);
Expected Results
New content not moving down the current visible content.
Snack, code example, screenshot, or link to a repository:
I am getting the same behaviour of this snack https://snack.expo.io/@rainliu123/flatlisttest
Note: not only for the first prepend. For all of them.
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
issue に記載されている SectionList の再現から始め、リンクされた Expo Snack を実行してください。maintainVisibleContentPosition を minIndexForVisible: 0 に設定して 20 個の項目を先頭に追加することで双方向リストを再現し、観測されたスクロールの移動を、表示中のコンテンツが移動しないという期待される結果と比較してください。issue ではソースファイルもテストも特定されていません。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- javascript, react-native
- 領域
- mobile
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 35/100