gpt4 book ai didi

javascript - 带有云 Firestore 分页的 React-native-gifted-chat

转载 作者:行者123 更新时间:2023-12-03 07:10:07 26 4
gpt4 key购买 nike

我正在使用 Firestore 来存储消息。为了优化移动应用程序性能,我想在 firestore 查询中设置一个限制(50)。它运行良好,并实现了 Prop 中可用的 onLoadEarlier React-native-gifted-chat。

一切正常。

但是,当我在聊天中发送一条新消息时,在向上滚动查看较早的消息后,当然只有最后 50 条消息和新消息可用。

因此,每次我在 Firestore 数据库中添加一条消息时,都会执行 onSnapshot(在 useEffect 中)并应用限制查询。

有没有办法避免这种情况?

谢谢。

这是我的 useEffect :

useEffect(() => {
const messagesListener = firestore()
.collection('groups')
.doc(group._id)
.collection('messages')
.orderBy('createdAt', 'desc')
.limit(50)
.onSnapshot(querySnapshot => {
const newMessages = querySnapshot.docs.map(doc => {
const firebaseData = doc.data();

const data = {
_id: doc.id,
text: '',
createdAt: new Date().getTime(),
...firebaseData
};

return data;
});

setMessages(previousMessages => {
return GiftedChat.append(previousMessages, newMessages);
});
});

return () => messagesListener();
}, []);

最佳答案

我在 react-native 中使用 FlatList 来呈现聊天,我不得不对聊天列表进行分页。由于实时监听器不支持 Firestore 查询游标,我创建了两个列表,recentChatsoldChats

我使用实时监听器 query.onSnapshotoldChats 使用光标 startAfter 填充 recentChats。 FlatList 数据是两个列表的组合,我负责合并逻辑。

const MESSAGE_LIMIT = 15;

const ChatWindow = props => {
const { sessionId, postMessage, onSendTemplateButtonPress } = props;

// Firestore cursor is not supported in query.onSnapshot so maintaining two chat list
// oldChats -> chat list via cursor, recentChats -> chat list via live listener
const [oldChats, setOldChats] = useState([]);
const [recentChats, setRecentChats] = useState([]);

// if true, show a loader at the top of chat list
const [moreChatsAvailable, setMoreChatsAvailable] = useState(true);

const [inputMessage, setInputMessage] = useState('');

useEffect(() => {
const query = getGuestChatMessagesQuery(sessionId)
.limit(MESSAGE_LIMIT);
const listener = query.onSnapshot(querySnapshot => {
let chats = [];
querySnapshot.forEach(snapshot => {
chats.push(snapshot.data());
});
// merge recentChats & chats
if (recentChats.length > 0) {
const newRecentChats = [];
for (let i = 0; i < chats.length; i++) {
if (chats[i].sessionId === recentChats[0].sessionId) {
break;
}
newRecentChats.push(chats[i]);
}
setRecentChats([...newRecentChats, ...recentChats]);
} else {
setRecentChats(chats);
if (chats.length < MESSAGE_LIMIT) {
setMoreChatsAvailable(false);
}
}
});

return () => {
// unsubscribe listener
listener();
};
}, []);

const onMessageInputChange = text => {
setInputMessage(text);
};

const onMessageSubmit = () => {
postMessage(inputMessage);
setInputMessage('');
};

const renderFlatListItem = ({ item }) => {
return (<ChatBubble chat={item} />);
};

const onChatListEndReached = () => {
if (!moreChatsAvailable) {
return;
}
let startAfterTime;
if (oldChats.length > 0) {
startAfterTime = oldChats[oldChats.length - 1].time;
} else if (recentChats.length > 0) {
startAfterTime = recentChats[recentChats.length - 1].time;
} else {
setMoreChatsAvailable(false);
return;
}
// query data using cursor
getGuestChatMessagesQuery(sessionId)
.startAfter(startAfterTime)
.limit(MESSAGE_LIMIT)
.get()
.then(querySnapshot => {
let chats = [];
querySnapshot.forEach(snapshot => {
chats.push(snapshot.data());
});
if (chats.length === 0) {
setMoreChatsAvailable(false);
} else {
setOldChats([...oldChats, ...chats]);
}
});
};

return (
<View style={[GenericStyles.fill, GenericStyles.p16]}>
<FlatList
inverted
data={[...recentChats, ...oldChats]}
renderItem={renderFlatListItem}
keyExtractor={item => item.messageId}
onEndReached={onChatListEndReached}
onEndReachedThreshold={0.2}
ListFooterComponent={moreChatsAvailable ? <ActivityIndicator /> : null}
/>
{
Singleton.isStaff ?
null:
<ChatInput
onMessageInputChange={onMessageInputChange}
onMessageSubmit={onMessageSubmit}
inputMessage={inputMessage}
style={GenericStyles.selfEnd}
onSendTemplateButtonPress={onSendTemplateButtonPress}
/>
}
</View>
);
};

关于javascript - 带有云 Firestore 分页的 React-native-gifted-chat,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64594631/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com