-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathuseLiveKitRoom.ts
186 lines (169 loc) · 4.93 KB
/
useLiveKitRoom.ts
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
import { log, setupLiveKitRoom } from '@livekit/components-core';
import type { DisconnectReason } from 'livekit-client';
import { Room, MediaDeviceFailure, RoomEvent } from 'livekit-client';
import * as React from 'react';
import type { HTMLAttributes } from 'react';
import type { LiveKitRoomProps } from '../components';
import { mergeProps } from '../mergeProps';
import { roomOptionsStringifyReplacer } from '../utils';
const defaultRoomProps: Partial<LiveKitRoomProps> = {
connect: true,
audio: false,
video: false,
};
/**
* The `useLiveKitRoom` hook is used to implement the `LiveKitRoom` or your custom implementation of it.
* It returns a `Room` instance and HTML props that should be applied to the root element of the component.
*
* @example
* ```tsx
* const { room, htmlProps } = useLiveKitRoom();
* return <div {...htmlProps}>...</div>;
* ```
* @public
*/
export function useLiveKitRoom<T extends HTMLElement>(
props: LiveKitRoomProps,
): {
room: Room | undefined;
htmlProps: HTMLAttributes<T>;
} {
const {
token,
serverUrl,
options,
room: passedRoom,
connectOptions,
connect,
audio,
video,
screen,
onConnected,
onDisconnected,
onError,
onMediaDeviceFailure,
onEncryptionError,
simulateParticipants,
...rest
} = { ...defaultRoomProps, ...props };
if (options && passedRoom) {
log.warn(
'when using a manually created room, the options object will be ignored. set the desired options directly when creating the room instead.',
);
}
const [room, setRoom] = React.useState<Room | undefined>();
const shouldConnect = React.useRef(connect);
React.useEffect(() => {
setRoom(passedRoom ?? new Room(options));
}, [passedRoom, JSON.stringify(options, roomOptionsStringifyReplacer)]);
const htmlProps = React.useMemo(() => {
const { className } = setupLiveKitRoom();
return mergeProps(rest, { className }) as HTMLAttributes<T>;
}, [rest]);
React.useEffect(() => {
if (!room) return;
const onSignalConnected = () => {
const localP = room.localParticipant;
log.debug('trying to publish local tracks');
Promise.all([
localP.setMicrophoneEnabled(!!audio, typeof audio !== 'boolean' ? audio : undefined),
localP.setCameraEnabled(!!video, typeof video !== 'boolean' ? video : undefined),
localP.setScreenShareEnabled(!!screen, typeof screen !== 'boolean' ? screen : undefined),
]).catch((e) => {
log.warn(e);
onError?.(e as Error);
});
};
const handleMediaDeviceError = (e: Error) => {
const mediaDeviceFailure = MediaDeviceFailure.getFailure(e);
onMediaDeviceFailure?.(mediaDeviceFailure);
};
const handleEncryptionError = (e: Error) => {
onEncryptionError?.(e);
};
const handleDisconnected = (reason?: DisconnectReason) => {
onDisconnected?.(reason);
};
const handleConnected = () => {
onConnected?.();
};
room
.on(RoomEvent.SignalConnected, onSignalConnected)
.on(RoomEvent.MediaDevicesError, handleMediaDeviceError)
.on(RoomEvent.EncryptionError, handleEncryptionError)
.on(RoomEvent.Disconnected, handleDisconnected)
.on(RoomEvent.Connected, handleConnected);
return () => {
room
.off(RoomEvent.SignalConnected, onSignalConnected)
.off(RoomEvent.MediaDevicesError, handleMediaDeviceError)
.off(RoomEvent.EncryptionError, handleEncryptionError)
.off(RoomEvent.Disconnected, handleDisconnected)
.off(RoomEvent.Connected, handleConnected);
};
}, [
room,
audio,
video,
screen,
onError,
onEncryptionError,
onMediaDeviceFailure,
onConnected,
onDisconnected,
]);
React.useEffect(() => {
if (!room) return;
if (simulateParticipants) {
room.simulateParticipants({
participants: {
count: simulateParticipants,
},
publish: {
audio: true,
useRealTracks: true,
},
});
return;
}
if (connect) {
shouldConnect.current = true;
log.debug('connecting');
if (!token) {
log.debug('no token yet');
return;
}
if (!serverUrl) {
log.warn('no livekit url provided');
onError?.(Error('no livekit url provided'));
return;
}
room.connect(serverUrl, token, connectOptions).catch((e) => {
log.warn(e);
if (shouldConnect.current === true) {
onError?.(e as Error);
}
});
} else {
log.debug('disconnecting because connect is false');
shouldConnect.current = false;
room.disconnect();
}
}, [
connect,
token,
JSON.stringify(connectOptions),
room,
onError,
serverUrl,
simulateParticipants,
]);
React.useEffect(() => {
if (!room) return;
return () => {
log.info('disconnecting on onmount');
room.disconnect();
};
}, [room]);
return { room, htmlProps };
}