wujingjing
2024-11-12 91fbe6ea41b0451a17aa1f6654faa9806b7f1817
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
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';
import { debounce } from '/@/utils/util';
 
export type UseScrollToBottomOption = {
    chatListDom: Ref<HTMLDivElement>;
};
 
export const useScrollToBottom = (option: UseScrollToBottomOption) => {
    const { chatListDom } = option;
 
    const scrollToBottom = () => {
        nextTick(() => {
            if (chatListDom.value.scrollHeight > chatListDom.value.clientHeight) {
                chatListDom.value.scrollTop = chatListDom.value.scrollHeight - chatListDom.value.clientHeight;
            }
        });
    };
 
    const scrollToTop = () => {
        nextTick(() => {
            chatListDom.value.scrollTop = 0;
        });
    };
    const debounceAmisScroll = debounce(({ instance }) => {
        scrollToBottom();
    }, 500);
 
    // emitter.on('amis.page.ready', debounceAmisScroll);
 
    // onUnmounted(() => {
    //     emitter.off('amis.page.ready');
    // });
 
    onActivated(() => {
        scrollToBottom();
    });
 
    return {
        scrollToBottom,
        scrollToTop,
    };
};