update message scroll
This commit is contained in:
parent
e89785080b
commit
7f3d850bf6
|
|
@ -25,7 +25,7 @@ import predictionApi from 'api/prediction'
|
||||||
import useApi from 'hooks/useApi'
|
import useApi from 'hooks/useApi'
|
||||||
|
|
||||||
// Const
|
// Const
|
||||||
import { baseURL } from 'store/constant'
|
import { baseURL, maxScroll } from 'store/constant'
|
||||||
import { throttle } from 'utils/genericHelper'
|
import { throttle } from 'utils/genericHelper'
|
||||||
|
|
||||||
export const ChatMessage = ({ open, chatflowid, isDialog }) => {
|
export const ChatMessage = ({ open, chatflowid, isDialog }) => {
|
||||||
|
|
@ -33,7 +33,6 @@ export const ChatMessage = ({ open, chatflowid, isDialog }) => {
|
||||||
const customization = useSelector((state) => state.customization)
|
const customization = useSelector((state) => state.customization)
|
||||||
|
|
||||||
const ps = useRef()
|
const ps = useRef()
|
||||||
const messagesEndRef = useRef()
|
|
||||||
|
|
||||||
const [userInput, setUserInput] = useState('')
|
const [userInput, setUserInput] = useState('')
|
||||||
const [loading, setLoading] = useState(false)
|
const [loading, setLoading] = useState(false)
|
||||||
|
|
@ -51,7 +50,9 @@ export const ChatMessage = ({ open, chatflowid, isDialog }) => {
|
||||||
const getIsChatflowStreamingApi = useApi(chatflowsApi.getIsChatflowStreaming)
|
const getIsChatflowStreamingApi = useApi(chatflowsApi.getIsChatflowStreaming)
|
||||||
|
|
||||||
const scrollToBottom = () => {
|
const scrollToBottom = () => {
|
||||||
messagesEndRef.current?.scrollIntoView(true)
|
if (ps.current) {
|
||||||
|
ps.current.scrollTo({ top: maxScroll })
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const onChange = useCallback((e) => setUserInput(e.target.value), [setUserInput])
|
const onChange = useCallback((e) => setUserInput(e.target.value), [setUserInput])
|
||||||
|
|
@ -170,8 +171,9 @@ export const ChatMessage = ({ open, chatflowid, isDialog }) => {
|
||||||
|
|
||||||
// Auto scroll chat to bottom
|
// Auto scroll chat to bottom
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
scrollThrottle()
|
scrollToBottom()
|
||||||
}, [messages, scrollThrottle])
|
console.log('throeel')
|
||||||
|
}, [messages])
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (isDialog && inputRef) {
|
if (isDialog && inputRef) {
|
||||||
|
|
@ -292,7 +294,6 @@ export const ChatMessage = ({ open, chatflowid, isDialog }) => {
|
||||||
</Box>
|
</Box>
|
||||||
)
|
)
|
||||||
})}
|
})}
|
||||||
<div className='h-[162px] bg-white dark:bg-[#343541]' ref={messagesEndRef} />
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Divider />
|
<Divider />
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue