Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9900d661be | ||
|
|
369b59a203 | ||
|
|
6a18ba0110 | ||
|
|
0a49ddb31e | ||
|
|
25385edf12 | ||
|
|
721cccf152 | ||
|
|
3b017eb92b | ||
|
|
641b82dc45 | ||
|
|
42e2041d6f | ||
|
|
2c3ebd4c03 |
@@ -34,7 +34,7 @@ export function Avatar({
|
|||||||
}) {
|
}) {
|
||||||
const backgroundColor = useMemo(() => {
|
const backgroundColor = useMemo(() => {
|
||||||
const index = hashStringToArrIndex(
|
const index = hashStringToArrIndex(
|
||||||
bgKey || fallback || src,
|
bgKey || fallback || src || "",
|
||||||
backgroundColors.length
|
backgroundColors.length
|
||||||
);
|
);
|
||||||
return backgroundColors[index];
|
return backgroundColors[index];
|
||||||
|
|||||||
@@ -38,14 +38,25 @@ export const InputField = forwardRef(
|
|||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{prefix && <span>{prefix}</span>}
|
{prefix && <span>{prefix}</span>}
|
||||||
<input
|
{type === "textarea" ? (
|
||||||
id={id}
|
<textarea
|
||||||
{...rest}
|
id={id}
|
||||||
ref={ref}
|
{...rest}
|
||||||
type={type}
|
ref={ref}
|
||||||
checked={checked}
|
type={type}
|
||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
/>
|
/>
|
||||||
|
) : (
|
||||||
|
<input
|
||||||
|
id={id}
|
||||||
|
{...rest}
|
||||||
|
ref={ref}
|
||||||
|
type={type}
|
||||||
|
checked={checked}
|
||||||
|
disabled={disabled}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
<label htmlFor={id}>
|
<label htmlFor={id}>
|
||||||
{type === "checkbox" && (
|
{type === "checkbox" && (
|
||||||
<div className={styles.checkbox}>
|
<div className={styles.checkbox}>
|
||||||
|
|||||||
@@ -29,7 +29,8 @@
|
|||||||
border: 1px solid var(--inputBorderColor);
|
border: 1px solid var(--inputBorderColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
.inputField input {
|
.inputField input,
|
||||||
|
.inputField textarea {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
border: none;
|
border: none;
|
||||||
@@ -42,6 +43,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.inputField.disabled input,
|
.inputField.disabled input,
|
||||||
|
.inputField.disabled textarea,
|
||||||
.inputField.disabled span {
|
.inputField.disabled span {
|
||||||
color: var(--textColor2);
|
color: var(--textColor2);
|
||||||
}
|
}
|
||||||
@@ -54,12 +56,14 @@
|
|||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inputField input::placeholder {
|
.inputField input::placeholder,
|
||||||
|
.inputField textarea::placeholder {
|
||||||
transition: color 0.25s ease-in 0s;
|
transition: color 0.25s ease-in 0s;
|
||||||
color: transparent;
|
color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inputField input:placeholder-shown:focus::placeholder {
|
.inputField input:placeholder-shown:focus::placeholder,
|
||||||
|
.inputField textarea:placeholder-shown:focus::placeholder {
|
||||||
transition: color 0.25s ease-in 0.1s;
|
transition: color 0.25s ease-in 0.1s;
|
||||||
color: var(--textColor2);
|
color: var(--textColor2);
|
||||||
}
|
}
|
||||||
@@ -86,13 +90,17 @@
|
|||||||
border-color: var(--inputBorderColorFocused);
|
border-color: var(--inputBorderColorFocused);
|
||||||
}
|
}
|
||||||
|
|
||||||
.inputField input:focus {
|
.inputField input:focus,
|
||||||
|
.inputField textarea:focus {
|
||||||
outline: 0;
|
outline: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inputField input:focus + label,
|
.inputField input:focus + label,
|
||||||
.inputField input:not(:placeholder-shown) + label,
|
.inputField input:not(:placeholder-shown) + label,
|
||||||
.inputField.prefix input + label {
|
.inputField.prefix input + label,
|
||||||
|
.inputField textarea:focus + label,
|
||||||
|
.inputField textarea:not(:placeholder-shown) + label,
|
||||||
|
.inputField.prefix textarea + label {
|
||||||
background-color: var(--bgColor2);
|
background-color: var(--bgColor2);
|
||||||
transition: font-size 0.25s ease-out 0s, color 0.25s ease-out 0s,
|
transition: font-size 0.25s ease-out 0s, color 0.25s ease-out 0s,
|
||||||
top 0.25s ease-out 0s, background-color 0.25s ease-out 0s;
|
top 0.25s ease-out 0s, background-color 0.25s ease-out 0s;
|
||||||
@@ -102,7 +110,8 @@
|
|||||||
pointer-events: auto;
|
pointer-events: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.inputField input:focus + label {
|
.inputField input:focus + label,
|
||||||
|
.inputField textarea:focus + label {
|
||||||
color: var(--inputBorderColorFocused);
|
color: var(--inputBorderColorFocused);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ export function useProfile(client) {
|
|||||||
return {
|
return {
|
||||||
success: false,
|
success: false,
|
||||||
loading: false,
|
loading: false,
|
||||||
displayName: user?.displayName,
|
displayName: user?.rawDisplayName,
|
||||||
avatarUrl: user && client && getAvatarUrl(client, user.avatarUrl),
|
avatarUrl: user && client && getAvatarUrl(client, user.avatarUrl),
|
||||||
error: null,
|
error: null,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ export function FeedbackModal({ inCall, roomId, ...rest }) {
|
|||||||
description,
|
description,
|
||||||
sendLogs,
|
sendLogs,
|
||||||
rageshakeRequestId,
|
rageshakeRequestId,
|
||||||
|
roomId,
|
||||||
});
|
});
|
||||||
|
|
||||||
if (inCall && sendLogs) {
|
if (inCall && sendLogs) {
|
||||||
@@ -47,7 +48,7 @@ export function FeedbackModal({ inCall, roomId, ...rest }) {
|
|||||||
id="description"
|
id="description"
|
||||||
name="description"
|
name="description"
|
||||||
label="Description (optional)"
|
label="Description (optional)"
|
||||||
type="text"
|
type="textarea"
|
||||||
/>
|
/>
|
||||||
</FieldRow>
|
</FieldRow>
|
||||||
<FieldRow>
|
<FieldRow>
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import { isLocalRoomId } from "../matrix-utils";
|
|||||||
import { RoomNotFoundView } from "./RoomNotFoundView";
|
import { RoomNotFoundView } from "./RoomNotFoundView";
|
||||||
|
|
||||||
export function GroupCallLoader({ client, roomId, viaServers, children }) {
|
export function GroupCallLoader({ client, roomId, viaServers, children }) {
|
||||||
const { loading, error, groupCall } = useLoadGroupCall(
|
const { loading, error, groupCall, reload } = useLoadGroupCall(
|
||||||
client,
|
client,
|
||||||
roomId,
|
roomId,
|
||||||
viaServers
|
viaServers
|
||||||
@@ -29,7 +29,9 @@ export function GroupCallLoader({ client, roomId, viaServers, children }) {
|
|||||||
error.message.indexOf("Failed to fetch alias") !== -1)) &&
|
error.message.indexOf("Failed to fetch alias") !== -1)) &&
|
||||||
isLocalRoomId(roomId)
|
isLocalRoomId(roomId)
|
||||||
) {
|
) {
|
||||||
return <RoomNotFoundView client={client} roomId={roomId} />;
|
return (
|
||||||
|
<RoomNotFoundView client={client} roomId={roomId} onReload={reload} />
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (error) {
|
if (error) {
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ import { UserMenuContainer } from "../UserMenuContainer";
|
|||||||
import { useRageshakeRequestModal } from "../settings/rageshake";
|
import { useRageshakeRequestModal } from "../settings/rageshake";
|
||||||
import { RageshakeRequestModal } from "./RageshakeRequestModal";
|
import { RageshakeRequestModal } from "./RageshakeRequestModal";
|
||||||
import { usePreventScroll } from "@react-aria/overlays";
|
import { usePreventScroll } from "@react-aria/overlays";
|
||||||
|
import { useMediaHandler } from "../settings/useMediaHandler";
|
||||||
|
|
||||||
const canScreenshare = "getDisplayMedia" in navigator.mediaDevices;
|
const canScreenshare = "getDisplayMedia" in navigator.mediaDevices;
|
||||||
// There is currently a bug in Safari our our code with cloning and sending MediaStreams
|
// There is currently a bug in Safari our our code with cloning and sending MediaStreams
|
||||||
@@ -51,6 +52,8 @@ export function InCallView({
|
|||||||
usePreventScroll();
|
usePreventScroll();
|
||||||
const [layout, setLayout] = useVideoGridLayout(screenshareFeeds.length > 0);
|
const [layout, setLayout] = useVideoGridLayout(screenshareFeeds.length > 0);
|
||||||
|
|
||||||
|
const { audioOutput } = useMediaHandler();
|
||||||
|
|
||||||
const items = useMemo(() => {
|
const items = useMemo(() => {
|
||||||
const participants = [];
|
const participants = [];
|
||||||
|
|
||||||
@@ -62,6 +65,7 @@ export function InCallView({
|
|||||||
screenshareFeeds.length === 0 && layout === "spotlight"
|
screenshareFeeds.length === 0 && layout === "spotlight"
|
||||||
? callFeed.userId === activeSpeaker
|
? callFeed.userId === activeSpeaker
|
||||||
: false,
|
: false,
|
||||||
|
isLocal: callFeed.isLocal(),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -78,6 +82,7 @@ export function InCallView({
|
|||||||
id: callFeed.stream.id,
|
id: callFeed.stream.id,
|
||||||
callFeed,
|
callFeed,
|
||||||
focused: true,
|
focused: true,
|
||||||
|
isLocal: callFeed.isLocal(),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -159,6 +164,8 @@ export function InCallView({
|
|||||||
item={item}
|
item={item}
|
||||||
getAvatar={renderAvatar}
|
getAvatar={renderAvatar}
|
||||||
showName={items.length > 2 || item.focused}
|
showName={items.length > 2 || item.focused}
|
||||||
|
audioOutputDevice={audioOutput}
|
||||||
|
disableSpeakingIndicator={items.length < 3}
|
||||||
{...rest}
|
{...rest}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
@@ -189,7 +196,10 @@ export function InCallView({
|
|||||||
show={showInspector}
|
show={showInspector}
|
||||||
/>
|
/>
|
||||||
{rageshakeRequestModalState.isOpen && (
|
{rageshakeRequestModalState.isOpen && (
|
||||||
<RageshakeRequestModal {...rageshakeRequestModalProps} />
|
<RageshakeRequestModal
|
||||||
|
{...rageshakeRequestModalProps}
|
||||||
|
roomId={roomId}
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ import { useProfile } from "../profile/useProfile";
|
|||||||
import useMeasure from "react-use-measure";
|
import useMeasure from "react-use-measure";
|
||||||
import { ResizeObserver } from "@juggle/resize-observer";
|
import { ResizeObserver } from "@juggle/resize-observer";
|
||||||
import { useLocationNavigation } from "../useLocationNavigation";
|
import { useLocationNavigation } from "../useLocationNavigation";
|
||||||
|
import { useMediaHandler } from "../settings/useMediaHandler";
|
||||||
|
|
||||||
export function LobbyView({
|
export function LobbyView({
|
||||||
client,
|
client,
|
||||||
@@ -31,7 +32,8 @@ export function LobbyView({
|
|||||||
roomId,
|
roomId,
|
||||||
}) {
|
}) {
|
||||||
const { stream } = useCallFeed(localCallFeed);
|
const { stream } = useCallFeed(localCallFeed);
|
||||||
const videoRef = useMediaStream(stream, true);
|
const { audioOutput } = useMediaHandler();
|
||||||
|
const videoRef = useMediaStream(stream, audioOutput, true);
|
||||||
const { displayName, avatarUrl } = useProfile(client);
|
const { displayName, avatarUrl } = useProfile(client);
|
||||||
const [previewRef, previewBounds] = useMeasure({ polyfill: ResizeObserver });
|
const [previewRef, previewBounds] = useMeasure({ polyfill: ResizeObserver });
|
||||||
const avatarSize = (previewBounds.height - 66) / 2;
|
const avatarSize = (previewBounds.height - 66) / 2;
|
||||||
|
|||||||
@@ -17,7 +17,6 @@ export function OverflowMenu({
|
|||||||
roomId,
|
roomId,
|
||||||
setShowInspector,
|
setShowInspector,
|
||||||
showInspector,
|
showInspector,
|
||||||
client,
|
|
||||||
inCall,
|
inCall,
|
||||||
groupCall,
|
groupCall,
|
||||||
}) {
|
}) {
|
||||||
@@ -75,7 +74,6 @@ export function OverflowMenu({
|
|||||||
{...settingsModalProps}
|
{...settingsModalProps}
|
||||||
setShowInspector={setShowInspector}
|
setShowInspector={setShowInspector}
|
||||||
showInspector={showInspector}
|
showInspector={showInspector}
|
||||||
client={client}
|
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{inviteModalState.isOpen && (
|
{inviteModalState.isOpen && (
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import { FieldRow, ErrorMessage } from "../input/Input";
|
|||||||
import { useSubmitRageshake } from "../settings/rageshake";
|
import { useSubmitRageshake } from "../settings/rageshake";
|
||||||
import { Body } from "../typography/Typography";
|
import { Body } from "../typography/Typography";
|
||||||
|
|
||||||
export function RageshakeRequestModal({ rageshakeRequestId, ...rest }) {
|
export function RageshakeRequestModal({ rageshakeRequestId, roomId, ...rest }) {
|
||||||
const { submitRageshake, sending, sent, error } = useSubmitRageshake();
|
const { submitRageshake, sending, sent, error } = useSubmitRageshake();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@@ -27,6 +27,7 @@ export function RageshakeRequestModal({ rageshakeRequestId, ...rest }) {
|
|||||||
submitRageshake({
|
submitRageshake({
|
||||||
sendLogs: true,
|
sendLogs: true,
|
||||||
rageshakeRequestId,
|
rageshakeRequestId,
|
||||||
|
roomId,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
disabled={sending}
|
disabled={sending}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import { Form } from "../form/Form";
|
|||||||
import { useHistory } from "react-router-dom";
|
import { useHistory } from "react-router-dom";
|
||||||
import styles from "./RoomNotFoundView.module.css";
|
import styles from "./RoomNotFoundView.module.css";
|
||||||
|
|
||||||
export function RoomNotFoundView({ client, roomId }) {
|
export function RoomNotFoundView({ client, roomId, onReload }) {
|
||||||
const history = useHistory();
|
const history = useHistory();
|
||||||
const [loading, setLoading] = useState(false);
|
const [loading, setLoading] = useState(false);
|
||||||
const [error, setError] = useState();
|
const [error, setError] = useState();
|
||||||
@@ -21,11 +21,9 @@ export function RoomNotFoundView({ client, roomId }) {
|
|||||||
setError(undefined);
|
setError(undefined);
|
||||||
setLoading(true);
|
setLoading(true);
|
||||||
|
|
||||||
const roomIdOrAlias = await createRoom(client, roomName);
|
await createRoom(client, roomName);
|
||||||
|
|
||||||
if (roomIdOrAlias) {
|
onReload();
|
||||||
history.push(`/room/${roomIdOrAlias}`);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
submit().catch((error) => {
|
submit().catch((error) => {
|
||||||
|
|||||||
@@ -21,6 +21,7 @@ import { ErrorView, LoadingView } from "../FullScreenView";
|
|||||||
import { RoomAuthView } from "./RoomAuthView";
|
import { RoomAuthView } from "./RoomAuthView";
|
||||||
import { GroupCallLoader } from "./GroupCallLoader";
|
import { GroupCallLoader } from "./GroupCallLoader";
|
||||||
import { GroupCallView } from "./GroupCallView";
|
import { GroupCallView } from "./GroupCallView";
|
||||||
|
import { MediaHandlerProvider } from "../settings/useMediaHandler";
|
||||||
|
|
||||||
export function RoomPage() {
|
export function RoomPage() {
|
||||||
const { loading, isAuthenticated, error, client, isPasswordlessUser } =
|
const { loading, isAuthenticated, error, client, isPasswordlessUser } =
|
||||||
@@ -47,16 +48,18 @@ export function RoomPage() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<GroupCallLoader client={client} roomId={roomId} viaServers={viaServers}>
|
<MediaHandlerProvider client={client}>
|
||||||
{(groupCall) => (
|
<GroupCallLoader client={client} roomId={roomId} viaServers={viaServers}>
|
||||||
<GroupCallView
|
{(groupCall) => (
|
||||||
client={client}
|
<GroupCallView
|
||||||
roomId={roomId}
|
client={client}
|
||||||
groupCall={groupCall}
|
roomId={roomId}
|
||||||
isPasswordlessUser={isPasswordlessUser}
|
groupCall={groupCall}
|
||||||
simpleGrid={simpleGrid}
|
isPasswordlessUser={isPasswordlessUser}
|
||||||
/>
|
simpleGrid={simpleGrid}
|
||||||
)}
|
/>
|
||||||
</GroupCallLoader>
|
)}
|
||||||
|
</GroupCallLoader>
|
||||||
|
</MediaHandlerProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { useState, useEffect } from "react";
|
import { useState, useEffect, useCallback } from "react";
|
||||||
|
|
||||||
async function fetchGroupCall(
|
async function fetchGroupCall(
|
||||||
client,
|
client,
|
||||||
@@ -41,14 +41,23 @@ export function useLoadGroupCall(client, roomId, viaServers) {
|
|||||||
loading: true,
|
loading: true,
|
||||||
error: undefined,
|
error: undefined,
|
||||||
groupCall: undefined,
|
groupCall: undefined,
|
||||||
|
reloadId: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setState({ loading: true });
|
setState({ loading: true });
|
||||||
fetchGroupCall(client, roomId, viaServers, 30000)
|
fetchGroupCall(client, roomId, viaServers, 30000)
|
||||||
.then((groupCall) => setState({ loading: false, groupCall }))
|
.then((groupCall) =>
|
||||||
.catch((error) => setState({ loading: false, error }));
|
setState((prevState) => ({ ...prevState, loading: false, groupCall }))
|
||||||
}, [client, roomId]);
|
)
|
||||||
|
.catch((error) =>
|
||||||
|
setState((prevState) => ({ ...prevState, loading: false, error }))
|
||||||
|
);
|
||||||
|
}, [client, roomId, state.reloadId]);
|
||||||
|
|
||||||
return state;
|
const reload = useCallback(() => {
|
||||||
|
setState((prevState) => ({ ...prevState, reloadId: prevState.reloadId++ }));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return { ...state, reload };
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,12 +13,7 @@ import { Button } from "../button";
|
|||||||
import { useDownloadDebugLog } from "./rageshake";
|
import { useDownloadDebugLog } from "./rageshake";
|
||||||
import { Body } from "../typography/Typography";
|
import { Body } from "../typography/Typography";
|
||||||
|
|
||||||
export function SettingsModal({
|
export function SettingsModal({ setShowInspector, showInspector, ...rest }) {
|
||||||
client,
|
|
||||||
setShowInspector,
|
|
||||||
showInspector,
|
|
||||||
...rest
|
|
||||||
}) {
|
|
||||||
const {
|
const {
|
||||||
audioInput,
|
audioInput,
|
||||||
audioInputs,
|
audioInputs,
|
||||||
@@ -26,7 +21,10 @@ export function SettingsModal({
|
|||||||
videoInput,
|
videoInput,
|
||||||
videoInputs,
|
videoInputs,
|
||||||
setVideoInput,
|
setVideoInput,
|
||||||
} = useMediaHandler(client);
|
audioOutput,
|
||||||
|
audioOutputs,
|
||||||
|
setAudioOutput,
|
||||||
|
} = useMediaHandler();
|
||||||
|
|
||||||
const downloadDebugLog = useDownloadDebugLog();
|
const downloadDebugLog = useDownloadDebugLog();
|
||||||
|
|
||||||
@@ -56,6 +54,17 @@ export function SettingsModal({
|
|||||||
<Item key={deviceId}>{label}</Item>
|
<Item key={deviceId}>{label}</Item>
|
||||||
))}
|
))}
|
||||||
</SelectInput>
|
</SelectInput>
|
||||||
|
{audioOutputs.length > 0 && (
|
||||||
|
<SelectInput
|
||||||
|
label="Speaker"
|
||||||
|
selectedKey={audioOutput}
|
||||||
|
onSelectionChange={setAudioOutput}
|
||||||
|
>
|
||||||
|
{audioOutputs.map(({ deviceId, label }) => (
|
||||||
|
<Item key={deviceId}>{label}</Item>
|
||||||
|
))}
|
||||||
|
</SelectInput>
|
||||||
|
)}
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem
|
<TabItem
|
||||||
title={
|
title={
|
||||||
|
|||||||
@@ -47,9 +47,16 @@ export function useSubmitRageshake() {
|
|||||||
body.append("touch_input", touchInput);
|
body.append("touch_input", touchInput);
|
||||||
|
|
||||||
if (client) {
|
if (client) {
|
||||||
|
const userId = client.getUserId();
|
||||||
|
const user = client.getUser(userId);
|
||||||
|
body.append("display_name", user?.displayName);
|
||||||
body.append("user_id", client.credentials.userId);
|
body.append("user_id", client.credentials.userId);
|
||||||
body.append("device_id", client.deviceId);
|
body.append("device_id", client.deviceId);
|
||||||
|
|
||||||
|
if (opts.roomId) {
|
||||||
|
body.append("room_id", opts.roomId);
|
||||||
|
}
|
||||||
|
|
||||||
if (client.isCryptoEnabled()) {
|
if (client.isCryptoEnabled()) {
|
||||||
const keys = [`ed25519:${client.getDeviceEd25519Key()}`];
|
const keys = [`ed25519:${client.getDeviceEd25519Key()}`];
|
||||||
if (client.getDeviceCurve25519Key) {
|
if (client.getDeviceCurve25519Key) {
|
||||||
|
|||||||
@@ -1,72 +0,0 @@
|
|||||||
import { useState, useEffect, useCallback } from "react";
|
|
||||||
|
|
||||||
export function useMediaHandler(client) {
|
|
||||||
const [{ audioInput, videoInput, audioInputs, videoInputs }, setState] =
|
|
||||||
useState(() => {
|
|
||||||
const mediaHandler = client.getMediaHandler();
|
|
||||||
|
|
||||||
return {
|
|
||||||
audioInput: mediaHandler.audioInput,
|
|
||||||
videoInput: mediaHandler.videoInput,
|
|
||||||
audioInputs: [],
|
|
||||||
videoInputs: [],
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
const mediaHandler = client.getMediaHandler();
|
|
||||||
|
|
||||||
function updateDevices() {
|
|
||||||
navigator.mediaDevices.enumerateDevices().then((devices) => {
|
|
||||||
const audioInputs = devices.filter(
|
|
||||||
(device) => device.kind === "audioinput"
|
|
||||||
);
|
|
||||||
const videoInputs = devices.filter(
|
|
||||||
(device) => device.kind === "videoinput"
|
|
||||||
);
|
|
||||||
|
|
||||||
setState(() => ({
|
|
||||||
audioInput: mediaHandler.audioInput,
|
|
||||||
videoInput: mediaHandler.videoInput,
|
|
||||||
audioInputs,
|
|
||||||
videoInputs,
|
|
||||||
}));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
updateDevices();
|
|
||||||
|
|
||||||
mediaHandler.on("local_streams_changed", updateDevices);
|
|
||||||
navigator.mediaDevices.addEventListener("devicechange", updateDevices);
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
mediaHandler.removeListener("local_streams_changed", updateDevices);
|
|
||||||
navigator.mediaDevices.removeEventListener("devicechange", updateDevices);
|
|
||||||
};
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
const setAudioInput = useCallback(
|
|
||||||
(deviceId) => {
|
|
||||||
setState((prevState) => ({ ...prevState, audioInput: deviceId }));
|
|
||||||
client.getMediaHandler().setAudioInput(deviceId);
|
|
||||||
},
|
|
||||||
[client]
|
|
||||||
);
|
|
||||||
|
|
||||||
const setVideoInput = useCallback(
|
|
||||||
(deviceId) => {
|
|
||||||
setState((prevState) => ({ ...prevState, videoInput: deviceId }));
|
|
||||||
client.getMediaHandler().setVideoInput(deviceId);
|
|
||||||
},
|
|
||||||
[client]
|
|
||||||
);
|
|
||||||
|
|
||||||
return {
|
|
||||||
audioInput,
|
|
||||||
audioInputs,
|
|
||||||
setAudioInput,
|
|
||||||
videoInput,
|
|
||||||
videoInputs,
|
|
||||||
setVideoInput,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
203
src/settings/useMediaHandler.jsx
Normal file
203
src/settings/useMediaHandler.jsx
Normal file
@@ -0,0 +1,203 @@
|
|||||||
|
import React, {
|
||||||
|
useState,
|
||||||
|
useEffect,
|
||||||
|
useCallback,
|
||||||
|
useMemo,
|
||||||
|
useContext,
|
||||||
|
createContext,
|
||||||
|
} from "react";
|
||||||
|
|
||||||
|
const MediaHandlerContext = createContext();
|
||||||
|
|
||||||
|
function getMediaPreferences() {
|
||||||
|
const mediaPreferences = localStorage.getItem("matrix-media-preferences");
|
||||||
|
|
||||||
|
if (mediaPreferences) {
|
||||||
|
try {
|
||||||
|
return JSON.parse(mediaPreferences);
|
||||||
|
} catch (e) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateMediaPreferences(newPreferences) {
|
||||||
|
const oldPreferences = getMediaPreferences(newPreferences);
|
||||||
|
|
||||||
|
localStorage.setItem(
|
||||||
|
"matrix-media-preferences",
|
||||||
|
JSON.stringify({
|
||||||
|
...oldPreferences,
|
||||||
|
...newPreferences,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function MediaHandlerProvider({ client, children }) {
|
||||||
|
const [
|
||||||
|
{
|
||||||
|
audioInput,
|
||||||
|
videoInput,
|
||||||
|
audioInputs,
|
||||||
|
videoInputs,
|
||||||
|
audioOutput,
|
||||||
|
audioOutputs,
|
||||||
|
},
|
||||||
|
setState,
|
||||||
|
] = useState(() => {
|
||||||
|
const mediaPreferences = getMediaPreferences();
|
||||||
|
const mediaHandler = client.getMediaHandler();
|
||||||
|
|
||||||
|
mediaHandler.restoreMediaSettings(
|
||||||
|
mediaPreferences?.audioInput,
|
||||||
|
mediaPreferences?.videoInput
|
||||||
|
);
|
||||||
|
|
||||||
|
return {
|
||||||
|
audioInput: mediaHandler.audioInput,
|
||||||
|
videoInput: mediaHandler.videoInput,
|
||||||
|
audioOutput: undefined,
|
||||||
|
audioInputs: [],
|
||||||
|
videoInputs: [],
|
||||||
|
audioOutputs: [],
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const mediaHandler = client.getMediaHandler();
|
||||||
|
|
||||||
|
function updateDevices() {
|
||||||
|
navigator.mediaDevices.enumerateDevices().then((devices) => {
|
||||||
|
const mediaPreferences = getMediaPreferences();
|
||||||
|
|
||||||
|
const audioInputs = devices.filter(
|
||||||
|
(device) => device.kind === "audioinput"
|
||||||
|
);
|
||||||
|
const audioConnected = audioInputs.some(
|
||||||
|
(device) => device.deviceId === mediaHandler.audioInput
|
||||||
|
);
|
||||||
|
|
||||||
|
let audioInput = mediaHandler.audioInput;
|
||||||
|
|
||||||
|
if (!audioConnected && audioInputs.length > 0) {
|
||||||
|
audioInput = audioInputs[0].deviceId;
|
||||||
|
}
|
||||||
|
|
||||||
|
const videoInputs = devices.filter(
|
||||||
|
(device) => device.kind === "videoinput"
|
||||||
|
);
|
||||||
|
const videoConnected = videoInputs.some(
|
||||||
|
(device) => device.deviceId === mediaHandler.videoInput
|
||||||
|
);
|
||||||
|
|
||||||
|
let videoInput = mediaHandler.videoInput;
|
||||||
|
|
||||||
|
if (!videoConnected && videoInputs.length > 0) {
|
||||||
|
videoInput = videoInputs[0].deviceId;
|
||||||
|
}
|
||||||
|
|
||||||
|
const audioOutputs = devices.filter(
|
||||||
|
(device) => device.kind === "audiooutput"
|
||||||
|
);
|
||||||
|
let audioOutput = undefined;
|
||||||
|
|
||||||
|
if (
|
||||||
|
mediaPreferences &&
|
||||||
|
audioOutputs.some(
|
||||||
|
(device) => device.deviceId === mediaPreferences.audioOutput
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
audioOutput = mediaPreferences.audioOutput;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
mediaHandler.videoInput !== videoInput ||
|
||||||
|
mediaHandler.audioInput !== audioInput
|
||||||
|
) {
|
||||||
|
mediaHandler.setMediaInputs(audioInput, videoInput);
|
||||||
|
}
|
||||||
|
|
||||||
|
updateMediaPreferences({ audioInput, videoInput, audioOutput });
|
||||||
|
|
||||||
|
setState({
|
||||||
|
audioInput,
|
||||||
|
videoInput,
|
||||||
|
audioOutput,
|
||||||
|
audioInputs,
|
||||||
|
videoInputs,
|
||||||
|
audioOutputs,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
updateDevices();
|
||||||
|
|
||||||
|
mediaHandler.on("local_streams_changed", updateDevices);
|
||||||
|
navigator.mediaDevices.addEventListener("devicechange", updateDevices);
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
mediaHandler.removeListener("local_streams_changed", updateDevices);
|
||||||
|
navigator.mediaDevices.removeEventListener("devicechange", updateDevices);
|
||||||
|
mediaHandler.stopAllStreams();
|
||||||
|
};
|
||||||
|
}, [client]);
|
||||||
|
|
||||||
|
const setAudioInput = useCallback(
|
||||||
|
(deviceId) => {
|
||||||
|
updateMediaPreferences({ audioInput: deviceId });
|
||||||
|
setState((prevState) => ({ ...prevState, audioInput: deviceId }));
|
||||||
|
client.getMediaHandler().setAudioInput(deviceId);
|
||||||
|
},
|
||||||
|
[client]
|
||||||
|
);
|
||||||
|
|
||||||
|
const setVideoInput = useCallback(
|
||||||
|
(deviceId) => {
|
||||||
|
updateMediaPreferences({ videoInput: deviceId });
|
||||||
|
setState((prevState) => ({ ...prevState, videoInput: deviceId }));
|
||||||
|
client.getMediaHandler().setVideoInput(deviceId);
|
||||||
|
},
|
||||||
|
[client]
|
||||||
|
);
|
||||||
|
|
||||||
|
const setAudioOutput = useCallback((deviceId) => {
|
||||||
|
updateMediaPreferences({ audioOutput: deviceId });
|
||||||
|
setState((prevState) => ({ ...prevState, audioOutput: deviceId }));
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const context = useMemo(
|
||||||
|
() => ({
|
||||||
|
audioInput,
|
||||||
|
audioInputs,
|
||||||
|
setAudioInput,
|
||||||
|
videoInput,
|
||||||
|
videoInputs,
|
||||||
|
setVideoInput,
|
||||||
|
audioOutput,
|
||||||
|
audioOutputs,
|
||||||
|
setAudioOutput,
|
||||||
|
}),
|
||||||
|
[
|
||||||
|
audioInput,
|
||||||
|
audioInputs,
|
||||||
|
setAudioInput,
|
||||||
|
videoInput,
|
||||||
|
videoInputs,
|
||||||
|
setVideoInput,
|
||||||
|
audioOutput,
|
||||||
|
audioOutputs,
|
||||||
|
setAudioOutput,
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<MediaHandlerContext.Provider value={context}>
|
||||||
|
{children}
|
||||||
|
</MediaHandlerContext.Provider>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function useMediaHandler() {
|
||||||
|
return useContext(MediaHandlerContext);
|
||||||
|
}
|
||||||
@@ -64,6 +64,7 @@ export const ParticipantsTest = () => {
|
|||||||
key={item.id}
|
key={item.id}
|
||||||
name={`User ${item.id}`}
|
name={`User ${item.id}`}
|
||||||
showName={items.length > 2 || item.focused}
|
showName={items.length > 2 || item.focused}
|
||||||
|
disableSpeakingIndicator={items.length < 3}
|
||||||
{...rest}
|
{...rest}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Reference in New Issue
Block a user