mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 13:14:58 +08:00
cb1af0d3de
* Remove unnecessary PipContainer component * Redesign the picture-in-picture window * Add a hover effect to the controls * Clarify that WidgetPip has call-specific behavior
110 lines
3.8 KiB
TypeScript
110 lines
3.8 KiB
TypeScript
/*
|
|
Copyright 2022 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 { screen, render, RenderResult } from "@testing-library/react";
|
|
import userEvent from "@testing-library/user-event";
|
|
|
|
import PictureInPictureDragger, { CreatePipChildren } from "../../../src/components/structures/PictureInPictureDragger";
|
|
|
|
describe("PictureInPictureDragger", () => {
|
|
let renderResult: RenderResult;
|
|
|
|
const mkContent1: Array<CreatePipChildren> = [
|
|
() => {
|
|
return <div>content 1</div>;
|
|
},
|
|
];
|
|
|
|
const mkContent2: Array<CreatePipChildren> = [
|
|
() => {
|
|
return (
|
|
<div>
|
|
content 2<br />
|
|
content 2.2
|
|
</div>
|
|
);
|
|
},
|
|
];
|
|
|
|
describe("when rendering the dragger with PiP content 1", () => {
|
|
beforeEach(() => {
|
|
renderResult = render(<PictureInPictureDragger draggable={true}>{mkContent1}</PictureInPictureDragger>);
|
|
});
|
|
|
|
it("should render the PiP content", () => {
|
|
expect(renderResult.container).toMatchSnapshot("pip-content-1");
|
|
});
|
|
|
|
describe("and rerendering PiP content 1", () => {
|
|
beforeEach(() => {
|
|
renderResult.rerender(<PictureInPictureDragger draggable={true}>{mkContent1}</PictureInPictureDragger>);
|
|
});
|
|
|
|
it("should not change the PiP content", () => {
|
|
expect(renderResult.container).toMatchSnapshot("pip-content-1");
|
|
});
|
|
});
|
|
|
|
describe("and rendering PiP content 2", () => {
|
|
beforeEach(() => {
|
|
renderResult.rerender(<PictureInPictureDragger draggable={true}>{mkContent2}</PictureInPictureDragger>);
|
|
});
|
|
|
|
it("should update the PiP content", () => {
|
|
expect(renderResult.container).toMatchSnapshot();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("when rendering the dragger with PiP content 1 and 2", () => {
|
|
beforeEach(() => {
|
|
renderResult = render(
|
|
<PictureInPictureDragger draggable={true}>{[...mkContent1, ...mkContent2]}</PictureInPictureDragger>,
|
|
);
|
|
});
|
|
|
|
it("should render both contents", () => {
|
|
expect(renderResult.container).toMatchSnapshot();
|
|
});
|
|
});
|
|
|
|
it("doesn't leak drag events to children as clicks", async () => {
|
|
const clickSpy = jest.fn();
|
|
render(
|
|
<PictureInPictureDragger draggable={true}>
|
|
{[
|
|
({ onStartMoving }) => (
|
|
<div onMouseDown={onStartMoving} onClick={clickSpy}>
|
|
Hello
|
|
</div>
|
|
),
|
|
]}
|
|
</PictureInPictureDragger>,
|
|
);
|
|
const target = screen.getByText("Hello");
|
|
|
|
// A click without a drag motion should go through
|
|
await userEvent.pointer([{ keys: "[MouseLeft>]", target }, { keys: "[/MouseLeft]" }]);
|
|
expect(clickSpy).toHaveBeenCalled();
|
|
|
|
// A drag motion should not trigger a click
|
|
clickSpy.mockClear();
|
|
await userEvent.pointer([{ keys: "[MouseLeft>]", target }, { coords: { x: 60, y: 60 } }, "[/MouseLeft]"]);
|
|
expect(clickSpy).not.toHaveBeenCalled();
|
|
});
|
|
});
|