-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSetting.tsx
440 lines (407 loc) · 13.5 KB
/
Setting.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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
import React, {useEffect, useMemo, useRef, useState} from 'react';
import {RouteComponentProps} from 'react-router-dom';
import {Button, Select, message, Switch} from 'antd';
import {LeftCircleFilled, RightCircleFilled} from '@ant-design/icons';
import './setting.css';
import {
AvatarImageEnum,
AvatarImageEnumMax,
AvatarImageEnumMin,
avatarImageMDs,
} from '../../utils/pixiUtils/metaData/ImageMetaData';
const qs = require('query-string');
const {Option} = Select;
interface SettingQuery {
roomId: string;
isNew: boolean;
}
interface AudioVisualizerProps {
audioStream: MediaStream;
}
interface SoundControllProps {
deviceInfos: MediaDeviceInfo[];
selectedMicDeviceID: string;
selectedSpeakerDeviceID: string;
setSelectedMicDeviceAndSetAudioStream: (deviceID: string) => void;
setSelectedSpeakerDeviceWithTest: (deviceID: string) => void;
isSpeakerDeviceChange: boolean;
}
function SoundControll(props: SoundControllProps): JSX.Element {
const onSpeakerChange = (deviceID: string) => {
props.setSelectedSpeakerDeviceWithTest(deviceID);
};
const onMicChange = (deviceID: string) => {
props.setSelectedMicDeviceAndSetAudioStream(deviceID);
};
return (
<div className="soundControllMainDiv">
<div className="soundControllSelectDiv">
<img
style={{width: '20%', height: 32}}
src="./assets/navigation/speaker.png"
></img>
<Select
disabled={!props.isSpeakerDeviceChange}
className="soundControllSelect"
onChange={onSpeakerChange}
value={props.selectedSpeakerDeviceID}
>
{props.deviceInfos
.filter(deviceInfo => {
return deviceInfo.kind === 'audiooutput';
})
.map(deviceInfo => {
return (
<Option key={deviceInfo.deviceId} value={deviceInfo.deviceId}>
{deviceInfo.label}
</Option>
);
})}
</Select>
</div>
<div className="soundControllSelectDiv">
<img
className="soundControllSelectLogoImg"
src="./assets/navigation/mic.png"
style={{width: '20%', height: 32}}
></img>
<Select
className="soundControllSelect"
onChange={onMicChange}
value={props.selectedMicDeviceID}
>
{props.deviceInfos
.filter(deviceInfo => {
return deviceInfo.kind === 'audioinput';
})
.map(deviceInfo => {
return (
<Option key={deviceInfo.deviceId} value={deviceInfo.deviceId}>
{deviceInfo.label}
</Option>
);
})}
</Select>
</div>
</div>
);
}
class AudioVisualizerHelper {
private audioContext: AudioContext;
private analyser: AnalyserNode;
private source: MediaStreamAudioSourceNode;
constructor(audioStream: MediaStream) {
this.audioContext = new AudioContext();
this.analyser = this.createAnalserAndSetting();
this.source = this.audioContext.createMediaStreamSource(audioStream);
this.source.connect(this.analyser);
}
private createAnalserAndSetting() {
this.analyser = this.audioContext.createAnalyser();
this.analyser.smoothingTimeConstant = 0.85;
this.analyser.fftSize = 32;
return this.analyser;
}
setStream(audioStream: MediaStream): void {
this.source.disconnect();
this.createAnalserAndSetting();
this.source = this.audioContext.createMediaStreamSource(audioStream);
this.source.connect(this.analyser);
}
getByteFreqData(byteArray: Uint8Array): void {
this.analyser.getByteFrequencyData(byteArray);
}
}
function AudioVisualizer(props: AudioVisualizerProps): JSX.Element {
const canvasRef = useRef<HTMLCanvasElement>(null);
const avHelper = useMemo(() => {
return new AudioVisualizerHelper(props.audioStream);
}, []);
const byteFrequencyDataArray = useMemo(() => {
return new Uint8Array(16);
}, []);
let aniNumber = 0;
useEffect(() => {
avHelper.setStream(props.audioStream);
if (canvasRef.current) {
const context = canvasRef.current.getContext('2d');
if (!context) {
message.error('can not create 2d canvas context');
return;
}
context.fillStyle = '#325932';
// make analyser with stream
const canvas = canvasRef.current;
const widthStep = canvasRef.current.width / 16;
const animationLoop = () => {
avHelper.getByteFreqData(byteFrequencyDataArray);
context.clearRect(0, 0, canvas.width, canvas.height);
byteFrequencyDataArray.forEach((value, idx) => {
context.fillRect(
widthStep * idx,
canvas.height,
widthStep,
-value / 2,
);
});
aniNumber = requestAnimationFrame(animationLoop);
};
aniNumber = requestAnimationFrame(animationLoop);
return () => {
cancelAnimationFrame(aniNumber);
};
}
}, [props.audioStream]);
return <canvas className="settingAudioVisualizer" ref={canvasRef}></canvas>;
}
export const nicknameDefaultValue = '익명의 토끼';
function Setting(props: RouteComponentProps): JSX.Element {
// values
const query = qs.parse(props.location.search) as SettingQuery;
const settingWindowWidth = 400;
const settingWindowHeight = 400;
const avatarIdxMax = AvatarImageEnumMax;
const avatarIdxMin = AvatarImageEnumMin;
//states
const [deviceInfos, setDeviceInfos] = useState<MediaDeviceInfo[]>([]);
const [selectedMicDeviceID, setSelectedMicDeviceID] = useState('default');
const [selectedSpeakerDeviceID, setSelectedSpeakerDeviceID] =
useState('default');
const [audioStream, setAudioStream] = useState<MediaStream | null>(null);
const [isLoading, setIsLoading] = useState(true);
const [isListenMyMic, setIsListenMyMic] = useState(false);
const [nickname, setNickname] = useState(nicknameDefaultValue);
const [avatarIdx, setAvatarIdx] = useState<AvatarImageEnum>(
AvatarImageEnum.BUNNY,
);
const [isSpeakerChangeable, setIsSpeakerChangeable] = useState(true);
//ref
const testAudioRef = useRef<HTMLAudioElement>(null);
const avatarImgRef = useRef<HTMLImageElement>(null);
// functions
const getAudioStreamFromDeviceID = (
deviceID: string,
): Promise<MediaStream> => {
return navigator.mediaDevices.getUserMedia({audio: {deviceId: deviceID}});
};
const getDeviceInfos = (): Promise<MediaDeviceInfo[]> => {
return navigator.mediaDevices.enumerateDevices();
};
const setSelectedMicDeviceAndSetAudioStream = (deviceID: string) => {
setIsLoading(true);
getAudioStreamFromDeviceID(deviceID)
.then(audioStream => {
setSelectedMicDeviceID(deviceID);
setAudioStream(audioStream);
})
.catch(() => {
message.error(
'해당 장치 설정에 실패하였습니다. 장치 연결 상태를 확인하여 주세요.',
);
})
.finally(() => {
setIsLoading(false);
});
};
const setSelectedSpeakerDeviceWithTest = (deviceID: string) => {
setIsLoading(true);
try {
if (!testAudioRef.current) {
throw 'testAudioRef is not found';
}
const audio = testAudioRef.current;
// eslint-disable-next-line
(audio as any)
.setSinkId(deviceID)
.then(() => {
setSelectedSpeakerDeviceID(deviceID);
})
.catch(() => {
message.error(
'해당 장치 설정에 실패하였습니다. 장치 연결 상태를 확인하여 주세요.',
);
});
} catch (error) {
message.error(
'해당 장치 설정에 실패하였습니다. 장치 연결 상태를 확인하여 주세요.',
);
} finally {
setIsLoading(false);
}
};
const reloadDeviceInfoClick = () => {
setIsLoading(true);
getDeviceInfos()
.then(deviceInfos => {
setDeviceInfos(deviceInfos);
setSelectedMicDeviceID('default');
setSelectedMicDeviceAndSetAudioStream('default');
if (isSpeakerChangeable) {
setSelectedSpeakerDeviceID('default');
setSelectedSpeakerDeviceWithTest('default');
}
})
.catch(() => {
message.error(
'장치를 재검색 하는데 실패하였습니다. 장치 연결 상태를 확인하여 주세요.',
);
})
.finally(() => {
setIsLoading(false);
});
};
const enterClick = () => {
props.history.push(
`/space?roomId=${query.roomId}&avatarIdx=${avatarIdx}&nickname=${nickname}&speakerDeviceID=${selectedSpeakerDeviceID}&micDeviceID=${selectedMicDeviceID}`,
);
};
const nickNameOnInput: React.ChangeEventHandler<HTMLInputElement> = e => {
if (e.target.value.length <= 10) {
setNickname(e.target.value);
}
};
const changeAvatarImgWithIdx = (avatarIdx: AvatarImageEnum) => {
const src = avatarImageMDs[avatarIdx].avatarProfileSrc;
if (avatarImgRef.current) {
avatarImgRef.current.src = src;
}
};
const avatarImgLeftOnClick = () => {
let nextAvatarIdx = avatarIdx - 1;
if (nextAvatarIdx < avatarIdxMin) nextAvatarIdx = avatarIdxMax;
changeAvatarImgWithIdx(nextAvatarIdx);
setAvatarIdx(nextAvatarIdx);
};
const avatarImgRightOnClick = () => {
let nextAvatarIdx = avatarIdx + 1;
if (nextAvatarIdx > avatarIdxMax) nextAvatarIdx = avatarIdxMin;
changeAvatarImgWithIdx(nextAvatarIdx);
setAvatarIdx(nextAvatarIdx);
};
// useEffects
useEffect(() => {
getAudioStreamFromDeviceID('default')
.then(audioStream => {
setAudioStream(audioStream);
return getDeviceInfos();
})
.then(deviceInfos => {
setDeviceInfos(deviceInfos);
setIsLoading(false);
})
.catch(() => {
message.error(
'음향 장치를 가져오는데 실패하였습니다. 장치 연결상태나 권한을 확인해 주세요.',
);
});
}, []);
useEffect(() => {
if (testAudioRef.current) {
testAudioRef.current.srcObject = audioStream;
}
return () => {
if (testAudioRef.current) {
testAudioRef.current.srcObject = null;
}
};
}, [audioStream]);
useEffect(() => {
if (testAudioRef.current) {
// eslint-disable-next-line
const audio = testAudioRef.current as any;
if (audio.setSinkId) {
audio.setSinkId(selectedSpeakerDeviceID);
} else {
setIsSpeakerChangeable(false);
}
}
}, [selectedSpeakerDeviceID]);
return (
<>
<div className="settingMainDiv">
<div
className="settingAvatarAndSoundOuterDiv"
style={{
width: settingWindowWidth,
height: settingWindowHeight,
}}
>
<div className="settingAvatarAndSoundinnerDiv">
<div className="settingAvatarMainDiv">
<div className="settingAvatarinnerDiv">
<input
value={nickname}
onChange={nickNameOnInput}
className="settingAvatarNameInput"
></input>
<img
ref={avatarImgRef}
className="settingAvatarImg"
src={avatarImageMDs[AvatarImageEnum.BUNNY].avatarProfileSrc}
></img>
<div className="settingAvatarButtonContainerDiv">
<button
className="settingAvatarButton"
onClick={avatarImgLeftOnClick}
>
<LeftCircleFilled></LeftCircleFilled>
</button>
<button
className="settingAvatarButton"
onClick={avatarImgRightOnClick}
>
<RightCircleFilled></RightCircleFilled>
</button>
</div>
</div>
</div>
<div className="soundControllContainerDiv">
<SoundControll
deviceInfos={deviceInfos}
selectedMicDeviceID={selectedMicDeviceID}
selectedSpeakerDeviceID={selectedSpeakerDeviceID}
setSelectedMicDeviceAndSetAudioStream={
setSelectedMicDeviceAndSetAudioStream
}
setSelectedSpeakerDeviceWithTest={
setSelectedSpeakerDeviceWithTest
}
isSpeakerDeviceChange={isSpeakerChangeable}
></SoundControll>
<Button
className="soundControllReloadButton"
onClick={reloadDeviceInfoClick}
shape="round"
loading={isLoading}
>
장치 재검색
</Button>
<Switch
className="soundControllMuteSwitch"
checkedChildren="내 소리 듣는 중"
unCheckedChildren="내 소리 안 듣는 중"
defaultChecked={false}
onChange={setIsListenMyMic}
></Switch>
{audioStream ? (
<AudioVisualizer audioStream={audioStream}></AudioVisualizer>
) : null}
</div>
</div>
<div className="enterButtonContainerDiv">
<Button
className="enterButton"
onClick={enterClick}
shape="round"
loading={isLoading}
>
입장하기
</Button>
</div>
</div>
</div>
<audio ref={testAudioRef} autoPlay={true} muted={!isListenMyMic}></audio>
</>
);
}
export default Setting;