2022-08-08 20:28:02 +08:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2022-12-12 19:24:14 +08:00
|
|
|
import React from "react";
|
2023-02-22 18:52:55 +08:00
|
|
|
import { act, fireEvent, render } from "@testing-library/react";
|
2022-08-08 20:28:02 +08:00
|
|
|
|
|
|
|
import TabbedView, { Tab, TabLocation } from "../../../src/components/structures/TabbedView";
|
2023-03-10 22:55:06 +08:00
|
|
|
import { NonEmptyArray } from "../../../src/@types/common";
|
2023-08-23 01:47:33 +08:00
|
|
|
import { _t } from "../../../src/languageHandler";
|
2022-08-08 20:28:02 +08:00
|
|
|
|
2022-12-12 19:24:14 +08:00
|
|
|
describe("<TabbedView />", () => {
|
2023-09-26 20:04:17 +08:00
|
|
|
const generalTab = new Tab("GENERAL", "common|general", "general", <div>general</div>);
|
2023-08-23 17:25:33 +08:00
|
|
|
const labsTab = new Tab("LABS", "common|labs", "labs", <div>labs</div>);
|
2023-08-23 01:47:33 +08:00
|
|
|
const securityTab = new Tab("SECURITY", "common|security", "security", <div>security</div>);
|
2022-08-08 20:28:02 +08:00
|
|
|
const defaultProps = {
|
|
|
|
tabLocation: TabLocation.LEFT,
|
2023-04-27 19:55:29 +08:00
|
|
|
tabs: [generalTab, labsTab, securityTab] as NonEmptyArray<Tab<any>>,
|
2024-05-03 23:01:01 +08:00
|
|
|
onChange: () => {},
|
2022-08-08 20:28:02 +08:00
|
|
|
};
|
2024-05-03 23:01:01 +08:00
|
|
|
const getComponent = (
|
|
|
|
props: {
|
|
|
|
activeTabId: "GENERAL" | "LABS" | "SECURITY";
|
|
|
|
onChange?: () => any;
|
|
|
|
tabs?: NonEmptyArray<Tab<any>>;
|
|
|
|
} = {
|
|
|
|
activeTabId: "GENERAL",
|
|
|
|
},
|
|
|
|
): React.ReactElement => <TabbedView {...defaultProps} {...props} />;
|
2022-08-08 20:28:02 +08:00
|
|
|
|
2023-04-27 19:55:29 +08:00
|
|
|
const getTabTestId = (tab: Tab<string>): string => `settings-tab-${tab.id}`;
|
2022-08-08 20:28:02 +08:00
|
|
|
const getActiveTab = (container: HTMLElement): Element | undefined =>
|
2022-12-12 19:24:14 +08:00
|
|
|
container.getElementsByClassName("mx_TabbedView_tabLabel_active")[0];
|
2022-08-08 20:28:02 +08:00
|
|
|
const getActiveTabBody = (container: HTMLElement): Element | undefined =>
|
2022-12-12 19:24:14 +08:00
|
|
|
container.getElementsByClassName("mx_TabbedView_tabPanel")[0];
|
2022-08-08 20:28:02 +08:00
|
|
|
|
2022-12-12 19:24:14 +08:00
|
|
|
it("renders tabs", () => {
|
2022-08-08 20:28:02 +08:00
|
|
|
const { container } = render(getComponent());
|
|
|
|
expect(container).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
2024-05-03 23:01:01 +08:00
|
|
|
it("renders activeTabId tab as active when valid", () => {
|
|
|
|
const { container } = render(getComponent({ activeTabId: securityTab.id }));
|
2023-08-23 01:47:33 +08:00
|
|
|
expect(getActiveTab(container)?.textContent).toEqual(_t(securityTab.label));
|
2023-02-14 01:01:43 +08:00
|
|
|
expect(getActiveTabBody(container)?.textContent).toEqual("security");
|
2022-08-08 20:28:02 +08:00
|
|
|
});
|
|
|
|
|
2022-12-12 19:24:14 +08:00
|
|
|
it("calls onchange on on tab click", () => {
|
2022-08-08 20:28:02 +08:00
|
|
|
const onChange = jest.fn();
|
2024-05-03 23:01:01 +08:00
|
|
|
const { getByTestId } = render(getComponent({ activeTabId: "GENERAL", onChange }));
|
2022-08-08 20:28:02 +08:00
|
|
|
|
|
|
|
act(() => {
|
|
|
|
fireEvent.click(getByTestId(getTabTestId(securityTab)));
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(onChange).toHaveBeenCalledWith(securityTab.id);
|
|
|
|
});
|
|
|
|
|
2022-12-12 19:24:14 +08:00
|
|
|
it("keeps same tab active when order of tabs changes", () => {
|
2022-08-08 20:28:02 +08:00
|
|
|
// start with middle tab active
|
2024-05-03 23:01:01 +08:00
|
|
|
const { container, rerender } = render(getComponent({ activeTabId: labsTab.id }));
|
2022-08-08 20:28:02 +08:00
|
|
|
|
2023-08-23 17:25:33 +08:00
|
|
|
expect(getActiveTab(container)?.textContent).toEqual(_t(labsTab.label));
|
2022-08-08 20:28:02 +08:00
|
|
|
|
2024-05-03 23:01:01 +08:00
|
|
|
rerender(getComponent({ tabs: [labsTab, generalTab, securityTab], activeTabId: labsTab.id }));
|
2022-08-08 20:28:02 +08:00
|
|
|
|
|
|
|
// labs tab still active
|
2023-08-23 17:25:33 +08:00
|
|
|
expect(getActiveTab(container)?.textContent).toEqual(_t(labsTab.label));
|
2022-08-08 20:28:02 +08:00
|
|
|
});
|
|
|
|
});
|