...instead of monkey patching the console log objects. We use a logging framework everywhere now (this fixes the times when we didn't...) so there's not really a reason to do this the hacky way anymore. This means that log lines now appear to come from whatever else is intercepting the logger (eg. sentry) rather than rageshake.ts. Opinions on this welcome on whether it's better or not.
119 lines
3.8 KiB
TypeScript
119 lines
3.8 KiB
TypeScript
/*
|
|
Copyright 2021-2023 New Vector Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import { FC, useEffect, useState, useCallback, ReactNode } from "react";
|
|
import { MatrixRTCSession } from "matrix-js-sdk/src/matrixrtc/MatrixRTCSession";
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
|
|
|
import { useClientLegacy } from "../ClientContext";
|
|
import { ErrorView, LoadingView } from "../FullScreenView";
|
|
import { RoomAuthView } from "./RoomAuthView";
|
|
import { GroupCallLoader } from "./GroupCallLoader";
|
|
import { GroupCallView } from "./GroupCallView";
|
|
import { useRoomIdentifier, useUrlParams } from "../UrlParams";
|
|
import { useRegisterPasswordlessUser } from "../auth/useRegisterPasswordlessUser";
|
|
import { useOptInAnalytics } from "../settings/useSetting";
|
|
import { HomePage } from "../home/HomePage";
|
|
import { platform } from "../Platform";
|
|
import { AppSelectionModal } from "./AppSelectionModal";
|
|
|
|
export const RoomPage: FC = () => {
|
|
const { confineToRoom, appPrompt, preload, hideHeader, displayName } =
|
|
useUrlParams();
|
|
|
|
const { roomAlias, roomId, viaServers } = useRoomIdentifier();
|
|
|
|
const roomIdOrAlias = roomId ?? roomAlias;
|
|
if (!roomIdOrAlias) {
|
|
logger.error("No room specified");
|
|
}
|
|
|
|
const [optInAnalytics, setOptInAnalytics] = useOptInAnalytics();
|
|
const { registerPasswordlessUser } = useRegisterPasswordlessUser();
|
|
const [isRegistering, setIsRegistering] = useState(false);
|
|
|
|
useEffect(() => {
|
|
// During the beta, opt into analytics by default
|
|
if (optInAnalytics === null && setOptInAnalytics) setOptInAnalytics(true);
|
|
}, [optInAnalytics, setOptInAnalytics]);
|
|
|
|
const { loading, authenticated, client, error, passwordlessUser } =
|
|
useClientLegacy();
|
|
|
|
useEffect(() => {
|
|
// If we've finished loading, are not already authed and we've been given a display name as
|
|
// a URL param, automatically register a passwordless user
|
|
if (!loading && !authenticated && displayName) {
|
|
setIsRegistering(true);
|
|
registerPasswordlessUser(displayName).finally(() => {
|
|
setIsRegistering(false);
|
|
});
|
|
}
|
|
}, [
|
|
loading,
|
|
authenticated,
|
|
displayName,
|
|
setIsRegistering,
|
|
registerPasswordlessUser,
|
|
]);
|
|
|
|
const groupCallView = useCallback(
|
|
(rtcSession: MatrixRTCSession) => (
|
|
<GroupCallView
|
|
client={client!}
|
|
rtcSession={rtcSession}
|
|
isPasswordlessUser={passwordlessUser}
|
|
confineToRoom={confineToRoom}
|
|
preload={preload}
|
|
hideHeader={hideHeader}
|
|
/>
|
|
),
|
|
[client, passwordlessUser, confineToRoom, preload, hideHeader]
|
|
);
|
|
|
|
let content: ReactNode;
|
|
if (loading || isRegistering) {
|
|
content = <LoadingView />;
|
|
} else if (error) {
|
|
content = <ErrorView error={error} />;
|
|
} else if (!client) {
|
|
content = <RoomAuthView />;
|
|
} else if (!roomIdOrAlias) {
|
|
// TODO: This doesn't belong here, the app routes need to be reworked
|
|
content = <HomePage />;
|
|
} else {
|
|
content = (
|
|
<GroupCallLoader
|
|
client={client}
|
|
roomIdOrAlias={roomIdOrAlias}
|
|
viaServers={viaServers}
|
|
>
|
|
{groupCallView}
|
|
</GroupCallLoader>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{content}
|
|
{/* On Android and iOS, show a prompt to launch the mobile app. */}
|
|
{appPrompt && (platform === "android" || platform === "ios") && (
|
|
<AppSelectionModal roomId={roomId} />
|
|
)}
|
|
</>
|
|
);
|
|
};
|