web-dev-qa-db-ja.com

追加する方法は、フラットリストのSpinnerでさらにレコードを読み込む(-10〜10レコードを意味する)手動で!サーバー側を使用していない

こんにちは、私はFlatListに基づいてサンプルアプリケーションを開発しています。これが私のコードです。実際、アカウントに50個のレコードがあるように、レコード全体を表示しました。しかし、現在、私は50件のレコード全体を表示しています。 Bur iは、10件のレコードに追加した後、10件表示する必要があります。しかし、私はFlatListに追加することを知りません。

これが私のコードです:

<FlatList
                    data={this.state.profiles}
                    renderItem={({ item, index }) => this.renderCard(item, index)}
                    keyExtractor={item => item.id}
                    ItemSeparatorComponent={() => <Divider style={{ marginTop: 5, marginLeft: width * 0.2 + 20 }} parentStyle={{ backgroundColor: globalStyles.BG_COLOR, alignItems: 'baseline' }} />}
                />


renderCard (profile, index) {
    console.log('rendercard', profile);
    //
    return (
        <View key={profile.id}>
            <ProfileCard
                profile={profile}
                style={styles.card}
                onPress={() => this.props.screenProps.rootNavigation.navigate('Profile', { profile: this.state.profile, id: profile.id })}
                // onPress={() => alert('PROFILE')}
                onAddClick={() => this.setState({ connectionPageVisible: true, cardProfile: profile })}
                connectedIds={(this.props.screenProps && this.props.screenProps.connectedIds) || this.props.connectedIds}
            />
        </View>
    );
}

アクティビティインジケータを使用して、さらにレコードをロードしてください。前もって感謝します

12
Lavaraju

あなたの問題を正しく理解していれば、Flatlistinfinite scrollingを探しています。 onEndReachedおよびonEndThreshold属性を使用してこれを実現できます。

次のプロトタイプを検討してください

レコードをthis.state.profilesに保存するとします。

サーバーからの新しいレコードのプル

コンストラクターで初期ページ番号を設定する

constructor(props){
   super(props);
   this.state = { page: 0}
}

新しいレコードを取得する

fetchRecords = (page) => {
    // following API will changed based on your requirement
    fetch(`${API}/${page}/...`)
    .then(res => res.json())
    .then(response => {
       this.setState({
           profiles: [...this.state.profiles, ...response.data] // assuming response.data is an array and holds new records
       });
    });
}

スクロールを処理する

onScrollHandler = () => {
     this.setState({
        page: this.state.page + 1
     }, () => {
        this.fetchRecords(this.state.page);
     });
}

レンダリング機能

render() {
    return(
        ...
        <FlatList
           data={this.state.profiles}
           renderItem={({ item, index }) => this.renderCard(item, index)}
           keyExtractor={item => item.id}
           ItemSeparatorComponent={() => <Divider style={{ marginTop: 5, marginLeft: width * 0.2 + 20 }} parentStyle={{ backgroundColor: globalStyles.BG_COLOR, alignItems: 'baseline' }} />}
           onEndReached={this.onScrollHandler}
           onEndThreshold={0}
        />
        ...
    );
}

ローカル更新

すでにすべてのデータを取得しているが、一度に10のみを表示する場合は、fetchRecordsを変更するだけです。

fetchRecords = (page) => {
  // assuming this.state.records hold all the records
  const newRecords = []
  for(var i = page * 10, il = i + 10; i < il && i < this.state.records.length; i++){
      newRecords.Push(this.state.records[i]);
  }
  this.setState({
    profiles: [...this.state.profiles, ...newRecords]
  });
}

上記のアプローチでは、レコードのプル中にActivity Indicatorが表示されます。

これが役立つことを願っています!

12
Prasun