From 6ec259a0e71174651bae95d4628138bf6fd68742 Mon Sep 17 00:00:00 2001 From: kj_sh604 Date: Sun, 15 Mar 2026 16:19:35 -0400 Subject: refactor: packages/ --- .../excalidraw/components/main-menu/MainMenu.tsx | 84 ++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 packages/excalidraw/components/main-menu/MainMenu.tsx (limited to 'packages/excalidraw/components/main-menu/MainMenu.tsx') diff --git a/packages/excalidraw/components/main-menu/MainMenu.tsx b/packages/excalidraw/components/main-menu/MainMenu.tsx new file mode 100644 index 0000000..07afd3c --- /dev/null +++ b/packages/excalidraw/components/main-menu/MainMenu.tsx @@ -0,0 +1,84 @@ +import React from "react"; +import { useDevice, useExcalidrawSetAppState } from "../App"; +import DropdownMenu from "../dropdownMenu/DropdownMenu"; + +import * as DefaultItems from "./DefaultItems"; + +import { UserList } from "../UserList"; +import { t } from "../../i18n"; +import { HamburgerMenuIcon } from "../icons"; +import { withInternalFallback } from "../hoc/withInternalFallback"; +import { composeEventHandlers } from "../../utils"; +import { useTunnels } from "../../context/tunnels"; +import { useUIAppState } from "../../context/ui-appState"; + +const MainMenu = Object.assign( + withInternalFallback( + "MainMenu", + ({ + children, + onSelect, + }: { + children?: React.ReactNode; + /** + * Called when any menu item is selected (clicked on). + */ + onSelect?: (event: Event) => void; + }) => { + const { MainMenuTunnel } = useTunnels(); + const device = useDevice(); + const appState = useUIAppState(); + const setAppState = useExcalidrawSetAppState(); + const onClickOutside = device.editor.isMobile + ? undefined + : () => setAppState({ openMenu: null }); + + return ( + + + { + setAppState({ + openMenu: appState.openMenu === "canvas" ? null : "canvas", + }); + }} + data-testid="main-menu-trigger" + className="main-menu-trigger" + > + {HamburgerMenuIcon} + + { + setAppState({ openMenu: null }); + })} + > + {children} + {device.editor.isMobile && appState.collaborators.size > 0 && ( +
+ {t("labels.collaborators")} + +
+ )} +
+
+
+ ); + }, + ), + { + Trigger: DropdownMenu.Trigger, + Item: DropdownMenu.Item, + ItemLink: DropdownMenu.ItemLink, + ItemCustom: DropdownMenu.ItemCustom, + Group: DropdownMenu.Group, + Separator: DropdownMenu.Separator, + DefaultItems, + }, +); + +export default MainMenu; -- cgit v1.2.3