mirror of https://github.com/msgbyte/tailchat
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.9 KiB
TypeScript
73 lines
1.9 KiB
TypeScript
import React, { useRef } from 'react';
|
|
import { ChatBoxContextProvider, useConverseMessage } from 'tailchat-shared';
|
|
import { AlertErrorView } from '../AlertErrorView';
|
|
import { ChatBoxPlaceholder } from './ChatBoxPlaceholder';
|
|
import { ChatInputBox } from './ChatInputBox';
|
|
import { ChatMessageList, ChatMessageListRef } from './ChatMessageList';
|
|
import { ChatReply } from './ChatReply';
|
|
import { useMessageAck } from './useMessageAck';
|
|
|
|
type ChatBoxProps =
|
|
| {
|
|
converseId: string;
|
|
isGroup: false;
|
|
groupId?: string;
|
|
}
|
|
| {
|
|
converseId: string;
|
|
isGroup: true;
|
|
groupId: string;
|
|
};
|
|
const ChatBoxInner: React.FC<ChatBoxProps> = React.memo((props) => {
|
|
const { converseId, isGroup } = props;
|
|
const { messages, loading, error, handleSendMessage } = useConverseMessage({
|
|
converseId,
|
|
isGroup,
|
|
});
|
|
const chatMessageListRef = useRef<ChatMessageListRef>(null);
|
|
const { updateConverseAck } = useMessageAck(converseId, messages);
|
|
|
|
if (loading) {
|
|
return <ChatBoxPlaceholder />;
|
|
}
|
|
|
|
if (error) {
|
|
return <AlertErrorView error={error} />;
|
|
}
|
|
|
|
return (
|
|
<div className="w-full h-full flex flex-col select-text">
|
|
<ChatMessageList
|
|
ref={chatMessageListRef}
|
|
messages={messages}
|
|
onUpdateReadedMessage={updateConverseAck}
|
|
/>
|
|
|
|
<ChatReply />
|
|
|
|
<ChatInputBox
|
|
onSendMsg={(msg) => {
|
|
handleSendMessage({
|
|
converseId: props.converseId,
|
|
groupId: props.groupId,
|
|
content: msg,
|
|
}).then(() => {
|
|
// 发送消息后滚动到底部
|
|
chatMessageListRef.current?.scrollToBottom();
|
|
});
|
|
}}
|
|
/>
|
|
</div>
|
|
);
|
|
});
|
|
ChatBoxInner.displayName = 'ChatBoxInner';
|
|
|
|
export const ChatBox: React.FC<ChatBoxProps> = React.memo((props) => {
|
|
return (
|
|
<ChatBoxContextProvider>
|
|
<ChatBoxInner {...props} />
|
|
</ChatBoxContextProvider>
|
|
);
|
|
});
|
|
ChatBox.displayName = 'ChatBox';
|