mirror of
https://github.com/vector-im/element-web.git
synced 2025-12-04 00:41:28 +01:00
* Module API experiments * Move ResizerNotifier into SDKContext so we don't have to pass it into RoomView * Add the MultiRoomViewStore * Make RoomViewStore able to take a roomId prop * Different interface to add space panel items A bit less flexible but probably simpler and will help keep things actually consistent rather than just allowing modules to stick any JSX into the space panel (which means they also have to worry about styling if they *do* want it to be consistent). * Allow space panel items to be updated and manage which one is selected, allowing module "spaces" to be considered spaces * Remove fetchRoomFn from SpaceNotificationStore which didn't really seem to have any point as it was only called from one place * Switch to using module api via .instance * Fairly awful workaround to actually break the dependency nightmare * Add test for multiroomviewstore * add test * Make room names deterministic So the tests don't fail if you add other tests or run them individually * Add test for builtinsapi * Update module api * RVS is not needed as prop anymore Since it's passed through context * Add roomId to prop * Remove RoomViewStore from state This is now accessed through class field * Fix test * No need to pass RVS from LoggedInView * Add RoomContextType * Implement new builtins api * Add tests * Fix import * Fix circular dependency issue * Fix import * Add more tests * Improve comment * room-id is optional * Update license * Add implementation for AccountDataApi * Add implementation for Room * Add implementation for ClientApi * Create ClientApi in Api.ts * Write tests * Use nullish coalescing assignment * Implement openRoom in NavigationApi * Write tests * Add implementation for StoresApi * Write tests * Fix circular dependency * Add comments in lieu of type and fix else block * Change to class field --------- Co-authored-by: R Midhun Suresh <hi@midhun.dev>
102 lines
3.5 KiB
TypeScript
102 lines
3.5 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
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
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import { type MockedObject } from "jest-mock";
|
|
import { type EventTimeline, EventType, type MatrixClient, type MatrixEvent, Room } from "matrix-js-sdk/src/matrix";
|
|
import { KnownMembership } from "matrix-js-sdk/src/types";
|
|
|
|
import { MainSplitContentType } from "../../src/components/structures/RoomView";
|
|
import { type RoomContextType, TimelineRenderingType } from "../../src/contexts/RoomContext";
|
|
import { Layout } from "../../src/settings/enums/Layout";
|
|
import { mkEvent } from "./test-utils";
|
|
import { SdkContextClass } from "../../src/contexts/SDKContext";
|
|
|
|
export const makeMembershipEvent = (roomId: string, userId: string, membership = KnownMembership.Join) =>
|
|
mkEvent({
|
|
event: true,
|
|
type: EventType.RoomMember,
|
|
room: roomId,
|
|
user: userId,
|
|
skey: userId,
|
|
content: { membership },
|
|
ts: Date.now(),
|
|
});
|
|
|
|
/**
|
|
* Creates a room
|
|
* sets state events on the room
|
|
* Sets client getRoom to return room
|
|
* returns room
|
|
*/
|
|
export const makeRoomWithStateEvents = (
|
|
stateEvents: MatrixEvent[] = [],
|
|
{ roomId, mockClient }: { roomId: string; mockClient: MockedObject<MatrixClient> },
|
|
): Room => {
|
|
const room1 = new Room(roomId, mockClient, "@user:server.org");
|
|
room1.currentState.setStateEvents(stateEvents);
|
|
mockClient.getRoom.mockReturnValue(room1);
|
|
return room1;
|
|
};
|
|
|
|
export function getRoomContext(room: Room, override: Partial<RoomContextType>): RoomContextType {
|
|
return {
|
|
roomViewStore: SdkContextClass.instance.roomViewStore,
|
|
room,
|
|
roomLoading: true,
|
|
peekLoading: false,
|
|
shouldPeek: true,
|
|
membersLoaded: false,
|
|
numUnreadMessages: 0,
|
|
canPeek: false,
|
|
showApps: false,
|
|
isPeeking: false,
|
|
showRightPanel: true,
|
|
joining: false,
|
|
atEndOfLiveTimeline: true,
|
|
showTopUnreadMessagesBar: false,
|
|
statusBarVisible: false,
|
|
canReact: false,
|
|
canSendMessages: false,
|
|
layout: Layout.Group,
|
|
lowBandwidth: false,
|
|
alwaysShowTimestamps: false,
|
|
userTimezone: undefined,
|
|
showTwelveHourTimestamps: false,
|
|
readMarkerInViewThresholdMs: 3000,
|
|
readMarkerOutOfViewThresholdMs: 30000,
|
|
showHiddenEvents: false,
|
|
showReadReceipts: true,
|
|
showRedactions: true,
|
|
showJoinLeaves: true,
|
|
showAvatarChanges: true,
|
|
showDisplaynameChanges: true,
|
|
matrixClientIsReady: false,
|
|
timelineRenderingType: TimelineRenderingType.Room,
|
|
mainSplitContentType: MainSplitContentType.Timeline,
|
|
liveTimeline: undefined,
|
|
canSelfRedact: false,
|
|
resizing: false,
|
|
narrow: false,
|
|
msc3946ProcessDynamicPredecessor: false,
|
|
canAskToJoin: false,
|
|
promptAskToJoin: false,
|
|
viewRoomOpts: { buttons: [] },
|
|
isRoomEncrypted: false,
|
|
...override,
|
|
};
|
|
}
|
|
|
|
export const setupRoomWithEventsTimeline = (room: Room, events: MatrixEvent[] = []): void => {
|
|
const timelineSet = room.getUnfilteredTimelineSet();
|
|
const getTimelineForEventSpy = jest.spyOn(timelineSet, "getTimelineForEvent");
|
|
const eventTimeline = {
|
|
getEvents: jest.fn().mockReturnValue(events),
|
|
} as unknown as EventTimeline;
|
|
getTimelineForEventSpy.mockReturnValue(eventTimeline);
|
|
};
|