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

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

37 lines
1.4 KiB
TypeScript
Raw Normal View History

2022-07-20 14:41:43 +02:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
2022-07-20 14:41:43 +02:00
Copyright 2022 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.
2022-07-20 14:41:43 +02:00
*/
2025-02-05 13:25:06 +00:00
import React, { type ReactElement, type ReactNode } from "react";
2022-07-20 14:41:43 +02:00
2025-02-05 13:25:06 +00:00
import { type StaticNotificationState } from "../../stores/notifications/StaticNotificationState";
2022-07-20 14:41:43 +02:00
import NotificationBadge from "../views/rooms/NotificationBadge";
interface RoomStatusBarUnsentMessagesProps {
2023-02-13 11:39:16 +00:00
title: ReactNode;
2022-07-20 14:41:43 +02:00
description?: string;
notificationState: StaticNotificationState;
buttons: ReactElement;
}
export const RoomStatusBarUnsentMessages = (props: RoomStatusBarUnsentMessagesProps): ReactElement => {
return (
<div className="mx_RoomStatusBar mx_RoomStatusBar_unsentMessages">
<div role="alert">
<div className="mx_RoomStatusBar_unsentBadge">
<NotificationBadge notification={props.notificationState} />
</div>
<div>
<div className="mx_RoomStatusBar_unsentTitle">{props.title}</div>
{props.description && <div className="mx_RoomStatusBar_unsentDescription">{props.description}</div>}
</div>
<div className="mx_RoomStatusBar_unsentButtonBar">{props.buttons}</div>
</div>
</div>
);
};