回答:
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メソッドを使用しています。
this.messagesEnd.scrollIntoView()
私にとってはうまくいきました。使用する必要はありませんでしたfindDOMNode()
。
scrollToBottom(){this.scrollBottom.scrollIntoView({ behavior: 'smooth' })}
新しいバージョンで機能するように機能を変更
新しい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
and 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
this.messagesEnd.current
常に存在しています。それでもthis.messagesEnd.current
、最初のレンダリングの前に呼び出すと、指摘したエラーが発生することに注意することが重要です。Thnx。
this.messagesEnd
scrollToメソッドの最初の例には何がありますか?
useEffect
に配置する方法の必要性() => {scrollToBottom()}
。とにかくありがとう
使ってはいけません findDOMNode
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} />;
}
behavior
必要があります(「編集内容は少なくとも6文字である必要があるため、編集できません」)。
scrollIntoView
withのサポートsmooth
は非常に貧弱です。
@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();
}
}
}
メッセージコンテナを参照します。
<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>
);
}
}
反応スクロール可能なフィードは、ユーザーが既にスクロール可能なセクションの下部にいた場合、最新の要素まで自動的にスクロールします。それ以外の場合は、ユーザーが同じ位置に残ります。これはチャットコンポーネントに非常に役立つと思います。
ここでの他の答えは、スクロールバーがどこにあっても毎回強制的にスクロールすると思います。もう1つの問題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
免責事項:私はパッケージの所有者です
メッセージの最後に空の要素を作成し、その要素までスクロールしました。参照を追跡する必要はありません。
React Hooksでこれを行う場合は、この方法に従うことができます。ダミーのdivはチャットの下部に配置されています。ここではuseRefフックを使用しています。
フックAPIリファレンス:https : //reactjs.org/docs/hooks-reference.html#useref
import React, { useEffect, useRef } from 'react';
const ChatView = ({ ...props }) => {
const el = useRef(null);
useEffect(() => {
el.current.scrollIntoView({ block: 'end', behavior: 'smooth' });
});
return (
<div>
<div className="MessageContainer" >
<div className="MessagesList">
{this.renderMessages()}
</div>
<div id={'el'} ref={el}>
</div>
</div>
</div>
);
}
私のReactJSバージョン:16.12.0
render()
関数内のHTML構造
render()
return(
<body>
<div ref="messageList">
<div>Message 1</div>
<div>Message 2</div>
<div>Message 3</div>
</div>
</body>
)
)
scrollToBottom()
要素の参照を取得する関数。scrollIntoView()
機能に応じてスクロールします。
scrollToBottom = () => {
const { messageList } = this.refs;
messageList.scrollIntoView({behavior: "smooth", block: "end", inline: "nearest"});
}
内部componentDidMount()
で上記の関数を呼び出し、componentDidUpdate()
developer.mozilla.orgにElement.scrollIntoView()
アクセスして詳細を確認してください
実例:
DOM scrollIntoView
メソッドを使用して、コンポーネントをビューに表示できます。
このため、コンポーネントのレンダリング中は、ref
属性を使用してDOM要素の参照IDを指定するだけです。次にscrollIntoView
、componentDidMount
ライフサイクルでメソッドを使用します。私はこのソリューションのための実用的なサンプルコードを置いています。以下は、メッセージが受信されるたびにレンダリングされるコンポーネントです。このコンポーネントをレンダリングするためのコード/メソッドを記述する必要があります。
class ChatMessage extends Component {
scrollToBottom = (ref) => {
this.refs[ref].scrollIntoView({ behavior: "smooth" });
}
componentDidMount() {
this.scrollToBottom(this.props.message.MessageId);
}
render() {
return(
<div ref={this.props.message.MessageId}>
<div>Message content here...</div>
</div>
);
}
}
ここthis.props.message.MessageId
で渡された特定のチャットメッセージの一意のIDですprops
import React, {Component} from 'react';
export default class ChatOutPut extends Component {
constructor(props) {
super(props);
this.state = {
messages: props.chatmessages
};
}
componentDidUpdate = (previousProps, previousState) => {
if (this.refs.chatoutput != null) {
this.refs.chatoutput.scrollTop = this.refs.chatoutput.scrollHeight;
}
}
renderMessage(data) {
return (
<div key={data.key}>
{data.message}
</div>
);
}
render() {
return (
<div ref='chatoutput' className={classes.chatoutputcontainer}>
{this.state.messages.map(this.renderMessage, this)}
</div>
);
}
}
彼の良い答えを「メタカーミット」に感謝しますが、私はそれを少し良くすることができると思います。下にスクロールするには、これを使用する必要があります:
scrollToBottom = () => {
this.messagesEnd.scrollIntoView({ behavior: "smooth", block: "end", inline: "nearest" });
}
しかし、一番上にスクロールしたい場合は、これを使用する必要があります。
scrollToTop = () => {
this.messagesEnd.scrollIntoView({ behavior: "smooth", block: "start", inline: "nearest" });
}
そしてこのコードは一般的です:
componentDidMount() {
this.scrollToBottom();
}
componentDidUpdate() {
this.scrollToBottom();
}
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>
);
}
使用する React.createRef()
class MessageBox extends Component {
constructor(props) {
super(props)
this.boxRef = React.createRef()
}
scrollToBottom = () => {
this.boxRef.current.scrollTop = this.boxRef.current.scrollHeight
}
componentDidUpdate = () => {
this.scrollToBottom()
}
render() {
return (
<div ref={this.boxRef}></div>
)
}
}
これは、TypeScriptでこれを解決する方法です(スクロールするターゲット要素への参照を使用)。
class Chat extends Component <TextChatPropsType, TextChatStateType> {
private scrollTarget = React.createRef<HTMLDivElement>();
componentDidMount() {
this.scrollToBottom();//scroll to bottom on mount
}
componentDidUpdate() {
this.scrollToBottom();//scroll to bottom when new message was added
}
scrollToBottom = () => {
const node: HTMLDivElement | null = this.scrollTarget.current; //get the element via ref
if (node) { //current ref can be null, so we have to check
node.scrollIntoView({behavior: 'smooth'}); //scroll to the targeted element
}
};
render <div>
{message.map((m: Message) => <ChatMessage key={`chat--${m.id}`} message={m}/>}
<div ref={this.scrollTarget} data-explanation="This is where we scroll to"></div>
</div>
}
フルバージョン(Typescript):
import * as React from 'react'
export class DivWithScrollHere extends React.Component<any, any> {
loading:any = React.createRef();
componentDidMount() {
this.loading.scrollIntoView(false);
}
render() {
return (
<div ref={e => { this.loading = e; }}> <LoadingTile /> </div>
)
}
}
Property 'scrollIntoView' does not exist on type 'RefObject<unknown>'.
など Type 'HTMLDivElement | null' is not assignable to type 'RefObject<unknown>'. Type 'null' is not assignable to type 'RefObject<unknown>'.
...