/* Copyright 2018 - 2021 The Matrix.org Foundation C.I.C. 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 React from "react"; import { Room } from "matrix-js-sdk/src/models/room"; import Modal from "../../../Modal"; import { _t } from "../../../languageHandler"; import { upgradeRoom } from "../../../utils/RoomUpgrade"; import BaseDialog from "./BaseDialog"; import ErrorDialog from "./ErrorDialog"; import DialogButtons from "../elements/DialogButtons"; import Spinner from "../elements/Spinner"; interface IProps { room: Room; onFinished(upgrade?: boolean): void; } interface IState { busy: boolean; } export default class RoomUpgradeDialog extends React.Component { private targetVersion?: string; public state = { busy: true, }; public async componentDidMount(): Promise { const recommended = await this.props.room.getRecommendedVersion(); this.targetVersion = recommended.version; this.setState({ busy: false }); } private onCancelClick = (): void => { this.props.onFinished(false); }; private onUpgradeClick = (): void => { this.setState({ busy: true }); upgradeRoom(this.props.room, this.targetVersion!, false, false) .then(() => { this.props.onFinished(true); }) .catch((err) => { Modal.createDialog(ErrorDialog, { title: _t("Failed to upgrade room"), description: err && err.message ? err.message : _t("The room upgrade could not be completed"), }); }) .finally(() => { this.setState({ busy: false }); }); }; public render(): React.ReactNode { let buttons: JSX.Element; if (this.state.busy) { buttons = ; } else { buttons = ( ); } return (

{_t( "Upgrading this room requires closing down the current " + "instance of the room and creating a new room in its place. " + "To give room members the best possible experience, we will:", )}

  1. {_t("Create a new room with the same name, description and avatar")}
  2. {_t("Update any local room aliases to point to the new room")}
  3. {_t( "Stop users from speaking in the old version of the room, " + "and post a message advising users to move to the new room", )}
  4. {_t( "Put a link back to the old room at the start of the new room " + "so people can see old messages", )}
{buttons}
); } }