Merge remote-tracking branch 'origin/develop' into hs/blocked-err
This commit is contained in:
commit
d07069238f
269 changed files with 18170 additions and 6833 deletions
61
src/toasts/MobileGuideToast.ts
Normal file
61
src/toasts/MobileGuideToast.ts
Normal file
|
@ -0,0 +1,61 @@
|
|||
/*
|
||||
Copyright 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 { _t } from "../languageHandler";
|
||||
import GenericToast from "../components/views/toasts/GenericToast";
|
||||
import ToastStore from "../stores/ToastStore";
|
||||
|
||||
const onAccept = () => {
|
||||
window.location.href = "mobile_guide/";
|
||||
};
|
||||
|
||||
const onReject = () => {
|
||||
document.cookie = "element_mobile_redirect_to_guide=false;path=/;max-age=14400";
|
||||
hideToast();
|
||||
};
|
||||
|
||||
const TOAST_KEY = "mobileguide";
|
||||
|
||||
export const showToast = () => {
|
||||
const isIos = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
|
||||
const isAndroid = /Android/.test(navigator.userAgent);
|
||||
if (!isIos && !isAndroid) {
|
||||
return;
|
||||
}
|
||||
if (document.cookie.includes("element_mobile_redirect_to_guide=false")) {
|
||||
return;
|
||||
}
|
||||
ToastStore.sharedInstance().addOrReplaceToast({
|
||||
key: TOAST_KEY,
|
||||
title: _t("Use app for a better experience"),
|
||||
props: {
|
||||
description: _t(
|
||||
"Element Web is experimental on mobile. " +
|
||||
"For a better experience and the latest features, use our free native app.",
|
||||
),
|
||||
acceptLabel: _t("Use app"),
|
||||
onAccept,
|
||||
rejectLabel: _t("Dismiss"),
|
||||
onReject,
|
||||
},
|
||||
component: GenericToast,
|
||||
priority: 99,
|
||||
});
|
||||
};
|
||||
|
||||
export const hideToast = () => {
|
||||
ToastStore.sharedInstance().dismissToast(TOAST_KEY);
|
||||
};
|
|
@ -23,7 +23,7 @@ import {messageForResourceLimitError} from "../utils/ErrorUtils";
|
|||
|
||||
const TOAST_KEY = "serverlimit";
|
||||
|
||||
export const showToast = (limitType: string, adminContact?: string, syncError?: boolean) => {
|
||||
export const showToast = (limitType: string, onHideToast: () => void, adminContact?: string, syncError?: boolean) => {
|
||||
const errorText = messageForResourceLimitError(limitType, adminContact, {
|
||||
'monthly_active_user': _td("Your homeserver has exceeded its user limit."),
|
||||
'hs_blocked': _td("This homeserver has been blocked by it's administrator."),
|
||||
|
@ -39,7 +39,10 @@ export const showToast = (limitType: string, adminContact?: string, syncError?:
|
|||
props: {
|
||||
description: <React.Fragment>{errorText} {contactText}</React.Fragment>,
|
||||
acceptLabel: _t("Ok"),
|
||||
onAccept: hideToast,
|
||||
onAccept: () => {
|
||||
hideToast()
|
||||
if (onHideToast) onHideToast();
|
||||
},
|
||||
},
|
||||
component: GenericToast,
|
||||
priority: 70,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue