This repository was archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 813
Support adding space-restricted joins on rooms not members of those spaces #9017
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
6ab255a
Support adding space-restricted joins on rooms not members of those s…
turt2live 933608d
add react dependencies
turt2live 6a1bbaf
Merge branch 'develop' into travis/spaces-dialog-all-of-them
turt2live ddc7a87
Merge branch 'develop' into travis/spaces-dialog-all-of-them
turt2live e8df5f9
Merge branch 'develop' of github.com:matrix-org/matrix-react-sdk into…
t3chguy ff6bfb2
Add snapshot test
t3chguy 90e2238
Fix snapshot stability
t3chguy ba1f28a
Update snapshot
t3chguy bf77f30
Increase coverage
t3chguy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 58 additions & 0 deletions
58
test/components/views/dialogs/ManageRestrictedJoinRuleDialog-test.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| /* | ||
| Copyright 2023 The Matrix.org Foundation C.I.C. | ||
|
|
||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
|
|
||
| http://www.apache.org/licenses/LICENSE-2.0 | ||
|
|
||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| */ | ||
|
|
||
| import React from "react"; | ||
| import { render } from "@testing-library/react"; | ||
| import { Room } from "matrix-js-sdk/src/matrix"; | ||
|
|
||
| import { getMockClientWithEventEmitter, mockClientMethodsUser } from "../../../test-utils"; | ||
| import ManageRestrictedJoinRuleDialog from "../../../../src/components/views/dialogs/ManageRestrictedJoinRuleDialog"; | ||
| import SpaceStore from "../../../../src/stores/spaces/SpaceStore"; | ||
| import DMRoomMap from "../../../../src/utils/DMRoomMap"; | ||
|
|
||
| // Fake random strings to give a predictable snapshot | ||
| jest.mock("matrix-js-sdk/src/randomstring", () => { | ||
| return { | ||
| randomString: () => "abdefghi", | ||
| }; | ||
| }); | ||
|
|
||
| describe("<ManageRestrictedJoinRuleDialog />", () => { | ||
| const userId = "@alice:server.org"; | ||
| const mockClient = getMockClientWithEventEmitter({ | ||
| ...mockClientMethodsUser(userId), | ||
| getRoom: jest.fn(), | ||
| }); | ||
| const room = new Room("!roomId:server", mockClient, userId); | ||
| mockClient.getRoom.mockReturnValue(room); | ||
| DMRoomMap.makeShared(mockClient); | ||
|
|
||
| const onFinished = jest.fn(); | ||
| const getComponent = (props = {}) => | ||
| render(<ManageRestrictedJoinRuleDialog room={room} onFinished={onFinished} {...props} />); | ||
|
|
||
| it("should render empty state", () => { | ||
| expect(getComponent().asFragment()).toMatchSnapshot(); | ||
| }); | ||
|
|
||
| it("should list spaces which are not parents of the room", () => { | ||
| const space1 = new Room("!space:server", mockClient, userId); | ||
| space1.name = "Other Space"; | ||
| jest.spyOn(SpaceStore.instance, "spacePanelSpaces", "get").mockReturnValue([space1]); | ||
|
|
||
| expect(getComponent().asFragment()).toMatchSnapshot(); | ||
| }); | ||
| }); |
263 changes: 263 additions & 0 deletions
263
test/components/views/dialogs/__snapshots__/ManageRestrictedJoinRuleDialog-test.tsx.snap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,263 @@ | ||
| // Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
|
||
| exports[`<ManageRestrictedJoinRuleDialog /> should list spaces which are not parents of the room 1`] = ` | ||
| <DocumentFragment> | ||
| <div | ||
| data-focus-guard="true" | ||
| style="width: 1px; height: 0px; padding: 0px; overflow: hidden; position: fixed; top: 1px; left: 1px;" | ||
| tabindex="0" | ||
| /> | ||
| <div | ||
| aria-labelledby="mx_BaseDialog_title" | ||
| class="mx_ManageRestrictedJoinRuleDialog" | ||
| data-focus-lock-disabled="false" | ||
| role="dialog" | ||
| > | ||
| <div | ||
| class="mx_Dialog_header mx_Dialog_headerWithCancel" | ||
| > | ||
| <h2 | ||
| class="mx_Heading_h3 mx_Dialog_title" | ||
| id="mx_BaseDialog_title" | ||
| > | ||
| Select spaces | ||
| </h2> | ||
| <div | ||
| aria-label="Close dialog" | ||
| class="mx_AccessibleButton mx_Dialog_cancelButton" | ||
| role="button" | ||
| tabindex="0" | ||
| /> | ||
| </div> | ||
| <p> | ||
| <span> | ||
| Decide which spaces can access this room. If a space is selected, its members can find and join | ||
| <b> | ||
| !roomId:server | ||
| </b> | ||
| . | ||
| </span> | ||
| </p> | ||
| <div | ||
| class="mx_SearchBox mx_textinput" | ||
| > | ||
| <input | ||
| autocomplete="off" | ||
| class="mx_textinput_icon mx_textinput_search mx_textinput_icon mx_textinput_search" | ||
| data-testid="searchbox-input" | ||
| placeholder="Search spaces" | ||
| type="text" | ||
| value="" | ||
| /> | ||
| <div | ||
| class="mx_AccessibleButton mx_SearchBox_closeButton" | ||
| role="button" | ||
| tabindex="-1" | ||
| /> | ||
| </div> | ||
| <div | ||
| class="mx_AutoHideScrollbar mx_ManageRestrictedJoinRuleDialog_content" | ||
| tabindex="-1" | ||
| > | ||
| <div | ||
| class="mx_ManageRestrictedJoinRuleDialog_section" | ||
| > | ||
| <h3> | ||
| Other spaces you know | ||
| </h3> | ||
| <label | ||
| class="mx_ManageRestrictedJoinRuleDialog_entry" | ||
| > | ||
| <div> | ||
| <div> | ||
| <span | ||
| class="mx_BaseAvatar" | ||
| role="presentation" | ||
| > | ||
| <span | ||
| aria-hidden="true" | ||
| class="mx_BaseAvatar_initial" | ||
| style="font-size: 13px; width: 20px; line-height: 20px;" | ||
| > | ||
| O | ||
| </span> | ||
| <img | ||
| alt="" | ||
| aria-hidden="true" | ||
| class="mx_BaseAvatar_image" | ||
| data-testid="avatar-img" | ||
| loading="lazy" | ||
| src="data:image/png;base64,00" | ||
| style="width: 20px; height: 20px;" | ||
| /> | ||
| </span> | ||
| <span | ||
| class="mx_ManageRestrictedJoinRuleDialog_entry_name" | ||
| > | ||
| Other Space | ||
| </span> | ||
| </div> | ||
| <div | ||
| class="mx_ManageRestrictedJoinRuleDialog_entry_description" | ||
| > | ||
| 0 members | ||
| </div> | ||
| </div> | ||
| <span | ||
| class="mx_Checkbox mx_Checkbox_hasKind mx_Checkbox_kind_solid" | ||
| > | ||
| <input | ||
| id="checkbox_abdefghi" | ||
| type="checkbox" | ||
| /> | ||
| <label | ||
| for="checkbox_abdefghi" | ||
| > | ||
| <div | ||
| class="mx_Checkbox_background" | ||
| > | ||
| <div | ||
| class="mx_Checkbox_checkmark" | ||
| /> | ||
| </div> | ||
| </label> | ||
| </span> | ||
| </label> | ||
| </div> | ||
| </div> | ||
| <div | ||
| class="mx_ManageRestrictedJoinRuleDialog_footer" | ||
| > | ||
| <div | ||
| class="mx_ManageRestrictedJoinRuleDialog_section_info" | ||
| > | ||
| You're removing all spaces. Access will default to invite only | ||
| </div> | ||
| <div | ||
| class="mx_ManageRestrictedJoinRuleDialog_footer_buttons" | ||
| > | ||
| <div | ||
| class="mx_AccessibleButton mx_AccessibleButton_hasKind mx_AccessibleButton_kind_primary_outline" | ||
| role="button" | ||
| tabindex="0" | ||
| > | ||
| Cancel | ||
| </div> | ||
| <div | ||
| class="mx_AccessibleButton mx_AccessibleButton_hasKind mx_AccessibleButton_kind_primary" | ||
| role="button" | ||
| tabindex="0" | ||
| > | ||
| Confirm | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| <div | ||
| data-focus-guard="true" | ||
| style="width: 1px; height: 0px; padding: 0px; overflow: hidden; position: fixed; top: 1px; left: 1px;" | ||
| tabindex="0" | ||
| /> | ||
| </DocumentFragment> | ||
| `; | ||
|
|
||
| exports[`<ManageRestrictedJoinRuleDialog /> should render empty state 1`] = ` | ||
| <DocumentFragment> | ||
| <div | ||
| data-focus-guard="true" | ||
| style="width: 1px; height: 0px; padding: 0px; overflow: hidden; position: fixed; top: 1px; left: 1px;" | ||
| tabindex="0" | ||
| /> | ||
| <div | ||
| aria-labelledby="mx_BaseDialog_title" | ||
| class="mx_ManageRestrictedJoinRuleDialog" | ||
| data-focus-lock-disabled="false" | ||
| role="dialog" | ||
| > | ||
| <div | ||
| class="mx_Dialog_header mx_Dialog_headerWithCancel" | ||
| > | ||
| <h2 | ||
| class="mx_Heading_h3 mx_Dialog_title" | ||
| id="mx_BaseDialog_title" | ||
| > | ||
| Select spaces | ||
| </h2> | ||
| <div | ||
| aria-label="Close dialog" | ||
| class="mx_AccessibleButton mx_Dialog_cancelButton" | ||
| role="button" | ||
| tabindex="0" | ||
| /> | ||
| </div> | ||
| <p> | ||
| <span> | ||
| Decide which spaces can access this room. If a space is selected, its members can find and join | ||
| <b> | ||
| !roomId:server | ||
| </b> | ||
| . | ||
| </span> | ||
| </p> | ||
| <div | ||
| class="mx_SearchBox mx_textinput" | ||
| > | ||
| <input | ||
| autocomplete="off" | ||
| class="mx_textinput_icon mx_textinput_search mx_textinput_icon mx_textinput_search" | ||
| data-testid="searchbox-input" | ||
| placeholder="Search spaces" | ||
| type="text" | ||
| value="" | ||
| /> | ||
| <div | ||
| class="mx_AccessibleButton mx_SearchBox_closeButton" | ||
| role="button" | ||
| tabindex="-1" | ||
| /> | ||
| </div> | ||
| <div | ||
| class="mx_AutoHideScrollbar mx_ManageRestrictedJoinRuleDialog_content" | ||
| tabindex="-1" | ||
| > | ||
| <span | ||
| class="mx_ManageRestrictedJoinRuleDialog_noResults" | ||
| > | ||
| No results | ||
| </span> | ||
| </div> | ||
| <div | ||
| class="mx_ManageRestrictedJoinRuleDialog_footer" | ||
| > | ||
| <div | ||
| class="mx_ManageRestrictedJoinRuleDialog_section_info" | ||
| > | ||
| You're removing all spaces. Access will default to invite only | ||
| </div> | ||
| <div | ||
| class="mx_ManageRestrictedJoinRuleDialog_footer_buttons" | ||
| > | ||
| <div | ||
| class="mx_AccessibleButton mx_AccessibleButton_hasKind mx_AccessibleButton_kind_primary_outline" | ||
| role="button" | ||
| tabindex="0" | ||
| > | ||
| Cancel | ||
| </div> | ||
| <div | ||
| class="mx_AccessibleButton mx_AccessibleButton_hasKind mx_AccessibleButton_kind_primary" | ||
| role="button" | ||
| tabindex="0" | ||
| > | ||
| Confirm | ||
| </div> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| <div | ||
| data-focus-guard="true" | ||
| style="width: 1px; height: 0px; padding: 0px; overflow: hidden; position: fixed; top: 1px; left: 1px;" | ||
| tabindex="0" | ||
| /> | ||
| </DocumentFragment> | ||
| `; |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.