mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-03 20:36:57 +03:00
98 lines
3.1 KiB
TypeScript
98 lines
3.1 KiB
TypeScript
/*
|
|
Copyright 2020 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 { _t } from "../languageHandler";
|
|
import SdkConfig from "../SdkConfig";
|
|
import GenericToast from "../components/views/toasts/GenericToast";
|
|
import ToastStore from "../stores/ToastStore";
|
|
import QuestionDialog from "../components/views/dialogs/QuestionDialog";
|
|
import ChangelogDialog from "../components/views/dialogs/ChangelogDialog";
|
|
import PlatformPeg from "../PlatformPeg";
|
|
import Modal from "../Modal";
|
|
|
|
const TOAST_KEY = "update";
|
|
|
|
/*
|
|
* Check a version string is compatible with the Changelog
|
|
* dialog ([element-version]-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';
|
|
}
|
|
|
|
function installUpdate() {
|
|
PlatformPeg.get().installUpdate();
|
|
}
|
|
|
|
export const showToast = (version: string, newVersion: string, releaseNotes?: string) => {
|
|
function onReject() {
|
|
PlatformPeg.get().deferUpdate(newVersion);
|
|
}
|
|
|
|
let onAccept;
|
|
let acceptLabel = _t("What's new?");
|
|
if (releaseNotes) {
|
|
onAccept = () => {
|
|
Modal.createTrackedDialog('Display release notes', '', QuestionDialog, {
|
|
title: _t("What's New"),
|
|
description: <pre>{ releaseNotes }</pre>,
|
|
button: _t("Update"),
|
|
onFinished: (update) => {
|
|
if (update && PlatformPeg.get()) {
|
|
PlatformPeg.get().installUpdate();
|
|
}
|
|
},
|
|
});
|
|
};
|
|
} else if (checkVersion(version) && checkVersion(newVersion)) {
|
|
onAccept = () => {
|
|
Modal.createTrackedDialog('Display Changelog', '', ChangelogDialog, {
|
|
version,
|
|
newVersion,
|
|
onFinished: (update) => {
|
|
if (update && PlatformPeg.get()) {
|
|
PlatformPeg.get().installUpdate();
|
|
}
|
|
},
|
|
});
|
|
};
|
|
} else {
|
|
onAccept = installUpdate;
|
|
acceptLabel = _t("Update");
|
|
}
|
|
|
|
const brand = SdkConfig.get().brand;
|
|
ToastStore.sharedInstance().addOrReplaceToast({
|
|
key: TOAST_KEY,
|
|
title: _t("Update %(brand)s", { brand }),
|
|
props: {
|
|
description: _t("New version of %(brand)s is available", { brand }),
|
|
acceptLabel,
|
|
onAccept,
|
|
rejectLabel: _t("Dismiss"),
|
|
onReject,
|
|
},
|
|
component: GenericToast,
|
|
priority: 20,
|
|
});
|
|
};
|
|
|
|
export const hideToast = () => {
|
|
ToastStore.sharedInstance().dismissToast(TOAST_KEY);
|
|
};
|