Files
ThreadNet-Web/src/components/views/elements/SearchWarning.tsx
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

122 lines
3.8 KiB
TypeScript
Raw Normal View History

/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
Copyright 2020 The Matrix.org Foundation C.I.C.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
*/
import React, { type JSX, type ReactNode } from "react";
2021-10-22 17:23:32 -05:00
import { logger } from "matrix-js-sdk/src/logger";
import EventIndexPeg from "../../../indexing/EventIndexPeg";
import { _t } from "../../../languageHandler";
import SdkConfig from "../../../SdkConfig";
import dis from "../../../dispatcher/dispatcher";
import { Action } from "../../../dispatcher/actions";
2022-03-24 16:42:53 -06:00
import { UserTab } from "../dialogs/UserTab";
2025-02-05 13:25:06 +00:00
import AccessibleButton, { type ButtonEvent } from "./AccessibleButton";
export enum WarningKind {
Files,
Search,
}
interface IProps {
isRoomEncrypted?: boolean;
kind: WarningKind;
2024-07-08 10:57:41 +01:00
showLogo?: boolean;
}
2024-07-08 10:57:41 +01:00
export default function SearchWarning({ isRoomEncrypted, kind, showLogo = true }: IProps): JSX.Element {
if (!isRoomEncrypted) return <></>;
if (EventIndexPeg.get()) return <></>;
if (EventIndexPeg.error) {
return (
<div className="mx_SearchWarning">
{_t(
"seshat|error_initialising",
{},
{
a: (sub) => (
<AccessibleButton
kind="link_inline"
2023-02-13 11:39:16 +00:00
onClick={(evt: ButtonEvent) => {
evt.preventDefault();
dis.dispatch({
action: Action.ViewUserSettings,
initialTabId: UserTab.Security,
});
}}
>
{sub}
</AccessibleButton>
),
},
)}
</div>
);
}
const brand = SdkConfig.get("brand");
const desktopBuilds = SdkConfig.getObject("desktop_builds");
let text: ReactNode | undefined;
let logo: JSX.Element | undefined;
if (desktopBuilds?.get("available")) {
logo = <img alt="" src={desktopBuilds.get("logo")} width="32px" />;
const buildUrl = desktopBuilds.get("url");
2020-09-16 17:27:45 -06:00
switch (kind) {
case WarningKind.Files:
2020-09-18 10:58:17 -06:00
text = _t(
"seshat|warning_kind_files_app",
2020-09-18 10:58:17 -06:00
{},
{
a: (sub) => (
<a href={buildUrl} target="_blank" rel="noreferrer noopener">
{sub}
</a>
),
},
);
break;
case WarningKind.Search:
text = _t(
"seshat|warning_kind_search_app",
{},
{
a: (sub) => (
<a href={buildUrl} target="_blank" rel="noreferrer noopener">
{sub}
</a>
),
},
);
break;
}
} else {
2020-09-16 17:27:45 -06:00
switch (kind) {
case WarningKind.Files:
text = _t("seshat|warning_kind_files", { brand });
break;
case WarningKind.Search:
text = _t("seshat|warning_kind_search", { brand });
break;
}
}
// for safety
if (!text) {
2021-10-15 16:31:29 +02:00
logger.warn("Unknown desktop builds warning kind: ", kind);
return <></>;
}
return (
<div className="mx_SearchWarning">
2024-07-08 10:57:41 +01:00
{showLogo ? logo : null}
<span>{text}</span>
</div>
);
}