forked from rDrama/rDrama
1
0
Fork 0

Don't scroll down unless you need to

master
Outrun Colors 2022-09-24 14:32:52 -05:00
parent 636d42dff1
commit 30ed8b6171
No known key found for this signature in database
GPG Key ID: 0426976DCEFE6073
2 changed files with 30 additions and 11 deletions

View File

@ -1,4 +1,4 @@
import React from "react";
import React, { useEffect, useRef } from "react";
import { DndProvider, useDrop } from "react-dnd";
import { HTML5Backend } from "react-dnd-html5-backend";
import {
@ -8,9 +8,11 @@ import {
UserList,
UsersTyping,
} from "./features";
import { ChatProvider, DrawerProvider, useDrawer } from "./hooks";
import { ChatProvider, DrawerProvider, useChat, useDrawer } from "./hooks";
import "./App.css";
const SCROLL_CANCEL_THRESHOLD = 200;
export function App() {
return (
<DndProvider backend={HTML5Backend}>
@ -28,6 +30,30 @@ function AppInner() {
accept: "drawer",
});
const { open, config } = useDrawer();
const contentWrapper = useRef<HTMLDivElement>(null);
const initiallyScrolledDown = useRef(false);
const { messages } = useChat();
useEffect(() => {
if (messages.length > 0) {
if (initiallyScrolledDown.current) {
/* We only want to scroll back down on a new message
if the user is not scrolled up looking at previous messages. */
const scrollableDistance = contentWrapper.current.scrollHeight - contentWrapper.current.clientHeight;
const scrolledDistance = contentWrapper.current.scrollTop;
const hasScrolledEnough = scrollableDistance - scrolledDistance >= SCROLL_CANCEL_THRESHOLD;
if (hasScrolledEnough) {
return;
}
} else {
// Always scroll to the bottom on first load.
initiallyScrolledDown.current = true;
}
contentWrapper.current.scrollTop = contentWrapper.current.scrollHeight;
}
}, [messages]);
return (
<div className="App" ref={dropRef}>
@ -37,14 +63,12 @@ function AppInner() {
<ChatHeading />
</div>
<div className="App-center">
<div className="App-content">
<div id="chatWrapper" style={{ flex: 1, height: "100%" }}>
<div className="App-content" ref={contentWrapper}>
{open ? (
<div className="App-drawer">{config.content}</div>
) : (
<ChatMessageList />
)}
</div>
</div>
<div className="App-side">
<UserList />

View File

@ -93,14 +93,9 @@ export function ChatMessage({
export function ChatMessageList() {
const { messages } = useChat();
const messageWrapper = useRef<HTMLDivElement>(null);
useEffect(() => {
messageWrapper.current.scrollTop = messageWrapper.current.scrollHeight;
}, [messages]);
return (
<div className="ChatMessageList" ref={messageWrapper}>
<div className="ChatMessageList">
{messages.map((message, index) => (
<ChatMessage
key={key(message)}