-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathsimple.tsx
91 lines (82 loc) · 2.48 KB
/
simple.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
'use client';
import {
ConnectionState,
ControlBar,
GridLayout,
LiveKitRoom,
ParticipantTile,
RoomAudioRenderer,
RoomName,
TrackRefContext,
useToken,
useTracks,
} from '@livekit/components-react';
import { Track } from 'livekit-client';
import type { NextPage } from 'next';
import { useMemo, useState } from 'react';
import styles from '../styles/Simple.module.css';
import { generateRandomUserId } from '../lib/helper';
const SimpleExample: NextPage = () => {
const params = typeof window !== 'undefined' ? new URLSearchParams(location.search) : null;
const roomName = params?.get('room') ?? 'test-room';
const userIdentity = params?.get('user') ?? generateRandomUserId();
const [connect, setConnect] = useState(false);
const [isConnected, setIsConnected] = useState(false);
const userInfo = useMemo(() => {
return {
userInfo: {
identity: userIdentity,
name: userIdentity,
},
};
}, []);
const token = useToken(process.env.NEXT_PUBLIC_LK_TOKEN_ENDPOINT, roomName, userInfo);
const handleDisconnect = () => {
setConnect(false);
setIsConnected(false);
};
return (
<div className={styles.container} data-lk-theme="default">
<main className={styles.main}>
<h1 className={styles.title}>
Welcome to <a href="https://livekit.io">LiveKit</a>
</h1>
{!isConnected && (
<button className="lk-button" onClick={() => setConnect(!connect)}>
{connect ? 'Disconnect' : 'Connect'}
</button>
)}
<LiveKitRoom
token={token}
serverUrl={process.env.NEXT_PUBLIC_LK_SERVER_URL}
connect={connect}
onConnected={() => setIsConnected(true)}
onDisconnected={handleDisconnect}
audio={true}
video={true}
>
<RoomName />
<ConnectionState />
<RoomAudioRenderer />
{isConnected && <Stage />}
<ControlBar />
</LiveKitRoom>
</main>
</div>
);
};
function Stage() {
const cameraTracks = useTracks([Track.Source.Camera]);
const screenShareTrackRef = useTracks([Track.Source.ScreenShare])[0];
return (
<>
{screenShareTrackRef && <ParticipantTile trackRef={screenShareTrackRef} />}
<GridLayout tracks={cameraTracks}>
<TrackRefContext.Consumer>
{(trackRef) => <ParticipantTile trackRef={trackRef} />}
</TrackRefContext.Consumer>
</GridLayout>
</>
);
}
export default SimpleExample;