wujingjing
2024-09-10 68994735dddb8d2be65149aa605ec0ac12e8775a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import type { ComputedRef, Ref } from 'vue';
import { nextTick, onActivated, onUnmounted, ref, watch } from 'vue';
import type { ChatMessage } from '../model/types';
import emitter from '/@/utils/mitt';
 
export type UseScrollToBottomOption = {
    chatListDom: Ref<HTMLDivElement>;
    displayMessageList: ComputedRef<ChatMessage[]>;
};
 
export const useScrollToBottom = (option:UseScrollToBottomOption) => {
    const {chatListDom,displayMessageList} = option;
 
    const scrollToBottom = () => {
        if (!chatListDom.value) return;
        const parent = chatListDom.value.parentElement;
        if(!parent)return;
        if(parent.scrollHeight>parent.clientHeight){
            parent.scrollTop = parent.scrollHeight - parent.clientHeight;
        }
    };
 
    emitter.on('amis.page.ready',({instance})=>{
        nextTick(()=>{
            scrollToBottom();
        })
    })
    const forbidScroll = ref(false);
    watch(
        displayMessageList,
        () => {
            if (forbidScroll.value) return;
            nextTick(() => scrollToBottom());
        },
        {
            deep: true,
        }
    );
    onUnmounted(()=>{
        emitter.off('amis.page.ready');
    })
 
    onActivated(() => {
        if (forbidScroll.value) return;
        nextTick(() => scrollToBottom());
    });
 
    return {
        forbidScroll
    };
};