mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 10:41:36 +03:00
81 lines
3 KiB
JavaScript
81 lines
3 KiB
JavaScript
/*
|
|
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 = (
|
|
<div>
|
|
<div className="mx_RoomUpgradeWarningBar_body">
|
|
{_t("This room is using an unstable room version. If you aren't expecting " +
|
|
"this, please upgrade the room.")}
|
|
</div>
|
|
<p className="mx_RoomUpgradeWarningBar_upgradelink">
|
|
<AccessibleButton onClick={this.onUpgradeClick}>
|
|
{_t("Click here to upgrade to the latest room version.")}
|
|
</AccessibleButton>
|
|
</p>
|
|
</div>
|
|
);
|
|
if (this.props.recommendation.urgent) {
|
|
upgradeText = (
|
|
<div>
|
|
<div className="mx_RoomUpgradeWarningBar_header">
|
|
{_t("There is a known vulnerability affecting this room.")}
|
|
</div>
|
|
<div className="mx_RoomUpgradeWarningBar_body">
|
|
{_t("This room version is vulnerable to malicious modification of room state.")}
|
|
</div>
|
|
<p className="mx_RoomUpgradeWarningBar_upgradelink">
|
|
<AccessibleButton onClick={this.onUpgradeClick}>
|
|
{_t("Click here to upgrade to the latest room version and ensure room integrity " +
|
|
"is protected.")}
|
|
</AccessibleButton>
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="mx_RoomUpgradeWarningBar">
|
|
{upgradeText}
|
|
<div className="mx_RoomUpgradeWarningBar_small">
|
|
{_t("Only room administrators will see this warning")}
|
|
</div>
|
|
</div>
|
|
);
|
|
},
|
|
});
|