* #21451 Fix WebGl disabled error message * #21451 Fix WebGl disabled error message Signed-off-by: Rashmit Pankhania <rashmitpankhania@gmail.com> Signed-off-by: Rashmit Pankhania <raspankh@publicisgroupe.net> * Fix message Signed-off-by: Rashmit Pankhania <raspankh@publicisgroupe.net> * Fix ordering of cases in LocationShareErrors.ts Signed-off-by: Rashmit Pankhania <raspankh@publicisgroupe.net> * Fix linting LocationPicker.tsx Signed-off-by: Rashmit Pankhania <raspankh@publicisgroupe.net> * Fix eslint Signed-off-by: Rashmit Pankhania <raspankh@publicisgroupe.net> * Fix file encoding for i18n CI issue Signed-off-by: Rashmit Pankhania <raspankh@publicisgroupe.net> * Fix ts strict CI issue Signed-off-by: Rashmit Pankhania <raspankh@publicisgroupe.net> --------- Signed-off-by: Rashmit Pankhania <rashmitpankhania@gmail.com> Signed-off-by: Rashmit Pankhania <raspankh@publicisgroupe.net> Co-authored-by: Rashmit Pankhania <raspankh@publicisgroupe.net> Co-authored-by: Kerry <kerrya@element.io>
39 lines
1.5 KiB
TypeScript
39 lines
1.5 KiB
TypeScript
/*
|
|
Copyright 2022 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";
|
|
|
|
export enum LocationShareError {
|
|
MapStyleUrlNotConfigured = "MapStyleUrlNotConfigured",
|
|
MapStyleUrlNotReachable = "MapStyleUrlNotReachable",
|
|
WebGLNotEnabled = "WebGLNotEnabled",
|
|
Default = "Default",
|
|
}
|
|
|
|
export const getLocationShareErrorMessage = (errorType?: LocationShareError): string => {
|
|
switch (errorType) {
|
|
case LocationShareError.MapStyleUrlNotConfigured:
|
|
return _t("This homeserver is not configured to display maps.");
|
|
case LocationShareError.WebGLNotEnabled:
|
|
return _t("WebGL is required to display maps, please enable it in your browser settings.");
|
|
case LocationShareError.MapStyleUrlNotReachable:
|
|
default:
|
|
return _t(
|
|
`This homeserver is not configured correctly to display maps, ` +
|
|
`or the configured map server may be unreachable.`,
|
|
);
|
|
}
|
|
};
|