채팅 시스템을 구축하고 창에 들어갈 때와 새 메시지가 들어올 때 자동으로 하단으로 스크롤하고 싶습니다. React에서 컨테이너 하단으로 자동 스크롤하는 방법은 무엇입니까?
답변
Tushar가 언급했듯이 채팅 하단에 더미 div를 유지할 수 있습니다.
render () {
return (
<div>
<div className="MessageContainer" >
<div className="MessagesList">
{this.renderMessages()}
</div>
<div style={{ float:"left", clear: "both" }}
ref={(el) => { this.messagesEnd = el; }}>
</div>
</div>
</div>
);
}
그런 다음 구성 요소가 업데이트 될 때마다 스크롤합니다 (예 : 새 메시지가 추가되면 상태가 업데이트 됨).
scrollToBottom = () => {
this.messagesEnd.scrollIntoView({ behavior: "smooth" });
}
componentDidMount() {
this.scrollToBottom();
}
componentDidUpdate() {
this.scrollToBottom();
}
여기 에서는 표준 Element.scrollIntoView 메서드를 사용하고 있습니다.
답변
새 React.createRef()
메서드 와 일치하도록 답변을 업데이트하고 싶지만 기본적으로 동일 current
하며 생성 된 ref 의 속성을 염두에 두십시오 .
class Messages extends React.Component {
const messagesEndRef = React.createRef()
componentDidMount () {
this.scrollToBottom()
}
componentDidUpdate () {
this.scrollToBottom()
}
scrollToBottom = () => {
this.messagesEnd.current.scrollIntoView({ behavior: 'smooth' })
}
render () {
const { messages } = this.props
return (
<div>
{messages.map(message => <Message key={message.id} {...message} />)}
<div ref={this.messagesEndRef} />
</div>
)
}
}
최신 정보:
이제 후크를 사용할 수 있으므로 useRef
및 useEffect
후크 사용을 추가하기 위해 답변을 업데이트하고 있습니다 . 실제 수행하는 마술 (React refs 및 scrollIntoView
DOM 메서드)은 동일하게 유지됩니다.
import React, { useEffect, useRef } from 'react'
const Messages = ({ messages }) => {
const messagesEndRef = useRef(null)
const scrollToBottom = () => {
messagesEndRef.current.scrollIntoView({ behavior: "smooth" })
}
useEffect(scrollToBottom, [messages]);
return (
<div>
{messages.map(message => <Message key={message.id} {...message} />)}
<div ref={messagesEndRef} />
</div>
)
}
또한 https://codesandbox.io/s/scrolltobottomexample-f90lz 동작을 확인하려면 (매우 기본적인) 코드 샌드 박스를 만들었습니다.
답변
사용하지 마세요 findDOMNode
ref가있는 클래스 구성 요소
class MyComponent extends Component {
componentDidMount() {
this.scrollToBottom();
}
componentDidUpdate() {
this.scrollToBottom();
}
scrollToBottom() {
this.el.scrollIntoView({ behavior: 'smooth' });
}
render() {
return <div ref={el => { this.el = el; }} />
}
}
후크가있는 기능 구성 요소 :
import React, { useRef, useEffect } from 'react';
const MyComponent = () => {
const divRref = useRef(null);
useEffect(() => {
divRef.current.scrollIntoView({ behavior: 'smooth' });
});
return <div ref={divRef} />;
}
답변
@enlitement 덕분에
사용을 피해야 합니다. 구성 요소를 추적 findDOMNode
하는 refs
데 사용할 수 있습니다.
render() {
...
return (
<div>
<div
className="MessageList"
ref={(div) => {
this.messageList = div;
}}
>
{ messageListContent }
</div>
</div>
);
}
scrollToBottom() {
const scrollHeight = this.messageList.scrollHeight;
const height = this.messageList.clientHeight;
const maxScrollTop = scrollHeight - height;
this.messageList.scrollTop = maxScrollTop > 0 ? maxScrollTop : 0;
}
componentDidUpdate() {
this.scrollToBottom();
}
참고:
답변
ref
s를 사용 하여 구성 요소를 추적 할 수 있습니다 .
ref
하나의 개별 구성 요소 (마지막 구성 요소) 를 설정하는 방법을 알고 있다면 게시하십시오!
저에게 도움이 된 것은 다음과 같습니다.
class ChatContainer extends React.Component {
render() {
const {
messages
} = this.props;
var messageBubbles = messages.map((message, idx) => (
<MessageBubble
key={message.id}
message={message.body}
ref={(ref) => this['_div' + idx] = ref}
/>
));
return (
<div>
{messageBubbles}
</div>
);
}
componentDidMount() {
this.handleResize();
// Scroll to the bottom on initialization
var len = this.props.messages.length - 1;
const node = ReactDOM.findDOMNode(this['_div' + len]);
if (node) {
node.scrollIntoView();
}
}
componentDidUpdate() {
// Scroll as new elements come along
var len = this.props.messages.length - 1;
const node = ReactDOM.findDOMNode(this['_div' + len]);
if (node) {
node.scrollIntoView();
}
}
}
답변
react-scrollable-feed 는 사용자가 이미 스크롤 가능한 섹션의 맨 아래에있는 경우 자동으로 최신 요소로 스크롤합니다. 그렇지 않으면 사용자가 같은 위치에있게됩니다. 나는 이것이 채팅 구성 요소에 매우 유용하다고 생각합니다. 🙂
여기에 다른 답변은 스크롤 막대가 어디에 있든 상관없이 매번 강제로 스크롤 할 것이라고 생각합니다. 다른 문제 scrollIntoView
는 스크롤 가능한 div가 보이지 않으면 전체 페이지를 스크롤한다는 것입니다.
다음과 같이 사용할 수 있습니다.
import * as React from 'react'
import ScrollableFeed from 'react-scrollable-feed'
class App extends React.Component {
render() {
const messages = ['Item 1', 'Item 2'];
return (
<ScrollableFeed>
{messages.map((message, i) => <div key={i}>{message}</div>)}
</ScrollableFeed>
);
}
}
특정 height
또는max-height
면책 조항 : 나는 패키지의 소유자입니다.
답변
-
메시지 컨테이너를 참조하십시오.
<div ref={(el) => { this.messagesContainer = el; }}> YOUR MESSAGES </div>
-
메시지 컨테이너를 찾고
scrollTop
속성을 동일하게 만드십시오scrollHeight
.scrollToBottom = () => { const messagesContainer = ReactDOM.findDOMNode(this.messagesContainer); messagesContainer.scrollTop = messagesContainer.scrollHeight; };
-
componentDidMount
및에서 위의 메서드를 호출합니다componentDidUpdate
.componentDidMount() { this.scrollToBottom(); } componentDidUpdate() { this.scrollToBottom(); }
이것은 내 코드에서 이것을 사용하는 방법입니다.
export default class StoryView extends Component {
constructor(props) {
super(props);
this.scrollToBottom = this.scrollToBottom.bind(this);
}
scrollToBottom = () => {
const messagesContainer = ReactDOM.findDOMNode(this.messagesContainer);
messagesContainer.scrollTop = messagesContainer.scrollHeight;
};
componentDidMount() {
this.scrollToBottom();
}
componentDidUpdate() {
this.scrollToBottom();
}
render() {
return (
<div>
<Grid className="storyView">
<Row>
<div className="codeView">
<Col md={8} mdOffset={2}>
<div ref={(el) => { this.messagesContainer = el; }}
className="chat">
{
this.props.messages.map(function (message, i) {
return (
<div key={i}>
<div className="bubble" >
{message.body}
</div>
</div>
);
}, this)
}
</div>
</Col>
</div>
</Row>
</Grid>
</div>
);
}
}