Files
ThreadNet-Web/src/components/structures/RoomStatusBar.tsx
T

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

294 lines
10 KiB
TypeScript
Raw Normal View History

/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
Copyright 2015-2021 The Matrix.org Foundation C.I.C.
2024-09-09 14:57:16 +01:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details.
*/
2023-02-13 11:39:16 +00:00
import React, { ReactNode } from "react";
2024-08-01 13:01:05 +01:00
import {
ClientEvent,
EventStatus,
MatrixError,
MatrixEvent,
Room,
RoomEvent,
SyncState,
SyncStateData,
} from "matrix-js-sdk/src/matrix";
2021-10-22 17:23:32 -05:00
import { Icon as WarningIcon } from "../../../res/img/feather-customised/warning-triangle.svg";
import { _t, _td } from "../../languageHandler";
2017-11-09 15:58:15 +00:00
import Resend from "../../Resend";
2020-05-13 20:41:41 -06:00
import dis from "../../dispatcher/dispatcher";
2021-06-29 13:11:58 +01:00
import { messageForResourceLimitError } from "../../utils/ErrorUtils";
import { Action } from "../../dispatcher/actions";
import { StaticNotificationState } from "../../stores/notifications/StaticNotificationState";
import AccessibleButton from "../views/elements/AccessibleButton";
import InlineSpinner from "../views/elements/InlineSpinner";
2021-09-13 18:28:52 +02:00
import MatrixClientContext from "../../contexts/MatrixClientContext";
2022-07-20 14:41:43 +02:00
import { RoomStatusBarUnsentMessages } from "./RoomStatusBarUnsentMessages";
import ExternalLink from "../views/elements/ExternalLink";
const STATUS_BAR_HIDDEN = 0;
const STATUS_BAR_EXPANDED = 1;
const STATUS_BAR_EXPANDED_LARGE = 2;
export function getUnsentMessages(room: Room, threadId?: string): MatrixEvent[] {
2017-11-09 15:58:15 +00:00
if (!room) {
return [];
}
return room.getPendingEvents().filter(function (ev) {
const isNotSent = ev.status === EventStatus.NOT_SENT;
const belongsToTheThread = threadId === ev.threadRootId;
return isNotSent && (!threadId || belongsToTheThread);
2017-11-09 15:58:15 +00:00
});
2018-10-26 22:50:35 -05:00
}
2017-11-09 15:58:15 +00:00
2021-09-12 10:01:14 +02:00
interface IProps {
// the room this statusbar is representing.
room: Room;
// true if the room is being peeked at. This affects components that shouldn't
// logically be shown when peeking, such as a prompt to invite people to a room.
isPeeking?: boolean;
// callback for when the user clicks on the 'resend all' button in the
// 'unsent messages' bar
onResendAllClick?: () => void;
// callback for when the user clicks on the 'cancel all' button in the
// 'unsent messages' bar
onCancelAllClick?: () => void;
// callback for when the user clicks on the 'invite others' button in the
// 'you are alone' bar
onInviteClick?: () => void;
// callback for when we do something that changes the size of the
// status bar. This is used to trigger a re-layout in the parent
// component.
onResize?: () => void;
// callback for when the status bar can be hidden from view, as it is
// not displaying anything
onHidden?: () => void;
// callback for when the status bar is displaying something and should
// be visible
onVisible?: () => void;
}
interface IState {
2024-08-01 13:01:05 +01:00
syncState: SyncState | null;
syncStateData: SyncStateData | null;
2021-09-12 10:01:14 +02:00
unsentMessages: MatrixEvent[];
isResending: boolean;
}
export default class RoomStatusBar extends React.PureComponent<IProps, IState> {
2022-01-05 16:14:44 +01:00
private unmounted = false;
2021-09-13 18:28:52 +02:00
public static contextType = MatrixClientContext;
2024-08-01 17:14:28 +01:00
public declare context: React.ContextType<typeof MatrixClientContext>;
2021-09-13 18:28:52 +02:00
2024-08-01 13:01:05 +01:00
public constructor(props: IProps, context: React.ContextType<typeof MatrixClientContext>) {
2021-09-13 18:28:52 +02:00
super(props, context);
2021-09-12 10:01:14 +02:00
this.state = {
2021-09-13 18:28:52 +02:00
syncState: this.context.getSyncState(),
syncStateData: this.context.getSyncStateData(),
2021-09-12 10:01:14 +02:00
unsentMessages: getUnsentMessages(this.props.room),
isResending: false,
};
}
2018-10-15 14:35:36 -06:00
2021-09-12 10:01:14 +02:00
public componentDidMount(): void {
2021-09-13 18:28:52 +02:00
const client = this.context;
2024-08-01 13:01:05 +01:00
client.on(ClientEvent.Sync, this.onSyncStateChange);
client.on(RoomEvent.LocalEchoUpdated, this.onRoomLocalEchoUpdated);
2021-09-12 10:01:14 +02:00
this.checkSize();
2020-08-29 12:14:16 +01:00
}
2021-09-12 10:01:14 +02:00
public componentDidUpdate(): void {
this.checkSize();
2020-08-29 12:14:16 +01:00
}
2021-09-12 10:01:14 +02:00
public componentWillUnmount(): void {
2022-01-05 16:14:44 +01:00
this.unmounted = true;
// we may have entirely lost our client as we're logging out before clicking login on the guest bar...
2021-09-13 18:28:52 +02:00
const client = this.context;
if (client) {
2024-08-01 13:01:05 +01:00
client.removeListener(ClientEvent.Sync, this.onSyncStateChange);
client.removeListener(RoomEvent.LocalEchoUpdated, this.onRoomLocalEchoUpdated);
}
2020-08-29 12:14:16 +01:00
}
2024-08-01 13:01:05 +01:00
private onSyncStateChange = (state: SyncState, prevState: SyncState | null, data?: SyncStateData): void => {
if (state === "SYNCING" && prevState === "SYNCING") {
return;
}
2022-01-05 16:14:44 +01:00
if (this.unmounted) return;
this.setState({
2017-10-11 17:56:17 +01:00
syncState: state,
2024-08-01 13:01:05 +01:00
syncStateData: data ?? null,
});
2020-08-29 12:14:16 +01:00
};
2021-09-12 10:01:14 +02:00
private onResendAllClick = (): void => {
Resend.resendUnsentEvents(this.props.room).then(() => {
2021-06-29 13:11:58 +01:00
this.setState({ isResending: false });
});
2021-06-29 13:11:58 +01:00
this.setState({ isResending: true });
2021-07-08 17:36:31 +02:00
dis.fire(Action.FocusSendMessageComposer);
2020-08-29 12:14:16 +01:00
};
2017-11-09 15:58:15 +00:00
2021-09-12 10:01:14 +02:00
private onCancelAllClick = (): void => {
2017-11-09 15:58:15 +00:00
Resend.cancelUnsentEvents(this.props.room);
2021-07-08 17:36:31 +02:00
dis.fire(Action.FocusSendMessageComposer);
2020-08-29 12:14:16 +01:00
};
2017-11-09 15:58:15 +00:00
private onRoomLocalEchoUpdated = (ev: MatrixEvent, room: Room): void => {
2017-11-09 15:58:15 +00:00
if (room.roomId !== this.props.room.roomId) return;
const messages = getUnsentMessages(this.props.room);
this.setState({
unsentMessages: messages,
isResending: messages.length > 0 && this.state.isResending,
});
2020-08-29 12:14:16 +01:00
};
2017-11-09 15:58:15 +00:00
// Check whether current size is greater than 0, if yes call props.onVisible
2021-09-12 10:01:14 +02:00
private checkSize(): void {
if (this.getSize()) {
if (this.props.onVisible) this.props.onVisible();
} else {
if (this.props.onHidden) this.props.onHidden();
}
2020-08-29 12:14:16 +01:00
}
// We don't need the actual height - just whether it is likely to have
// changed - so we use '0' to indicate normal size, and other values to
// indicate other sizes.
2021-09-12 10:01:14 +02:00
private getSize(): number {
if (this.shouldShowConnectionError()) {
return STATUS_BAR_EXPANDED;
} else if (this.state.unsentMessages.length > 0 || this.state.isResending) {
return STATUS_BAR_EXPANDED_LARGE;
}
return STATUS_BAR_HIDDEN;
2020-08-29 12:14:16 +01:00
}
2021-09-12 10:01:14 +02:00
private shouldShowConnectionError(): boolean {
// no conn bar trumps the "some not sent" msg since you can't resend without
// a connection!
// There's one situation in which we don't show this 'no connection' bar, and that's
2018-08-15 17:03:54 +01:00
// if it's a resource limit exceeded error: those are shown in the top bar.
const errorIsMauError = Boolean(
this.state.syncStateData &&
this.state.syncStateData.error &&
2021-09-12 10:01:14 +02:00
this.state.syncStateData.error.name === "M_RESOURCE_LIMIT_EXCEEDED",
);
return this.state.syncState === "ERROR" && !errorIsMauError;
2020-08-29 12:14:16 +01:00
}
2021-09-12 10:01:14 +02:00
private getUnsentMessageContent(): JSX.Element {
2017-11-09 15:58:15 +00:00
const unsentMessages = this.state.unsentMessages;
2023-02-13 11:39:16 +00:00
let title: ReactNode;
2017-11-09 15:58:15 +00:00
2023-02-13 11:39:16 +00:00
let consentError: MatrixError | null = null;
let resourceLimitError: MatrixError | null = null;
for (const m of unsentMessages) {
if (m.error && m.error.errcode === "M_CONSENT_NOT_GIVEN") {
consentError = m.error;
break;
} else if (m.error && m.error.errcode === "M_RESOURCE_LIMIT_EXCEEDED") {
resourceLimitError = m.error;
break;
}
}
if (consentError) {
title = _t(
"room|status_bar|requires_consent_agreement",
{},
{
consentLink: (sub) => (
<ExternalLink href={consentError!.data?.consent_uri} target="_blank" rel="noreferrer noopener">
{sub}
</ExternalLink>
),
},
2017-11-09 15:58:15 +00:00
);
} else if (resourceLimitError) {
title = messageForResourceLimitError(
resourceLimitError.data.limit_type,
2021-04-27 17:23:27 +02:00
resourceLimitError.data.admin_contact,
{
"monthly_active_user": _td("room|status_bar|monthly_user_limit_reached"),
"hs_disabled": _td("room|status_bar|homeserver_blocked"),
"": _td("room|status_bar|exceeded_resource_limit"),
2021-04-27 17:23:27 +02:00
},
);
2017-11-09 15:58:15 +00:00
} else {
title = _t("room|status_bar|some_messages_not_sent");
2017-11-09 15:58:15 +00:00
}
let buttonRow = (
<>
2021-09-12 10:01:14 +02:00
<AccessibleButton onClick={this.onCancelAllClick} className="mx_RoomStatusBar_unsentCancelAllBtn">
{_t("room|status_bar|delete_all")}
</AccessibleButton>
2022-07-20 14:41:43 +02:00
<AccessibleButton onClick={this.onResendAllClick} className="mx_RoomStatusBar_unsentRetry">
{_t("room|status_bar|retry_all")}
</AccessibleButton>
</>
);
if (this.state.isResending) {
buttonRow = (
<>
<InlineSpinner w={20} h={20} />
{/* span for css */}
<span>{_t("forward|sending")}</span>
</>
);
}
2022-07-20 14:41:43 +02:00
return (
<RoomStatusBarUnsentMessages
title={title}
description={_t("room|status_bar|select_messages_to_retry")}
2022-07-20 14:41:43 +02:00
notificationState={StaticNotificationState.RED_EXCLAMATION}
buttons={buttonRow}
/>
);
2020-08-29 12:14:16 +01:00
}
2017-11-09 15:58:15 +00:00
public render(): React.ReactNode {
2021-09-12 10:01:14 +02:00
if (this.shouldShowConnectionError()) {
return (
<div className="mx_RoomStatusBar">
<div role="alert">
<div className="mx_RoomStatusBar_connectionLostBar">
<WarningIcon width="24px" height="24px" />
<div>
<div className="mx_RoomStatusBar_connectionLostBar_title">
{_t("room|status_bar|server_connectivity_lost_title")}
</div>
<div className="mx_RoomStatusBar_connectionLostBar_desc">
{_t("room|status_bar|server_connectivity_lost_description")}
</div>
</div>
2018-06-29 09:46:01 +01:00
</div>
</div>
</div>
);
}
if (this.state.unsentMessages.length > 0 || this.state.isResending) {
2021-09-12 10:01:14 +02:00
return this.getUnsentMessageContent();
}
return null;
2020-08-29 12:14:16 +01:00
}
}