-
Notifications
You must be signed in to change notification settings - Fork 74
/
StringUid.tsx
231 lines (210 loc) · 6.06 KB
/
StringUid.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
import {
AreaCode,
ChannelProfileType,
ClientRoleType,
ErrorCodeType,
IRtcEngineEventHandler,
RtcConnection,
RtcStats,
UserOfflineReasonType,
createAgoraRtcEngine,
} from 'agora-electron-sdk';
import React, { ReactElement } from 'react';
import {
BaseAudioComponentState,
BaseComponent,
} from '../../../components/BaseComponent';
import {
AgoraButton,
AgoraDropdown,
AgoraTextInput,
} from '../../../components/ui';
import Config from '../../../config/agora.config';
import { enumToItems } from '../../../utils';
import { askMediaAccess } from '../../../utils/permissions';
interface State extends BaseAudioComponentState {
userAccount: string;
isInitialized: boolean;
selectedAreaCode: number;
}
export default class StringUid
extends BaseComponent<{}, State>
implements IRtcEngineEventHandler
{
protected createState(): State {
return {
appId: Config.appId,
enableVideo: false,
isInitialized: false,
channelId: Config.channelId,
token: Config.token,
uid: Config.uid,
joinChannelSuccess: false,
remoteUsers: [],
userAccount: '',
selectedAreaCode: AreaCode.AreaCodeGlob,
};
}
/**
* Step 1: getRtcEngine
*/
protected async initRtcEngine() {
this.engine = createAgoraRtcEngine();
}
/**
* Step 2: joinChannel
*/
protected joinChannel() {
const { channelId, token, userAccount } = this.state;
if (!channelId) {
this.error('channelId is invalid');
return;
}
if (!userAccount) {
this.error('userAccount 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?.joinChannelWithUserAccount(token, channelId, userAccount, {
// Make myself as the broadcaster to send stream to remote
clientRoleType: ClientRoleType.ClientRoleBroadcaster,
});
}
/**
* Step 3 (Optional): getUserInfoByUserAccount
*/
getUserInfoByUserAccount = () => {
const { userAccount } = this.state;
const userInfo = this.engine?.getUserInfoByUserAccount(userAccount);
if (userInfo) {
this.debug('getUserInfoByUserAccount', 'userInfo', userInfo);
} else {
this.error('getUserInfoByUserAccount');
}
};
/**
* Step 4: leaveChannel
*/
protected leaveChannel() {
this.engine?.leaveChannel();
}
/**
* Step 5: releaseRtcEngine
*/
protected releaseRtcEngine() {
this.engine?.unregisterEventHandler(this);
this.engine?.release();
this.setState({ isInitialized: false });
}
onError(err: ErrorCodeType, msg: string) {
super.onError(err, msg);
}
onJoinChannelSuccess(connection: RtcConnection, elapsed: number) {
super.onJoinChannelSuccess(connection, elapsed);
}
onLeaveChannel(connection: RtcConnection, stats: RtcStats) {
this.releaseRtcEngine();
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);
}
onLocalUserRegistered(uid: number, userAccount: string) {
this.info('LocalUserRegistered', uid, userAccount);
}
protected async initializeEngine() {
const { appId } = this.state;
if (!appId) {
this.error(`appId is invalid`);
}
this.engine!.initialize({
appId,
logConfig: { filePath: Config.logFilePath },
// Should use ChannelProfileLiveBroadcasting on most of cases
channelProfile: ChannelProfileType.ChannelProfileLiveBroadcasting,
areaCode: this.state.selectedAreaCode,
});
this.engine!.registerEventHandler(this);
// Need granted the microphone permission
await askMediaAccess(['microphone']);
// Only need to enable audio on this case
this.engine!.enableAudio();
this.setState({ isInitialized: true });
}
protected renderChannel(): ReactElement | undefined {
const { channelId, joinChannelSuccess, isInitialized, selectedAreaCode } =
this.state;
return (
<>
<AgoraDropdown
title={'Select Area Code'}
items={enumToItems(AreaCode)}
value={selectedAreaCode}
onValueChange={(value) => {
this.setState({ selectedAreaCode: value });
}}
/>
<AgoraButton
title={`${isInitialized ? 'release' : 'initialize'} engine`}
disabled={joinChannelSuccess}
onPress={() => {
isInitialized ? this.releaseRtcEngine() : this.initializeEngine();
}}
/>
<AgoraTextInput
onChangeText={(text) => {
this.setState({ channelId: text });
}}
placeholder={`channelId`}
value={channelId}
/>
<AgoraButton
title={`${joinChannelSuccess ? 'leave' : 'join'} Channel`}
disabled={!isInitialized}
onPress={() => {
joinChannelSuccess ? this.leaveChannel() : this.joinChannel();
}}
/>
</>
);
}
protected renderConfiguration(): ReactElement | undefined {
const { userAccount, joinChannelSuccess } = this.state;
return (
<>
<AgoraTextInput
editable={!joinChannelSuccess}
onChangeText={(text) => {
this.setState({ userAccount: text });
}}
placeholder={`userAccount`}
value={userAccount}
/>
</>
);
}
protected renderAction(): ReactElement | undefined {
const { joinChannelSuccess } = this.state;
return (
<>
<AgoraButton
disabled={!joinChannelSuccess}
title={`get User Info By User Account`}
onPress={this.getUserInfoByUserAccount}
/>
</>
);
}
}