* Add extra buttons to room summary card Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Remove right panel tabs in favour of X button on each panel Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update room summary card header to align close button correctly Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix typo in pinned messages heading Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update snapshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update tests Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update snapshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update screenshot Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Improve coverage Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tweak default right panel size to be 320px except for video rooms/maximised widgets at 420px Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update tests Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update snapshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Track panel resizing in analytics Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix import cycle Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update screenshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Improve coverage Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix tests Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update snapshot Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update test/components/structures/MainSplit-test.tsx Co-authored-by: David Baker <dbkr@users.noreply.github.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: David Baker <dbkr@users.noreply.github.com>
84 lines
2.2 KiB
TypeScript
84 lines
2.2 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import { createContext, useContext } from "react";
|
|
|
|
import { IRoomState } from "../components/structures/RoomView";
|
|
import { Layout } from "../settings/enums/Layout";
|
|
|
|
export enum TimelineRenderingType {
|
|
Room = "Room",
|
|
Thread = "Thread",
|
|
ThreadsList = "ThreadsList",
|
|
File = "File",
|
|
Notification = "Notification",
|
|
Search = "Search",
|
|
Pinned = "Pinned",
|
|
}
|
|
|
|
// This defines the content of the mainSplit.
|
|
// If the mainSplit does not contain the Timeline, the chat is shown in the right panel.
|
|
export enum MainSplitContentType {
|
|
Timeline,
|
|
MaximisedWidget,
|
|
Call,
|
|
}
|
|
|
|
const RoomContext = createContext<
|
|
IRoomState & {
|
|
threadId?: string;
|
|
}
|
|
>({
|
|
roomLoading: true,
|
|
peekLoading: false,
|
|
shouldPeek: true,
|
|
membersLoaded: false,
|
|
numUnreadMessages: 0,
|
|
canPeek: false,
|
|
showApps: false,
|
|
isPeeking: false,
|
|
showRightPanel: true,
|
|
joining: false,
|
|
showTopUnreadMessagesBar: false,
|
|
statusBarVisible: false,
|
|
canReact: false,
|
|
canSelfRedact: false,
|
|
canSendMessages: false,
|
|
resizing: false,
|
|
layout: Layout.Group,
|
|
lowBandwidth: false,
|
|
alwaysShowTimestamps: false,
|
|
showTwelveHourTimestamps: false,
|
|
userTimezone: undefined,
|
|
readMarkerInViewThresholdMs: 3000,
|
|
readMarkerOutOfViewThresholdMs: 30000,
|
|
showHiddenEvents: false,
|
|
showReadReceipts: true,
|
|
showRedactions: true,
|
|
showJoinLeaves: true,
|
|
showAvatarChanges: true,
|
|
showDisplaynameChanges: true,
|
|
matrixClientIsReady: false,
|
|
showUrlPreview: false,
|
|
timelineRenderingType: TimelineRenderingType.Room,
|
|
mainSplitContentType: MainSplitContentType.Timeline,
|
|
threadId: undefined,
|
|
liveTimeline: undefined,
|
|
narrow: false,
|
|
activeCall: null,
|
|
msc3946ProcessDynamicPredecessor: false,
|
|
canAskToJoin: false,
|
|
promptAskToJoin: false,
|
|
viewRoomOpts: { buttons: [] },
|
|
});
|
|
RoomContext.displayName = "RoomContext";
|
|
export default RoomContext;
|
|
export function useRoomContext(): IRoomState {
|
|
return useContext(RoomContext);
|
|
}
|