File size: 2,735 Bytes
f0743f4 | 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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | import { useEffect, useRef } from 'react';
interface CustomAudioElement extends HTMLAudioElement {
customStarted?: boolean;
customEnded?: boolean;
customPaused?: boolean;
customProps?: {
customStarted?: boolean;
customEnded?: boolean;
customPaused?: boolean;
};
}
type TCustomAudioResult = { audioRef: React.MutableRefObject<CustomAudioElement | null> };
export default function useCustomAudioRef({
setIsPlaying,
}: {
setIsPlaying: (isPlaying: boolean) => void;
}): TCustomAudioResult {
const audioRef = useRef<CustomAudioElement | null>(null);
useEffect(() => {
let lastTimeUpdate: number | null = null;
let sameTimeUpdateCount = 0;
const handleEnded = () => {
setIsPlaying(false);
console.log('global audio ended');
if (audioRef.current) {
audioRef.current.customEnded = true;
URL.revokeObjectURL(audioRef.current.src);
}
};
const handleStart = () => {
setIsPlaying(true);
console.log('global audio started');
if (audioRef.current) {
audioRef.current.customStarted = true;
}
};
const handlePause = () => {
console.log('global audio paused');
if (audioRef.current) {
audioRef.current.customPaused = true;
}
};
const handleTimeUpdate = () => {
if (audioRef.current) {
const currentTime = audioRef.current.currentTime;
// console.log('Current time: ', currentTime);
if (currentTime === lastTimeUpdate) {
sameTimeUpdateCount += 1;
} else {
sameTimeUpdateCount = 0;
}
lastTimeUpdate = currentTime;
if (sameTimeUpdateCount >= 1) {
console.log('Detected end of audio based on time update');
audioRef.current.pause();
handleEnded();
}
}
};
const audioElement = audioRef.current;
if (audioRef.current) {
audioRef.current.addEventListener('ended', handleEnded);
audioRef.current.addEventListener('play', handleStart);
audioRef.current.addEventListener('pause', handlePause);
audioRef.current.addEventListener('timeupdate', handleTimeUpdate);
audioRef.current.customProps = {
customStarted: false,
customEnded: false,
customPaused: false,
};
}
return () => {
if (audioElement) {
audioElement.removeEventListener('ended', handleEnded);
audioElement.removeEventListener('play', handleStart);
audioElement.removeEventListener('pause', handlePause);
audioElement.removeEventListener('timeupdate', handleTimeUpdate);
URL.revokeObjectURL(audioElement.src);
}
};
}, [setIsPlaying]);
return { audioRef };
}
|