mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-17 14:01:46 +03:00
1087e04bb5
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
107 lines
3.9 KiB
JavaScript
107 lines
3.9 KiB
JavaScript
/*
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
Copyright 2019 Michael Telatynski <7t3chguy@gmail.com>
|
|
|
|
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 PlatformPeg from '../../../PlatformPeg';
|
|
import { _t } from '../../../languageHandler';
|
|
|
|
/**
|
|
* Check a version string is compatible with the Changelog
|
|
* dialog ([vectorversion]-react-[react-sdk-version]-js-[js-sdk-version])
|
|
*/
|
|
function checkVersion(ver) {
|
|
const parts = ver.split('-');
|
|
return parts.length == 5 && parts[1] == 'react' && parts[3] == 'js';
|
|
}
|
|
|
|
export default React.createClass({
|
|
propTypes: {
|
|
version: PropTypes.string.isRequired,
|
|
newVersion: PropTypes.string.isRequired,
|
|
releaseNotes: PropTypes.string,
|
|
},
|
|
|
|
displayReleaseNotes: function(releaseNotes) {
|
|
const QuestionDialog = sdk.getComponent('dialogs.QuestionDialog');
|
|
Modal.createTrackedDialog('Display release notes', '', QuestionDialog, {
|
|
title: _t("What's New"),
|
|
description: <div className="mx_MatrixToolbar_changelog">{releaseNotes}</div>,
|
|
button: _t("Update"),
|
|
onFinished: (update) => {
|
|
if (update && PlatformPeg.get()) {
|
|
PlatformPeg.get().installUpdate();
|
|
}
|
|
},
|
|
});
|
|
},
|
|
|
|
displayChangelog: function() {
|
|
const ChangelogDialog = sdk.getComponent('dialogs.ChangelogDialog');
|
|
Modal.createTrackedDialog('Display Changelog', '', ChangelogDialog, {
|
|
version: this.props.version,
|
|
newVersion: this.props.newVersion,
|
|
onFinished: (update) => {
|
|
if (update && PlatformPeg.get()) {
|
|
PlatformPeg.get().installUpdate();
|
|
}
|
|
},
|
|
});
|
|
},
|
|
|
|
onUpdateClicked: function() {
|
|
PlatformPeg.get().installUpdate();
|
|
},
|
|
|
|
render: function() {
|
|
let action_button;
|
|
// If we have release notes to display, we display them. Otherwise,
|
|
// we display the Changelog Dialog which takes two versions and
|
|
// automatically tells you what's changed (provided the versions
|
|
// are in the right format)
|
|
if (this.props.releaseNotes) {
|
|
action_button = (
|
|
<button className="mx_MatrixToolbar_action" onClick={this.displayReleaseNotes}>
|
|
{ _t("What's new?") }
|
|
</button>
|
|
);
|
|
} else if (checkVersion(this.props.version) && checkVersion(this.props.newVersion)) {
|
|
action_button = (
|
|
<button className="mx_MatrixToolbar_action" onClick={this.displayChangelog}>
|
|
{ _t("What's new?") }
|
|
</button>
|
|
);
|
|
} else if (PlatformPeg.get()) {
|
|
action_button = (
|
|
<button className="mx_MatrixToolbar_action" onClick={this.onUpdateClicked}>
|
|
{ _t("Update") }
|
|
</button>
|
|
);
|
|
}
|
|
return (
|
|
<div className="mx_MatrixToolbar">
|
|
<img className="mx_MatrixToolbar_warning" src={require("../../../../res/img/warning.svg")} width="24" height="23" />
|
|
<div className="mx_MatrixToolbar_content">
|
|
{_t("A new version of Riot is available.")}
|
|
</div>
|
|
{action_button}
|
|
</div>
|
|
);
|
|
},
|
|
});
|