This repository has been archived by the owner on Apr 23, 2023. It is now read-only.
forked from AgoraIO-Extensions/Electron-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJoinChannelAudio.tsx
298 lines (270 loc) · 7.26 KB
/
JoinChannelAudio.tsx
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
import React from 'react';
import {
ChannelProfileType,
ClientRoleType,
createAgoraRtcEngine,
ErrorCodeType,
IRtcEngineEventHandler,
LocalAudioStreamError,
LocalAudioStreamState,
MediaDeviceType,
RtcConnection,
RtcStats,
UserOfflineReasonType,
} from 'agora-electron-sdk';
import Config from '../../../config/agora.config';
import {
BaseAudioComponentState,
BaseComponent,
} from '../../../components/BaseComponent';
import { AgoraButton, AgoraDivider, AgoraSlider } from '../../../components/ui';
interface State extends BaseAudioComponentState {
enableLocalAudio: boolean;
muteLocalAudioStream: boolean;
recordingSignalVolume: number;
playbackSignalVolume: number;
}
export default class JoinChannelAudio
extends BaseComponent<{}, State>
implements IRtcEngineEventHandler
{
protected createState(): State {
return {
appId: Config.appId,
enableVideo: false,
channelId: Config.channelId,
token: Config.token,
uid: Config.uid,
joinChannelSuccess: false,
remoteUsers: [],
enableLocalAudio: true,
muteLocalAudioStream: false,
recordingSignalVolume: 100,
playbackSignalVolume: 100,
};
}
/**
* Step 1: initRtcEngine
*/
protected async initRtcEngine() {
const { appId } = this.state;
if (!appId) {
this.error(`appId is invalid`);
}
this.engine = createAgoraRtcEngine();
this.engine.initialize({
appId,
logConfig: { filePath: Config.SDKLogPath },
// Should use ChannelProfileLiveBroadcasting on most of cases
channelProfile: ChannelProfileType.ChannelProfileLiveBroadcasting,
});
this.engine.registerEventHandler(this);
// Only need to enable audio on this case
this.engine.enableAudio();
}
/**
* Step 2: joinChannel
*/
protected joinChannel() {
const { channelId, token, uid } = this.state;
if (!channelId) {
this.error('channelId is invalid');
return;
}
if (uid < 0) {
this.error('uid is invalid');
return;
}
// start joining channel
// 1. Users can only see each other after they join the
// same channel successfully using the same app id.
// 2. If app certificate is turned on at dashboard, token is needed
// when joining channel. The channel name and uid used to calculate
// the token has to match the ones used for channel join
this.engine?.joinChannel(token, channelId, uid, {
// Make myself as the broadcaster to send stream to remote
clientRoleType: ClientRoleType.ClientRoleBroadcaster,
});
}
/**
* Step 3-1-1 (Optional): enableLocalAudio
*/
enableLocalAudio = () => {
this.engine?.enableLocalAudio(true);
this.setState({ enableLocalAudio: true });
};
/**
* Step 3-1-2 (Optional): disableLocalAudio
*/
disableLocalAudio = () => {
this.engine?.enableLocalAudio(false);
this.setState({ enableLocalAudio: false });
};
/**
* Step 3-2-1 (Optional): muteLocalAudioStream
*/
muteLocalAudioStream = () => {
this.engine?.muteLocalAudioStream(true);
this.setState({ muteLocalAudioStream: true });
};
/**
* Step 3-2-2 (Optional): unmuteLocalAudioStream
*/
unmuteLocalAudioStream = () => {
this.engine?.muteLocalAudioStream(false);
this.setState({ muteLocalAudioStream: false });
};
/**
* Step 3-3 (Optional): adjustRecordingSignalVolume
*/
adjustRecordingSignalVolume = () => {
const { recordingSignalVolume } = this.state;
this.engine?.adjustRecordingSignalVolume(recordingSignalVolume);
};
/**
* Step 3-4 (Optional): adjustPlaybackSignalVolume
*/
adjustPlaybackSignalVolume = () => {
const { playbackSignalVolume } = this.state;
this.engine?.adjustPlaybackSignalVolume(playbackSignalVolume);
};
/**
* Step 4: leaveChannel
*/
protected leaveChannel() {
this.engine?.leaveChannel();
}
/**
* Step 5: releaseRtcEngine
*/
protected releaseRtcEngine() {
this.engine?.unregisterEventHandler(this);
this.engine?.release();
}
onError(err: ErrorCodeType, msg: string) {
super.onError(err, msg);
}
onJoinChannelSuccess(connection: RtcConnection, elapsed: number) {
super.onJoinChannelSuccess(connection, elapsed);
}
onLeaveChannel(connection: RtcConnection, stats: RtcStats) {
super.onLeaveChannel(connection, stats);
}
onUserJoined(connection: RtcConnection, remoteUid: number, elapsed: number) {
super.onUserJoined(connection, remoteUid, elapsed);
}
onUserOffline(
connection: RtcConnection,
remoteUid: number,
reason: UserOfflineReasonType
) {
super.onUserOffline(connection, remoteUid, reason);
}
onAudioDeviceStateChanged(
deviceId: string,
deviceType: number,
deviceState: number
) {
this.info(
'onAudioDeviceStateChanged',
'deviceId',
deviceId,
'deviceType',
deviceType,
'deviceState',
deviceState
);
}
onAudioDeviceVolumeChanged(
deviceType: MediaDeviceType,
volume: number,
muted: boolean
) {
this.info(
'onAudioDeviceVolumeChanged',
'deviceType',
deviceType,
'volume',
volume,
'muted',
muted
);
}
onLocalAudioStateChanged(
connection: RtcConnection,
state: LocalAudioStreamState,
error: LocalAudioStreamError
) {
this.info(
'onLocalAudioStateChanged',
'connection',
connection,
'state',
state,
'error',
error
);
}
onAudioRoutingChanged(routing: number) {
this.info('onAudioRoutingChanged', 'routing', routing);
}
protected renderConfiguration(): React.ReactNode {
const { recordingSignalVolume, playbackSignalVolume } = this.state;
return (
<>
<AgoraSlider
title={`recordingSignalVolume ${recordingSignalVolume}`}
minimumValue={0}
maximumValue={400}
step={1}
value={recordingSignalVolume}
onSlidingComplete={(value) => {
this.setState({ recordingSignalVolume: value });
}}
/>
<AgoraButton
title={'adjust Recording Signal Volume'}
onPress={this.adjustRecordingSignalVolume}
/>
<AgoraDivider />
<AgoraSlider
title={`playbackSignalVolume ${playbackSignalVolume}`}
minimumValue={0}
maximumValue={400}
step={1}
value={playbackSignalVolume}
onSlidingComplete={(value) => {
this.setState({ playbackSignalVolume: value });
}}
/>
<AgoraButton
title={'adjust Playback Signal Volume'}
onPress={this.adjustPlaybackSignalVolume}
/>
</>
);
}
protected renderAction(): React.ReactNode {
const { enableLocalAudio, muteLocalAudioStream } = this.state;
return (
<>
<AgoraButton
title={`${enableLocalAudio ? 'disable' : 'enable'} Local Audio`}
onPress={
enableLocalAudio ? this.disableLocalAudio : this.enableLocalAudio
}
/>
<AgoraButton
title={`${
muteLocalAudioStream ? 'unmute' : 'mute'
} Local Audio Stream`}
onPress={
muteLocalAudioStream
? this.unmuteLocalAudioStream
: this.muteLocalAudioStream
}
/>
</>
);
}
}