Skip to content

Commit 836917e

Browse files
authored
fix: start audio recorder timer if already recording (#2453)
1 parent 6033466 commit 836917e

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

src/components/MediaRecorder/AudioRecorder/AudioRecordingInProgress.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,12 @@ export const AudioRecordingInProgress = () => {
5252

5353
useEffect(() => {
5454
if (!recorder?.mediaRecorder) return;
55-
5655
const { mediaRecorder } = recorder;
56+
57+
if (mediaRecorder.state === 'recording') {
58+
startCounter();
59+
}
60+
5761
mediaRecorder.addEventListener('start', startCounter);
5862
mediaRecorder.addEventListener('resume', startCounter);
5963
mediaRecorder.addEventListener('stop', stopCounter);

src/components/MessageInput/hooks/useTimeElapsed.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,24 @@ export const useTimeElapsed = ({ startOnMount }: UseTimeElapsedParams = {}) => {
1010
const updateInterval = useRef<ReturnType<typeof setInterval>>();
1111

1212
const startCounter = useCallback(() => {
13+
if (updateInterval.current) return;
1314
updateInterval.current = setInterval(() => {
1415
setSecondsElapsed((prev) => prev + 1);
1516
}, 1000);
1617
}, []);
1718

1819
const stopCounter = useCallback(() => {
1920
clearInterval(updateInterval.current);
21+
updateInterval.current = undefined;
2022
}, []);
2123

2224
useEffect(() => {
2325
if (!startOnMount) return;
24-
updateInterval.current = setInterval(() => {
25-
setSecondsElapsed((prev) => prev + 1);
26-
}, 1000);
26+
startCounter();
2727
return () => {
2828
stopCounter();
2929
};
30-
}, [startOnMount, stopCounter]);
30+
}, [startCounter, startOnMount, stopCounter]);
3131

3232
return {
3333
secondsElapsed,

0 commit comments

Comments
 (0)