Scroll chat input into view when focused

remotes/1693176582716663532/tmp_refs/heads/watchparty
Outrun Colors 2022-09-26 19:48:23 -05:00
parent 6687e89e1c
commit 1ff185fe9f
No known key found for this signature in database
GPG Key ID: 0426976DCEFE6073
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "chat",
"version": "0.1.10",
"version": "0.1.11",
"main": "./src/index.tsx",
"license": "MIT",
"dependencies": {

View File

@ -84,6 +84,9 @@ export function UserInput() {
},
[draft]
);
const handleFocus = useCallback(() => {
builtChatInput.current?.scrollIntoView({ behavior: "smooth" });
}, []);
return (
<form ref={form} className="UserInput" onSubmit={handleSendMessage}>
@ -118,6 +121,7 @@ export function UserInput() {
rows={1}
onChange={handleChange}
onKeyUp={handleKeyUp}
onFocus={handleFocus}
placeholder="Message"
autoComplete="off"
value={draft}