Always scroll to the bottom for now

remotes/1693176582716663532/tmp_refs/heads/watchparty
Outrun Colors 2022-09-24 00:00:20 -05:00
parent 693457a393
commit 34a515ca1f
No known key found for this signature in database
GPG Key ID: 0426976DCEFE6073
3 changed files with 5 additions and 9 deletions

View File

@ -1,6 +1,6 @@
{
"name": "chat",
"version": "0.0.6",
"version": "0.0.7",
"main": "index.js",
"license": "MIT",
"dependencies": {

View File

@ -93,15 +93,11 @@ export function ChatMessage({
export function ChatMessageList() {
const { messages } = useChat();
const scrolledOnce = useRef(false);
const messageWrapper = useRef<HTMLDivElement>(null);
useEffect(() => {
if (messages.length > 0 && !scrolledOnce.current) {
scrolledOnce.current = true;
messageWrapper.current.scrollTop = messageWrapper.current?.scrollHeight;
}
}, [messages])
messageWrapper.current.scrollTop = messageWrapper.current.scrollHeight;
}, [messages]);
return (
<div className="ChatMessageList" ref={messageWrapper}>

View File

@ -36,8 +36,8 @@ set CACHE_VER = {
'js/lozad.js': 4000,
'js/sort_table.js': 4001,
'css/chat_done.css': 1005,
'js/chat_done.js': 1005,
'css/chat_done.css': 1006,
'js/chat_done.js': 1006,
}
-%}