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 820
Render custom images in reactions #11087
Merged
t3chguy
merged 12 commits into
matrix-org:develop
from
sumnerevans:msc4027-custom-images-in-reactions
Sep 1, 2023
Merged
Changes from 11 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
56646ec
Add support for rendering custom emojis in reactions
tulir a4b8ae7
Include custom reaction short names in tooltips
tulir 4df35a5
Use custom reaction shortcode for accessibility
sumnerevans c0822da
Remove explicit instantiation of `customReactionName` variable and ad…
sumnerevans 40f0379
Put custom reaction images behind a labs flag
sumnerevans c054777
Use UnstableValue for finding the shortcode
sumnerevans f7d7a8c
Move calculation of whether to render custom reaction images up to Re…
sumnerevans 3045c3f
Make alt text more friendly when custom reaction doesn't have shortcode
sumnerevans 53e9eda
Add test for ReactionsRowButton
sumnerevans 1ab97d3
Apply suggestions from code review
sumnerevans 3845d29
Don't use Optional
sumnerevans acae684
Fix ReactionsRowButton test
sumnerevans 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
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
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
119 changes: 119 additions & 0 deletions
119
test/components/views/messages/ReactionsRowButton-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,119 @@ | ||
/* | ||
Copyright 2023 Beeper | ||
|
||
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 { IContent, MatrixEvent, Room } from "matrix-js-sdk/src/matrix"; | ||
import { render } from "@testing-library/react"; | ||
|
||
import MatrixClientContext from "../../../../src/contexts/MatrixClientContext"; | ||
import { getMockClientWithEventEmitter } from "../../../test-utils"; | ||
import ReactionsRowButton, { IProps } from "../../../../src/components/views/messages/ReactionsRowButton"; | ||
|
||
describe("ReactionsRowButton", () => { | ||
const userId = "@alice:server"; | ||
const roomId = "!randomcharacters:aser.ver"; | ||
const mockClient = getMockClientWithEventEmitter({ | ||
mxcUrlToHttp: jest.fn().mockReturnValue("https://not.a.real.url"), | ||
getRoom: jest.fn(), | ||
}); | ||
const room = new Room(roomId, mockClient, userId); | ||
|
||
const createProps = (relationContent: IContent): IProps => ({ | ||
mxEvent: new MatrixEvent({ | ||
room_id: roomId, | ||
event_id: "$test:example.com", | ||
content: { body: "test" }, | ||
}), | ||
content: relationContent["m.relates_to"]?.key || "", | ||
count: 2, | ||
reactionEvents: [ | ||
new MatrixEvent({ | ||
type: "m.reaction", | ||
sender: "@user1:example.com", | ||
content: relationContent, | ||
}), | ||
new MatrixEvent({ | ||
type: "m.reaction", | ||
sender: "@user2:example.com", | ||
content: relationContent, | ||
}), | ||
], | ||
customReactionImagesEnabled: true, | ||
}); | ||
|
||
beforeEach(function () { | ||
jest.clearAllMocks(); | ||
mockClient.credentials = { userId: userId }; | ||
mockClient.getRoom.mockImplementation((roomId: string): Room | null => { | ||
return roomId === room.roomId ? room : null; | ||
}); | ||
}); | ||
|
||
it("renders reaction row button emojis correctly", () => { | ||
const props = createProps({ | ||
"m.relates_to": { | ||
event_id: "$user2:example.com", | ||
key: "👍", | ||
rel_type: "m.annotation", | ||
}, | ||
}); | ||
const root = render( | ||
<MatrixClientContext.Provider value={mockClient}> | ||
<ReactionsRowButton {...props} /> | ||
</MatrixClientContext.Provider>, | ||
); | ||
expect(root).toMatchSnapshot(); | ||
sumnerevans marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
// Try hover and make sure that the ReactionsRowButtonTooltip works | ||
const reactionButton = root.getByRole("button"); | ||
const event = new MouseEvent("mouseover", { | ||
bubbles: true, | ||
cancelable: true, | ||
}); | ||
reactionButton.dispatchEvent(event); | ||
|
||
expect(root).toMatchSnapshot(); | ||
sumnerevans marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}); | ||
|
||
it("renders reaction row button custom image reactions correctly", () => { | ||
const props = createProps({ | ||
"com.beeper.reaction.shortcode": ":test:", | ||
"shortcode": ":test:", | ||
"m.relates_to": { | ||
event_id: "$user1:example.com", | ||
key: "mxc://example.com/123456789", | ||
rel_type: "m.annotation", | ||
}, | ||
}); | ||
|
||
const root = render( | ||
<MatrixClientContext.Provider value={mockClient}> | ||
<ReactionsRowButton {...props} /> | ||
</MatrixClientContext.Provider>, | ||
); | ||
expect(root).toMatchSnapshot(); | ||
|
||
// Try hover and make sure that the ReactionsRowButtonTooltip works | ||
const reactionButton = root.getByRole("button"); | ||
const event = new MouseEvent("mouseover", { | ||
bubbles: true, | ||
cancelable: true, | ||
}); | ||
reactionButton.dispatchEvent(event); | ||
|
||
expect(root).toMatchSnapshot(); | ||
}); | ||
}); |
Oops, something went wrong.
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.