Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Fix: reveal images when image previews are disabled #10781

Merged
merged 4 commits into from
May 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 17 additions & 8 deletions src/components/views/messages/MImageBody.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ export default class MImageBody extends React.Component<IBodyProps, IState> {
thumbUrl: string | null,
content: IMediaEventContent,
forcedHeight?: number,
): JSX.Element {
): ReactNode {
if (!thumbUrl) thumbUrl = contentUrl; // fallback

// magic number
Expand Down Expand Up @@ -524,16 +524,25 @@ export default class MImageBody extends React.Component<IBodyProps, IState> {
</div>
);

return contentUrl ? this.wrapImage(contentUrl, thumbnail) : thumbnail;
return this.wrapImage(contentUrl, thumbnail);
}

// Overridden by MStickerBody
protected wrapImage(contentUrl: string, children: JSX.Element): JSX.Element {
return (
<a href={contentUrl} target={this.props.forExport ? "_blank" : undefined} onClick={this.onClick}>
{children}
</a>
);
protected wrapImage(contentUrl: string | null | undefined, children: JSX.Element): ReactNode {
if (contentUrl) {
return (
<a href={contentUrl} target={this.props.forExport ? "_blank" : undefined} onClick={this.onClick}>
{children}
</a>
);
} else if (!this.state.showImage) {
return (
<div role="button" onClick={this.onClick}>
{children}
</div>
);
}
return children;
}

// Overridden by MStickerBody
Expand Down
54 changes: 53 additions & 1 deletion test/components/views/messages/MImageBody-test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ limitations under the License.
*/

import React from "react";
import { render, screen } from "@testing-library/react";
import { fireEvent, render, screen } from "@testing-library/react";
import { EventType, MatrixEvent, Room } from "matrix-js-sdk/src/matrix";
import fetchMock from "fetch-mock-jest";
import encrypt from "matrix-encrypt-attachment";
Expand All @@ -31,6 +31,7 @@ import {
mockClientMethodsUser,
} from "../../../test-utils";
import { MediaEventHelper } from "../../../../src/utils/MediaEventHelper";
import SettingsStore from "../../../../src/settings/SettingsStore";

jest.mock("matrix-encrypt-attachment", () => ({
decryptAttachment: jest.fn(),
Expand Down Expand Up @@ -61,6 +62,7 @@ describe("<MImageBody/>", () => {
sender: userId,
type: EventType.RoomMessage,
content: {
body: "alt for a test image",
info: {
w: 40,
h: 50,
Expand All @@ -70,12 +72,18 @@ describe("<MImageBody/>", () => {
},
},
});

const props = {
onHeightChanged: jest.fn(),
onMessageAllowed: jest.fn(),
permalinkCreator: new RoomPermalinkCreator(new Room(encryptedMediaEvent.getRoomId()!, cli, cli.getUserId()!)),
};

beforeEach(() => {
jest.spyOn(SettingsStore, "getValue").mockRestore();
fetchMock.mockReset();
});

it("should show a thumbnail while image is being downloaded", async () => {
fetchMock.getOnce(url, { status: 200 });

Expand All @@ -102,6 +110,8 @@ describe("<MImageBody/>", () => {
/>,
);

expect(fetchMock).toHaveBeenCalledWith(url);

await screen.findByText("Error downloading image");
});

Expand All @@ -119,4 +129,46 @@ describe("<MImageBody/>", () => {

await screen.findByText("Error decrypting image");
});

describe("with image previews/thumbnails disabled", () => {
beforeEach(() => {
jest.spyOn(SettingsStore, "getValue").mockReturnValue(false);
});

it("should not download image", async () => {
fetchMock.getOnce(url, { status: 200 });

render(
<MImageBody
{...props}
mxEvent={encryptedMediaEvent}
mediaEventHelper={new MediaEventHelper(encryptedMediaEvent)}
/>,
);

expect(fetchMock).not.toHaveFetched(url);
});

it("should render hidden image placeholder", async () => {
fetchMock.getOnce(url, { status: 200 });

render(
<MImageBody
{...props}
mxEvent={encryptedMediaEvent}
mediaEventHelper={new MediaEventHelper(encryptedMediaEvent)}
/>,
);

expect(screen.getByText("Show image")).toBeInTheDocument();

fireEvent.click(screen.getByRole("button"));

// image fetched after clicking show image
expect(fetchMock).toHaveFetched(url);

// spinner while downloading image
expect(screen.getByRole("progressbar")).toBeInTheDocument();
});
});
});