Как автоматически прокрутить сверху вниз в реакции на мессенджер или других?
class MessageBox extends Component {
componentDidMount() {
this.scrollToBottom();
}
componentDidUpdate() {
this.scrollToBottom();
}
scrollToBottom = () => {
this.messagesEnd.scrollIntoView({ behavior: "smooth" });
}
render() {
return (
<div className="yourClass">
<div className="chat-textarea-box">
<MessageBox />
</div>
<div ref={(el) => { this.messagesEnd = el; }}></div>
</div>
)
}
}
Пожалуйста, предоставьте мне лучшие решения