* feat: new Menu Component API * allow valid children types * introduce menu group to group items * Add lang footer * use display name * displayName * define types inside * fix default menu * add json export to menu * fix * simplify expression * put open menu into own compo to optimize perf So that we don't rerun `useOutsideClickHook` (and rebind event listeners all the time) * naming tweaks * rename MenuComponents->MenuDefaultItems and export default items from Menu.Items * import Menu.scss in Menu.tsx * move menu scss to excal app * Don't filter children inside menu group * move E+ out of socials * support style prop for MenuItem and MenuGroup * Support header in menu group and add Excalidraw links header for default items in social section * rename header to title * fix padding for lang * render menu in mobile * review fixes * tweaks * Export collaborators and show in mobile menu * revert .env * lint :p * again lint * show correct actions in view mode for mobile * Whitelist Collaborators Comp * mobile styling * padding * don't show nerds when menu open in mobile * lint :( * hide shortcuts * refactor userlist to support mobile and keep a wrapper comp for excal app * use only UserList * render only on mobile for default items * remove unused hooks * Show collab button in menu when onCollabButtonClick present and hide export when UIOptions.canvasActions.export is false * fix tests * lint * inject userlist inside menu on mobile * revert userlist * move menu socials to default menu * fix collab * use meny in library * Make Menu generic and create hamburgemenu for public excal menu and use menu in library as well * use appState.openMenu for mobile * fix tests * styling fixes and support style and class name in menu content * fix test * rename MenuDefaultItems->DefaultItems * move footer css to its own comp * rename HamburgerMenu -> MainMenu * rename menu -> dropdownMenu and update classes, onClick->onToggle * close main menu when dialog closes * by bye filtering * update docs * fix lint * update example, docs for useDevice and footer in mobile, rename menu ->DropDownMenu everywhere * spec * remove isMenuOpenAtom and set openMenu as canvas for main menu, render decreases in specs :) * [temp] remove cyclic depenedency to fix build * hack- update appstate to sync lang change * Add more specs * wip: rewrite MainMenu footer * fix margin * fix snaps * not needed as lang list no more imported * simplify custom footer rendering * Add DropdownMenuItemLink and DropdownMenuItemCustom and update API, docs * fix `MainMenu.ItemCustom` * naming * use onSelect and base class for custom items * fix lint * fix snap * use custom item for lang * update docs * fix * properly use `MainMenu.ItemCustom` for `LanguageList` * add margin top to custom items * flex Co-authored-by: dwelle <luzar.david@gmail.com>
357 lines
13 KiB
TypeScript
357 lines
13 KiB
TypeScript
import { fireEvent, GlobalTestState, toggleMenu, render } from "../test-utils";
|
|
import { Excalidraw, Footer, MainMenu } from "../../packages/excalidraw/index";
|
|
import { queryByText, queryByTestId } from "@testing-library/react";
|
|
import { GRID_SIZE, THEME } from "../../constants";
|
|
import { t } from "../../i18n";
|
|
|
|
const { h } = window;
|
|
|
|
describe("<Excalidraw/>", () => {
|
|
afterEach(() => {
|
|
const menu = document.querySelector(".dropdown-menu");
|
|
if (menu) {
|
|
toggleMenu(document.querySelector(".excalidraw")!);
|
|
}
|
|
});
|
|
describe("Test zenModeEnabled prop", () => {
|
|
it('should show exit zen mode button when zen mode is set and zen mode option in context menu when zenModeEnabled is "undefined"', async () => {
|
|
const { container } = await render(<Excalidraw />);
|
|
expect(
|
|
container.getElementsByClassName("disable-zen-mode--visible").length,
|
|
).toBe(0);
|
|
expect(h.state.zenModeEnabled).toBe(false);
|
|
|
|
fireEvent.contextMenu(GlobalTestState.canvas, {
|
|
button: 2,
|
|
clientX: 1,
|
|
clientY: 1,
|
|
});
|
|
const contextMenu = document.querySelector(".context-menu");
|
|
fireEvent.click(queryByText(contextMenu as HTMLElement, "Zen mode")!);
|
|
expect(h.state.zenModeEnabled).toBe(true);
|
|
expect(
|
|
container.getElementsByClassName("disable-zen-mode--visible").length,
|
|
).toBe(1);
|
|
});
|
|
|
|
it("should not show exit zen mode button and zen mode option in context menu when zenModeEnabled is set", async () => {
|
|
const { container } = await render(<Excalidraw zenModeEnabled={true} />);
|
|
expect(
|
|
container.getElementsByClassName("disable-zen-mode--visible").length,
|
|
).toBe(0);
|
|
expect(h.state.zenModeEnabled).toBe(true);
|
|
|
|
fireEvent.contextMenu(GlobalTestState.canvas, {
|
|
button: 2,
|
|
clientX: 1,
|
|
clientY: 1,
|
|
});
|
|
const contextMenu = document.querySelector(".context-menu");
|
|
expect(queryByText(contextMenu as HTMLElement, "Zen mode")).toBe(null);
|
|
expect(h.state.zenModeEnabled).toBe(true);
|
|
expect(
|
|
container.getElementsByClassName("disable-zen-mode--visible").length,
|
|
).toBe(0);
|
|
});
|
|
});
|
|
|
|
it("should render the footer only when Footer is passed as children", async () => {
|
|
//Footer not passed hence it will not render the footer
|
|
let { container } = await render(
|
|
<Excalidraw>
|
|
<div>This is a custom footer</div>
|
|
</Excalidraw>,
|
|
);
|
|
expect(container.querySelector(".footer-center")).toBe(null);
|
|
|
|
// Footer passed hence it will render the footer
|
|
({ container } = await render(
|
|
<Excalidraw>
|
|
<Footer>
|
|
<div>This is a custom footer</div>
|
|
</Footer>
|
|
</Excalidraw>,
|
|
));
|
|
expect(container.querySelector(".footer-center")).toMatchInlineSnapshot(`
|
|
<div
|
|
class="footer-center zen-mode-transition"
|
|
>
|
|
<div>
|
|
This is a custom footer
|
|
</div>
|
|
</div>
|
|
`);
|
|
});
|
|
|
|
describe("Test gridModeEnabled prop", () => {
|
|
it('should show grid mode in context menu when gridModeEnabled is "undefined"', async () => {
|
|
const { container } = await render(<Excalidraw />);
|
|
expect(h.state.gridSize).toBe(null);
|
|
|
|
expect(
|
|
container.getElementsByClassName("disable-zen-mode--visible").length,
|
|
).toBe(0);
|
|
fireEvent.contextMenu(GlobalTestState.canvas, {
|
|
button: 2,
|
|
clientX: 1,
|
|
clientY: 1,
|
|
});
|
|
const contextMenu = document.querySelector(".context-menu");
|
|
fireEvent.click(queryByText(contextMenu as HTMLElement, "Show grid")!);
|
|
expect(h.state.gridSize).toBe(GRID_SIZE);
|
|
});
|
|
|
|
it('should not show grid mode in context menu when gridModeEnabled is not "undefined"', async () => {
|
|
const { container } = await render(
|
|
<Excalidraw gridModeEnabled={false} />,
|
|
);
|
|
expect(h.state.gridSize).toBe(null);
|
|
|
|
expect(
|
|
container.getElementsByClassName("disable-zen-mode--visible").length,
|
|
).toBe(0);
|
|
fireEvent.contextMenu(GlobalTestState.canvas, {
|
|
button: 2,
|
|
clientX: 1,
|
|
clientY: 1,
|
|
});
|
|
const contextMenu = document.querySelector(".context-menu");
|
|
expect(queryByText(contextMenu as HTMLElement, "Show grid")).toBe(null);
|
|
expect(h.state.gridSize).toBe(null);
|
|
});
|
|
});
|
|
|
|
it("should render main menu with host menu items if passed from host", async () => {
|
|
const { container } = await render(
|
|
<Excalidraw UIOptions={undefined}>
|
|
<MainMenu>
|
|
<MainMenu.Item onSelect={() => window.alert("Clicked")}>
|
|
Click me
|
|
</MainMenu.Item>
|
|
<MainMenu.ItemLink href="blog.excalidaw.com">
|
|
Excalidraw blog
|
|
</MainMenu.ItemLink>
|
|
<MainMenu.ItemCustom>
|
|
<button
|
|
style={{ height: "2rem" }}
|
|
onClick={() => window.alert("custom menu item")}
|
|
>
|
|
{" "}
|
|
custom menu item
|
|
</button>
|
|
</MainMenu.ItemCustom>
|
|
<MainMenu.DefaultItems.Help />
|
|
</MainMenu>
|
|
</Excalidraw>,
|
|
);
|
|
//open menu
|
|
toggleMenu(container);
|
|
expect(queryByTestId(container, "dropdown-menu")).toMatchSnapshot();
|
|
});
|
|
|
|
describe("Test UIOptions prop", () => {
|
|
describe("Test canvasActions", () => {
|
|
it('should render menu with default items when "UIOPtions" is "undefined"', async () => {
|
|
const { container } = await render(
|
|
<Excalidraw UIOptions={undefined} />,
|
|
);
|
|
//open menu
|
|
toggleMenu(container);
|
|
expect(queryByTestId(container, "dropdown-menu")).toMatchSnapshot();
|
|
});
|
|
|
|
it("should hide clear canvas button when clearCanvas is false", async () => {
|
|
const { container } = await render(
|
|
<Excalidraw UIOptions={{ canvasActions: { clearCanvas: false } }} />,
|
|
);
|
|
//open menu
|
|
toggleMenu(container);
|
|
expect(queryByTestId(container, "clear-canvas-button")).toBeNull();
|
|
});
|
|
|
|
it("should hide export button when export is false", async () => {
|
|
const { container } = await render(
|
|
<Excalidraw UIOptions={{ canvasActions: { export: false } }} />,
|
|
);
|
|
//open menu
|
|
toggleMenu(container);
|
|
expect(queryByTestId(container, "json-export-button")).toBeNull();
|
|
});
|
|
|
|
it("should hide 'Save as image' button when 'saveAsImage' is false", async () => {
|
|
const { container } = await render(
|
|
<Excalidraw UIOptions={{ canvasActions: { saveAsImage: false } }} />,
|
|
);
|
|
//open menu
|
|
toggleMenu(container);
|
|
expect(queryByTestId(container, "image-export-button")).toBeNull();
|
|
});
|
|
|
|
it("should hide load button when loadScene is false", async () => {
|
|
const { container } = await render(
|
|
<Excalidraw UIOptions={{ canvasActions: { loadScene: false } }} />,
|
|
);
|
|
|
|
expect(queryByTestId(container, "load-button")).toBeNull();
|
|
});
|
|
|
|
it("should hide save as button when saveFileToDisk is false", async () => {
|
|
const { container } = await render(
|
|
<Excalidraw
|
|
UIOptions={{ canvasActions: { export: { saveFileToDisk: false } } }}
|
|
/>,
|
|
);
|
|
//open menu
|
|
toggleMenu(container);
|
|
expect(queryByTestId(container, "save-as-button")).toBeNull();
|
|
});
|
|
|
|
it("should hide save button when saveToActiveFile is false", async () => {
|
|
const { container } = await render(
|
|
<Excalidraw
|
|
UIOptions={{ canvasActions: { saveToActiveFile: false } }}
|
|
/>,
|
|
);
|
|
//open menu
|
|
toggleMenu(container);
|
|
expect(queryByTestId(container, "save-button")).toBeNull();
|
|
});
|
|
|
|
it("should hide the canvas background picker when changeViewBackgroundColor is false", async () => {
|
|
const { container } = await render(
|
|
<Excalidraw
|
|
UIOptions={{ canvasActions: { changeViewBackgroundColor: false } }}
|
|
/>,
|
|
);
|
|
//open menu
|
|
toggleMenu(container);
|
|
expect(queryByTestId(container, "canvas-background-picker")).toBeNull();
|
|
});
|
|
|
|
it("should hide the theme toggle when theme is false", async () => {
|
|
const { container } = await render(
|
|
<Excalidraw UIOptions={{ canvasActions: { toggleTheme: false } }} />,
|
|
);
|
|
//open menu
|
|
toggleMenu(container);
|
|
expect(queryByTestId(container, "toggle-dark-mode")).toBeNull();
|
|
});
|
|
|
|
it("should not render default items in custom menu even if passed if the prop in `canvasActions` is set to false", async () => {
|
|
const { container } = await render(
|
|
<Excalidraw UIOptions={{ canvasActions: { loadScene: false } }}>
|
|
<MainMenu>
|
|
<MainMenu.ItemCustom>
|
|
<button
|
|
style={{ height: "2rem" }}
|
|
onClick={() => window.alert("custom menu item")}
|
|
>
|
|
{" "}
|
|
custom item
|
|
</button>
|
|
</MainMenu.ItemCustom>
|
|
<MainMenu.DefaultItems.LoadScene />
|
|
</MainMenu>
|
|
</Excalidraw>,
|
|
);
|
|
//open menu
|
|
toggleMenu(container);
|
|
// load button shouldn't be rendered since `UIActions.canvasActions.loadScene` is `false`
|
|
expect(queryByTestId(container, "load-button")).toBeNull();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("Test theme prop", () => {
|
|
it("should show the theme toggle by default", async () => {
|
|
const { container } = await render(<Excalidraw />);
|
|
expect(h.state.theme).toBe(THEME.LIGHT);
|
|
//open menu
|
|
toggleMenu(container);
|
|
const darkModeToggle = queryByTestId(container, "toggle-dark-mode");
|
|
expect(darkModeToggle).toBeTruthy();
|
|
});
|
|
|
|
it("should not show theme toggle when the theme prop is defined", async () => {
|
|
const { container } = await render(<Excalidraw theme={THEME.DARK} />);
|
|
|
|
expect(h.state.theme).toBe(THEME.DARK);
|
|
//open menu
|
|
toggleMenu(container);
|
|
expect(queryByTestId(container, "toggle-dark-mode")).toBe(null);
|
|
});
|
|
|
|
it("should show theme mode toggle when `UIOptions.canvasActions.toggleTheme` is true", async () => {
|
|
const { container } = await render(
|
|
<Excalidraw
|
|
theme={THEME.DARK}
|
|
UIOptions={{ canvasActions: { toggleTheme: true } }}
|
|
/>,
|
|
);
|
|
expect(h.state.theme).toBe(THEME.DARK);
|
|
//open menu
|
|
toggleMenu(container);
|
|
const darkModeToggle = queryByTestId(container, "toggle-dark-mode");
|
|
expect(darkModeToggle).toBeTruthy();
|
|
});
|
|
|
|
it("should not show theme toggle when `UIOptions.canvasActions.toggleTheme` is false", async () => {
|
|
const { container } = await render(
|
|
<Excalidraw
|
|
UIOptions={{ canvasActions: { toggleTheme: false } }}
|
|
theme={THEME.DARK}
|
|
/>,
|
|
);
|
|
expect(h.state.theme).toBe(THEME.DARK);
|
|
//open menu
|
|
toggleMenu(container);
|
|
const darkModeToggle = queryByTestId(container, "toggle-dark-mode");
|
|
expect(darkModeToggle).toBeFalsy();
|
|
});
|
|
});
|
|
|
|
describe("Test name prop", () => {
|
|
it('should allow editing name when the name prop is "undefined"', async () => {
|
|
const { container } = await render(<Excalidraw />);
|
|
//open menu
|
|
toggleMenu(container);
|
|
fireEvent.click(queryByTestId(container, "image-export-button")!);
|
|
const textInput: HTMLInputElement | null = document.querySelector(
|
|
".ExportDialog .ProjectName .TextInput",
|
|
);
|
|
expect(textInput?.value).toContain(`${t("labels.untitled")}`);
|
|
expect(textInput?.nodeName).toBe("INPUT");
|
|
});
|
|
|
|
it('should set the name and not allow editing when the name prop is present"', async () => {
|
|
const name = "test";
|
|
const { container } = await render(<Excalidraw name={name} />);
|
|
//open menu
|
|
toggleMenu(container);
|
|
await fireEvent.click(queryByTestId(container, "image-export-button")!);
|
|
const textInput = document.querySelector(
|
|
".ExportDialog .ProjectName .TextInput--readonly",
|
|
);
|
|
expect(textInput?.textContent).toEqual(name);
|
|
expect(textInput?.nodeName).toBe("SPAN");
|
|
});
|
|
});
|
|
describe("Test autoFocus prop", () => {
|
|
it("should not focus when autoFocus is false", async () => {
|
|
const { container } = await render(<Excalidraw />);
|
|
|
|
expect(
|
|
container.querySelector(".excalidraw") === document.activeElement,
|
|
).toBe(false);
|
|
});
|
|
|
|
it("should focus when autoFocus is true", async () => {
|
|
const { container } = await render(<Excalidraw autoFocus={true} />);
|
|
|
|
expect(
|
|
container.querySelector(".excalidraw") === document.activeElement,
|
|
).toBe(true);
|
|
});
|
|
});
|
|
});
|