当前位置:   article > 正文

audio_video_img图片音视频异步可视化加载

audio_video_img图片音视频异步可视化加载

最近在做即时消息,消息类型除了文字还有音频、视频、图片展示,如果消息很多,在切换聊天框时,会有明显卡顿,后续做了懒加载,方案是只加载用户能看到的资源,看不到的先不加载;

LazyAudio.tsx
import {useRef, useEffect} from 'react';

interface PropsType {
    url: string,
    className?: string,
}

export default function LazyAudio({url, className= ''}: PropsType) {
    const currentRef: any = useRef(null)
    useEffect(() => {
        if (!currentRef.current) {
            return;
        }
        const observer = new IntersectionObserver(([{ isIntersecting }]) => {
            // 表示进入了可视范围
            if (isIntersecting) {
                if (!currentRef.current.src) {
                    currentRef.current.src = url;
                    observer.unobserve(currentRef.current);
                }
            }
        });
        observer.observe(currentRef.current);
        
        return () => {
            if (currentRef.current) {
                observer.unobserve(currentRef.current);
            }
        }
    }, [])
    return (
        <>
            <audio
                ref={currentRef}
                controls 
                preload="metadata" 
                className={`${className} `}>
            </audio>
        </>
    )
}
  • 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
LazyImg.tsx
import {useEffect, useRef} from 'react';

interface PropsType {
    url: string,

    className?: string,
    onClick: () => void,
}
export default function LazyImg({url, className = '', onClick}: PropsType) {
    const currentRef: any = useRef(null)
    
    // 图片加载完成后
    const imageLoaded = () => {
        // 图片加载完成后重置了高度
        currentRef.current.style.height = 'auto';
    }
    useEffect(() => {
        if (!currentRef.current) {
            return;
        }
        const observer = new IntersectionObserver(([{ isIntersecting }]) => {
            // 表示进入了可视范围
            if (isIntersecting) {
                if (!currentRef.current.src) {
                    currentRef.current.src = url;
                    observer.unobserve(currentRef.current);
                }
            }
        });
        observer.observe(currentRef.current);
        
        return () => {
            if (currentRef.current) {
                observer.unobserve(currentRef.current);
            }
        }
    }, [])
    return <>
        <img alt="无法加载图片"
            width={320}
            height={320}
            ref={currentRef}
            onClick={onClick}
            onLoad={imageLoaded}
            className={`${className} `}/>
    </>
}
  • 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
LazyVideo.tsx
import {useEffect, useRef} from 'react';

interface PropsType {
    url: string,
    className?: string,
    width?: number,
    height?: number,
}
export default function LazyVideo({url, className = '', width = 320, height = 240}: PropsType) {
    const currentRef: any = useRef(null)
    useEffect(() => {
        if (!currentRef.current) {
            return;
        }
        const observer = new IntersectionObserver(([{ isIntersecting }]) => {
            // 表示进入了可视范围
            if (isIntersecting) {
                if (!currentRef.current.src) {
                    currentRef.current.src = url;
                    observer.unobserve(currentRef.current);
                }
            }
        });
        observer.observe(currentRef.current);
        
        return () => {
            if (currentRef.current) {
                observer.unobserve(currentRef.current);
            }
        }
    }, [])
    return (
        <>
            <video 
                ref={currentRef}
                width={width}
                height={height}
                controls 
                preload="metadata"
                className={`${className} `}
                >
            </video>
        </>
    )
}
  • 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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/373175
推荐阅读
相关标签
  

闽ICP备14008679号