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
/
StringUid.tsx
174 lines (154 loc) · 4.34 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
import React from 'react';
import {
ChannelProfileType,
ClientRoleType,
createAgoraRtcEngine,
ErrorCodeType,
IRtcEngineEventHandler,
RtcConnection,
RtcStats,
UserOfflineReasonType,
} from 'agora-electron-sdk';
import Config from '../../../config/agora.config';
import {
BaseAudioComponentState,
BaseComponent,
} from '../../../components/BaseComponent';
import { AgoraButton, AgoraTextInput } from '../../../components/ui';
interface State extends BaseAudioComponentState {
userAccount: string;
}
export default class StringUid
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: [],
userAccount: '',
};
}
/**
* 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, 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();
}
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);
}
onLocalUserRegistered(uid: number, userAccount: string) {
this.info('LocalUserRegistered', uid, userAccount);
}
protected renderConfiguration(): React.ReactNode {
const { userAccount, joinChannelSuccess } = this.state;
return (
<>
<AgoraTextInput
editable={!joinChannelSuccess}
onChangeText={(text) => {
this.setState({ userAccount: text });
}}
placeholder={`userAccount`}
value={userAccount}
/>
</>
);
}
protected renderAction(): React.ReactNode {
const { joinChannelSuccess } = this.state;
return (
<>
<AgoraButton
disabled={!joinChannelSuccess}
title={`get User Info By User Account`}
onPress={this.getUserInfoByUserAccount}
/>
</>
);
}
}