私は、Gifted-Chat と Firebase RealTime データベースを使用して (そして Expo で実行して) チャット アプリに取り組んできました。この時点で、基本的なメッセージングは機能しますが、ユーザーが上にスクロールして表示されるボタンを押したときに、アプリが以前のメッセージをロードできるようにしようとしています (このための GiftedChat 小道具を認識しています)。残念ながら、私はこれを行うのに問題があり、少し困惑しています。
私が認識している、私が直面している2つの別々の問題があります。
- loadEarlier ボタンをクリックすると、
undefined is not a function (near '...this.setState...'
実行時エラーが発生します (明らかに、そこに配置したスケルトン関数に何か問題があります)。 - より大きな問題は、現在読み込まれている最も古いメッセージの前にn個のメッセージをダウンロードする方法がまだはっきりしていないことです。GiftedChat の例とこの投稿を参考にしましたが、まだ道に迷っていることを告白しなければなりません (私が理解できる最善の方法は、メッセージをおそらくタイムスタンプで並べ替え、何らかの方法で適切な範囲を取得し、それらを解析して解析する必要があることです)。それらを状態のメッセージ配列に追加しますが、これを行う方法、特に後半の部分がわかりません)。
チャット画面のコードの関連部分と、firebase データベースの構造のスクリーンショットを以下に示します。これらの問題の両方に関する助けをいただければ幸いです。
// Your run of the mill React-Native imports.
import React, { Component } from 'react';
import { ActivityIndicator, StyleSheet, Text, View } from 'react-native';
import * as firebase from 'firebase';
// Our custom components.
import { Input } from '../components/Input';
import { Button } from '../components/Button';
import { BotButton } from '../components/BotButton';
// Array of potential bot responses. Might be a fancy schmancy Markov
// chain like thing in the future.
import {botResponses} from '../Constants.js';
// Gifted-chat import. The library takes care of fun stuff like
// rendering message bubbles and having a message composer.
import { GiftedChat } from 'react-native-gifted-chat';
// To keep keyboard from covering up text input.
import { KeyboardAvoidingView } from 'react-native';
// Because keyboard avoiding behavior is platform specific.
import {Platform} from 'react-native';
console.disableYellowBox = true;
class Chat extends Component {
state = {
messages: [],
isLoadingEarlier: false,
};
// Reference to where in Firebase DB messages will be stored.
get ref() {
return firebase.database().ref('messages');
}
onLoadEarlier() {
this.setState((previousState) => {
return {
isLoadingEarlier: true,
};
});
console.log(this.state.isLoadingEarlier)
this.setState((previousState) => {
return {
isLoadingEarlier: false,
};
});
}
// Get last 20 messages, any incoming messages, and send them to parse.
on = callback =>
this.ref
.limitToLast(20)
.on('child_added', snapshot => callback(this.parse(snapshot)));
parse = snapshot => {
// Return whatever is associated with snapshot.
const { timestamp: numberStamp, text, user } = snapshot.val();
const { key: _id } = snapshot;
// Convert timestamp to JS date object.
const timestamp = new Date(numberStamp);
// Create object for Gifted Chat. id is unique.
const message = {
_id,
timestamp,
text,
user,
};
return message;
};
// To unsubscribe from database
off() {
this.ref.off();
}
// Helper function to get user UID.
get uid() {
return (firebase.auth().currentUser || {}).uid;
}
// Get timestamp for saving messages.
get timestamp() {
return firebase.database.ServerValue.TIMESTAMP;
}
// Helper function that takes array of messages and prepares all of
// them to be sent.
send = messages => {
for (let i = 0; i < messages.length; i++) {
const { text, user } = messages[i];
const message = {
text,
user,
timestamp: this.timestamp,
};
this.append(message);
}
};
// Save message objects. Actually sends them to server.
append = message => this.ref.push(message);
// When we open the chat, start looking for messages.
componentDidMount() {
this.on(message =>
this.setState(previousState => ({
messages: GiftedChat.append(previousState.messages, message),
}))
);
}
get user() {
// Return name and UID for GiftedChat to parse
return {
name: this.props.navigation.state.params.name,
_id: this.uid,
};
}
// Unsubscribe when we close the chat screen.
componentWillUnmount() {
this.off();
}
render() {
return (
<View>
<GiftedChat
loadEarlier={true}
onLoadEarlier={this.onLoadEarlier}
isLoadingEarlier={this.state.isLoadingEarlier}
messages={this.state.messages}
onSend={this.send}
user={this.user}
/>
</View>
);
}
}
export default Chat;