-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathprejoin.tsx
36 lines (30 loc) · 947 Bytes
/
prejoin.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
'use client';
import * as React from 'react';
import { PreJoin, setLogLevel } from '@livekit/components-react';
import type { NextPage } from 'next';
import { Track, TrackProcessor } from 'livekit-client';
import { BackgroundBlur } from '@livekit/track-processors';
const PreJoinExample: NextPage = () => {
setLogLevel('debug', { liveKitClientLogLevel: 'warn' });
const [backgroundBlur, setBackgroundBlur] = React.useState<
TrackProcessor<Track.Kind.Video> | undefined
>(undefined);
React.useEffect(() => {
setBackgroundBlur(BackgroundBlur());
}, []);
return (
<div data-lk-theme="default" style={{ height: '100vh' }}>
<PreJoin
videoProcessor={backgroundBlur}
defaults={{ videoDeviceId: '' }}
onSubmit={(values) => {
values.audioDeviceId;
}}
onValidate={(values) => {
return true;
}}
/>
</div>
);
};
export default PreJoinExample;