mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-25 09:58:11 +08:00
3c8010b719
* New user profile UI in User Settings Using new Edit In Place component. * Show avatar upload error * Fix avatar upload error * Wire up errors & feedback for display name setting * Implement avatar upload / remove progress toast * Add 768px breakpoint * Fix display of no avatar in avatar setting controls There was supposed to be a person icon but it was invisible, and also would have been inappropriate for room avatars anyway. This makes it match the designs by being the same as whatever the default avatar is. * Fix room profile display * Update to released compund-web with required components / fixes * Require compound-web 4.4.0 because we do need it * Update snapshots Because of course all the auto-generated IDs of unrelated things have changed. * Fix duplicate import * Fix CSS comment * Update snapshot * Run all the tests so the ids stay the same * Start of a test for ProfileSettings * More tests * Test that a toast appears * Test ToastRack * Update snapshots * Add the usernamee control * Fix playwright tests * New compound version for editinplace fixes * Fix useId to not just generate a constant ID * Use the label in the username component * Fix widths of test boxes * Update screenshots * Put ^ back on compound-web version * Split CSS for room & user profile settings and name the components correspondingly * Fix playwright test * Update room settings screenshot * Use original screenshot instead * Add required props in test * Fix test * Also here * Update screenshots * Remove user icon ...which is unused now, as far as I can see. * Fix styling of unrelated buttons Needed to be added in other places otherwise the specificity changes. Also put the old screenshots back. * Add copyright year * Fix copyright year * Switch to useMatrixClientContext * Fix other test
114 lines
3.7 KiB
TypeScript
114 lines
3.7 KiB
TypeScript
/*
|
|
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, screen } from "@testing-library/react";
|
|
import userEvent from "@testing-library/user-event";
|
|
|
|
import AvatarSetting from "../../../../src/components/views/settings/AvatarSetting";
|
|
import { stubClient } from "../../../test-utils";
|
|
|
|
const BASE64_GIF = "R0lGODlhAQABAAAAACw=";
|
|
const AVATAR_FILE = new File([Uint8Array.from(atob(BASE64_GIF), (c) => c.charCodeAt(0))], "avatar.gif", {
|
|
type: "image/gif",
|
|
});
|
|
|
|
describe("<AvatarSetting />", () => {
|
|
beforeEach(() => {
|
|
stubClient();
|
|
});
|
|
|
|
it("renders avatar with specified alt text", async () => {
|
|
const { queryByAltText } = render(
|
|
<AvatarSetting
|
|
placeholderId="blee"
|
|
placeholderName="boo"
|
|
avatarAltText="Avatar of Peter Fox"
|
|
avatar="mxc://example.org/my-avatar"
|
|
/>,
|
|
);
|
|
|
|
const imgElement = queryByAltText("Avatar of Peter Fox");
|
|
expect(imgElement).toBeInTheDocument();
|
|
});
|
|
|
|
it("renders avatar with remove button", async () => {
|
|
const { queryByText } = render(
|
|
<AvatarSetting
|
|
avatarAltText="Avatar of Peter Fox"
|
|
avatar="mxc://example.org/my-avatar"
|
|
removeAvatar={jest.fn()}
|
|
placeholderId="blee"
|
|
placeholderName="boo"
|
|
/>,
|
|
);
|
|
|
|
const removeButton = queryByText("Remove");
|
|
expect(removeButton).toBeInTheDocument();
|
|
});
|
|
|
|
it("renders avatar without remove button", async () => {
|
|
const { queryByText } = render(
|
|
<AvatarSetting
|
|
placeholderId="blee"
|
|
placeholderName="boo"
|
|
disabled={true}
|
|
avatarAltText="Avatar of Peter Fox"
|
|
/>,
|
|
);
|
|
|
|
const removeButton = queryByText("Remove");
|
|
expect(removeButton).toBeNull();
|
|
});
|
|
|
|
it("renders a file as the avatar when supplied", async () => {
|
|
render(
|
|
<AvatarSetting
|
|
placeholderId="blee"
|
|
placeholderName="boo"
|
|
avatarAltText="Avatar of Peter Fox"
|
|
avatar={AVATAR_FILE}
|
|
/>,
|
|
);
|
|
|
|
const imgElement = await screen.findByRole("button", { name: "Avatar of Peter Fox" });
|
|
expect(imgElement).toBeInTheDocument();
|
|
expect(imgElement).toHaveAttribute("src", "data:image/gif;base64," + BASE64_GIF);
|
|
});
|
|
|
|
it("calls onChange when a file is uploaded", async () => {
|
|
const onChange = jest.fn();
|
|
const user = userEvent.setup();
|
|
|
|
render(
|
|
<AvatarSetting
|
|
placeholderId="blee"
|
|
placeholderName="boo"
|
|
avatar="mxc://example.org/my-avatar"
|
|
avatarAltText="Avatar of Peter Fox"
|
|
onChange={onChange}
|
|
/>,
|
|
);
|
|
|
|
// not really necessary, but to follow the expected user flow as much as possible
|
|
await user.click(screen.getByRole("button", { name: "Avatar of Peter Fox" }));
|
|
|
|
const fileInput = screen.getByAltText("Upload");
|
|
await user.upload(fileInput, AVATAR_FILE);
|
|
|
|
expect(onChange).toHaveBeenCalledWith(AVATAR_FILE);
|
|
});
|
|
});
|