-
Notifications
You must be signed in to change notification settings - Fork 298
Expand file tree
/
Copy pathVoiceRecording.tsx
More file actions
146 lines (134 loc) Β· 4.57 KB
/
VoiceRecording.tsx
File metadata and controls
146 lines (134 loc) Β· 4.57 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
import React from 'react';
import type { Attachment } from 'stream-chat';
import {
FileSizeIndicator,
PlaybackRateButton,
PlayButton,
WaveProgressBar,
} from './components';
import { useAudioController } from './hooks/useAudioController';
import { displayDuration } from './utils';
import { FileIcon } from '../ReactFileUtilities';
import { useTranslationContext } from '../../context';
const rootClassName = 'str-chat__message-attachment__voice-recording-widget';
export type VoiceRecordingPlayerProps = Pick<VoiceRecordingProps, 'attachment'> & {
/** An array of fractional numeric values of playback speed to override the defaults (1.0, 1.5, 2.0) */
playbackRates?: number[];
};
export const VoiceRecordingPlayer = ({
attachment,
playbackRates,
}: VoiceRecordingPlayerProps) => {
const { t } = useTranslationContext('VoiceRecordingPlayer');
const {
asset_url,
duration = 0,
mime_type,
title = t('Voice message'),
waveform_data,
} = attachment;
const {
audioRef,
increasePlaybackRate,
isPlaying,
playbackRate,
progress,
secondsElapsed,
seek,
togglePlay,
} = useAudioController({
durationSeconds: duration ?? 0,
mimeType: mime_type,
playbackRates,
});
if (!asset_url) return null;
const displayedDuration = secondsElapsed || duration;
return (
<div className={rootClassName} data-testid='voice-recording-widget'>
<audio ref={audioRef}>
<source data-testid='audio-source' src={asset_url} type={mime_type} />
</audio>
<PlayButton isPlaying={isPlaying} onClick={togglePlay} />
<div className='str-chat__message-attachment__voice-recording-widget__metadata'>
<div
className='str-chat__message-attachment__voice-recording-widget__title'
data-testid='voice-recording-title'
title={title}
>
{title}
</div>
<div className='str-chat__message-attachment__voice-recording-widget__audio-state'>
<div className='str-chat__message-attachment__voice-recording-widget__timer'>
{attachment.duration ? (
displayDuration(displayedDuration)
) : (
<FileSizeIndicator
fileSize={attachment.file_size}
maximumFractionDigits={0}
/>
)}
</div>
<WaveProgressBar
progress={progress}
seek={seek}
waveformData={waveform_data || []}
/>
</div>
</div>
<div className='str-chat__message-attachment__voice-recording-widget__right-section'>
{isPlaying ? (
<PlaybackRateButton disabled={!audioRef.current} onClick={increasePlaybackRate}>
{playbackRate.toFixed(1)}x
</PlaybackRateButton>
) : (
<FileIcon big={true} mimeType={mime_type} size={40} />
)}
</div>
</div>
);
};
export type QuotedVoiceRecordingProps = Pick<VoiceRecordingProps, 'attachment'>;
export const QuotedVoiceRecording = ({ attachment }: QuotedVoiceRecordingProps) => {
const { t } = useTranslationContext();
const title = attachment.title || t('Voice message');
return (
<div className={rootClassName} data-testid='quoted-voice-recording-widget'>
<div className='str-chat__message-attachment__voice-recording-widget__metadata'>
{title && (
<div
className='str-chat__message-attachment__voice-recording-widget__title'
data-testid='voice-recording-title'
title={title}
>
{title}
</div>
)}
<div className='str-chat__message-attachment__voice-recording-widget__audio-state'>
<div className='str-chat__message-attachment__voice-recording-widget__timer'>
{attachment.duration ? (
displayDuration(attachment.duration)
) : (
<FileSizeIndicator
fileSize={attachment.file_size}
maximumFractionDigits={0}
/>
)}
</div>
</div>
</div>
<FileIcon big={true} mimeType={attachment.mime_type} size={34} />
</div>
);
};
export type VoiceRecordingProps = {
/** The attachment object from the message's attachment list. */
attachment: Attachment;
/** A boolean flag to signal whether the attachment will be rendered inside the quoted reply. */
isQuoted?: boolean;
};
export const VoiceRecording = ({ attachment, isQuoted }: VoiceRecordingProps) =>
isQuoted ? (
<QuotedVoiceRecording attachment={attachment} />
) : (
<VoiceRecordingPlayer attachment={attachment} />
);