Browse Source

moved scroll to bottom btn to own comp

pull/2151/head
t1enne 4 years ago
parent
commit
892532dfa2
  1. 28
      web/components/chat/ChatContainer/ScrollToBotBtn.tsx

28
web/components/chat/ChatContainer/ScrollToBotBtn.tsx

@ -0,0 +1,28 @@ @@ -0,0 +1,28 @@
import { VerticalAlignBottomOutlined } from '@ant-design/icons';
import { Button } from 'antd';
import { FC, MutableRefObject } from 'react';
import { ChatMessage } from '../../../interfaces/chat-message.model';
import styles from './ChatContainer.module.scss';
type Props = {
chatContainerRef: MutableRefObject<any>;
messages: ChatMessage[];
};
export const ScrollToBotBtn: FC<Props> = ({ chatContainerRef, messages }) => (
<div className={styles.toBottomWrap}>
<Button
type="default"
style={{ color: 'currentColor' }}
icon={<VerticalAlignBottomOutlined />}
onClick={() =>
chatContainerRef.current.scrollToIndex({
index: messages.length - 1,
behavior: 'smooth',
})
}
>
Go to last message
</Button>
</div>
);
Loading…
Cancel
Save