element-call/src/room/RoomRedirect.tsx

45 lines
1.3 KiB
TypeScript
Raw Normal View History

2022-05-04 17:09:48 +01:00
/*
Copyright 2022 New Vector Ltd
2022-05-04 17:09:48 +01:00
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.
*/
2022-01-05 15:06:51 -08:00
import React, { useEffect } from "react";
import { useLocation, useHistory } from "react-router-dom";
2022-08-02 00:46:16 +02:00
2022-12-20 17:26:45 +00:00
import { Config } from "../config/Config";
2022-01-05 15:06:51 -08:00
import { LoadingView } from "../FullScreenView";
2022-12-20 17:26:45 +00:00
// A component that, when loaded, redirects the client to a full room URL
// based on the current URL being an abbreviated room URL
2022-01-05 15:06:51 -08:00
export function RoomRedirect() {
const { pathname } = useLocation();
const history = useHistory();
useEffect(() => {
let roomId = pathname;
if (pathname.startsWith("/")) {
2022-02-14 12:35:39 -08:00
roomId = roomId.substring(1, roomId.length);
2022-01-05 15:06:51 -08:00
}
if (!roomId.startsWith("#") && !roomId.startsWith("!")) {
2022-12-20 17:26:45 +00:00
roomId = `#${roomId}:${Config.defaultServerName()}`;
2022-01-05 15:06:51 -08:00
}
history.replace(`/room/${roomId.toLowerCase()}`);
2022-01-05 15:06:51 -08:00
}, [pathname, history]);
return <LoadingView />;
}