/* Copyright 2018 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 React from 'react'; import PropTypes from 'prop-types'; import sdk from '../../../index'; import Modal from '../../../Modal'; import { _t } from '../../../languageHandler'; module.exports = React.createClass({ displayName: 'RoomUpgradeWarningBar', propTypes: { room: PropTypes.object.isRequired, recommendation: PropTypes.object.isRequired, }, onUpgradeClick: function() { const RoomUpgradeDialog = sdk.getComponent('dialogs.RoomUpgradeDialog'); Modal.createTrackedDialog('Upgrade Room Version', '', RoomUpgradeDialog, {room: this.props.room}); }, render: function() { const AccessibleButton = sdk.getComponent('elements.AccessibleButton'); let upgradeText = (
{_t("This room is using an unstable room version. If you aren't expecting this, please upgrade the room.")}

{_t("Click here to upgrade to the latest room version.")}

); if (this.props.recommendation.urgent) { upgradeText = (
{_t("There is a known vulnerability affecting this room.")}
{_t("This room version is vulnerable to malicious modification of room state.")}

{_t("Click here to upgrade to the latest room version and ensure room integrity is protected.")}

); } return (
{upgradeText}
{_t("Only room administrators will see this warning")}
); }, });