-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathe2ee.tsx
57 lines (48 loc) · 1.57 KB
/
e2ee.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
'use client';
import { LiveKitRoom, useToken, VideoConference, setLogLevel } from '@livekit/components-react';
import type { NextPage } from 'next';
import * as React from 'react';
import { Room, ExternalE2EEKeyProvider } from 'livekit-client';
import { generateRandomUserId } from '../lib/helper';
const E2EEExample: NextPage = () => {
const params = typeof window !== 'undefined' ? new URLSearchParams(location.search) : null;
const roomName = params?.get('room') ?? 'test-room';
const userIdentity = React.useMemo(() => params?.get('user') ?? generateRandomUserId(), []);
setLogLevel('warn', { liveKitClientLogLevel: 'debug' });
const token = useToken(process.env.NEXT_PUBLIC_LK_TOKEN_ENDPOINT, roomName, {
userInfo: {
identity: userIdentity,
name: userIdentity,
},
});
const keyProvider = React.useMemo(() => new ExternalE2EEKeyProvider(), []);
keyProvider.setKey('password');
const room = React.useMemo(
() =>
new Room({
e2ee:
typeof window !== 'undefined'
? {
keyProvider,
worker: new Worker(new URL('livekit-client/e2ee-worker', import.meta.url)),
}
: undefined,
}),
[],
);
room.setE2EEEnabled(true);
return (
<div data-lk-theme="default" style={{ height: '100vh' }}>
<LiveKitRoom
room={room}
video={true}
audio={true}
token={token}
serverUrl={process.env.NEXT_PUBLIC_LK_SERVER_URL}
>
<VideoConference />
</LiveKitRoom>
</div>
);
};
export default E2EEExample;