2020-01-07 07:50:59 +05:00
|
|
|
import React from "react";
|
|
|
|
import { render, unmountComponentAtNode } from "react-dom";
|
2020-10-19 17:14:28 +03:00
|
|
|
import clsx from "clsx";
|
|
|
|
import { Popover } from "./Popover";
|
2021-01-28 00:41:17 +05:30
|
|
|
import { t } from "../i18n";
|
2020-01-07 07:50:59 +05:00
|
|
|
|
2020-04-10 18:09:29 -04:00
|
|
|
import "./ContextMenu.scss";
|
2020-12-12 23:03:58 +01:00
|
|
|
import {
|
|
|
|
getShortcutFromShortcutName,
|
|
|
|
ShortcutName,
|
|
|
|
} from "../actions/shortcuts";
|
2021-01-28 00:41:17 +05:30
|
|
|
import { Action } from "../actions/types";
|
|
|
|
import { ActionManager } from "../actions/manager";
|
2021-01-29 23:38:37 +05:30
|
|
|
import { AppState } from "../types";
|
2020-01-07 07:50:59 +05:00
|
|
|
|
2021-02-02 02:26:42 +05:30
|
|
|
export type ContextMenuOption = "separator" | Action;
|
2020-01-07 07:50:59 +05:00
|
|
|
|
2021-01-28 00:41:17 +05:30
|
|
|
type ContextMenuProps = {
|
2020-01-07 07:50:59 +05:00
|
|
|
options: ContextMenuOption[];
|
|
|
|
onCloseRequest?(): void;
|
|
|
|
top: number;
|
|
|
|
left: number;
|
2021-01-28 00:41:17 +05:30
|
|
|
actionManager: ActionManager;
|
2021-01-29 23:38:37 +05:30
|
|
|
appState: Readonly<AppState>;
|
2020-01-07 07:50:59 +05:00
|
|
|
};
|
|
|
|
|
2021-01-28 00:41:17 +05:30
|
|
|
const ContextMenu = ({
|
|
|
|
options,
|
|
|
|
onCloseRequest,
|
|
|
|
top,
|
|
|
|
left,
|
|
|
|
actionManager,
|
2021-01-29 23:38:37 +05:30
|
|
|
appState,
|
2021-01-28 00:41:17 +05:30
|
|
|
}: ContextMenuProps) => {
|
2020-09-26 02:48:45 +05:30
|
|
|
const isDarkTheme = !!document
|
|
|
|
.querySelector(".excalidraw")
|
2021-03-13 18:58:06 +05:30
|
|
|
?.classList.contains("theme--dark");
|
2020-09-26 02:48:45 +05:30
|
|
|
return (
|
2020-10-19 17:14:28 +03:00
|
|
|
<div
|
|
|
|
className={clsx("excalidraw", {
|
2021-03-13 18:58:06 +05:30
|
|
|
"theme--dark theme--dark-background-none": isDarkTheme,
|
2020-10-19 17:14:28 +03:00
|
|
|
})}
|
|
|
|
>
|
2020-09-26 02:48:45 +05:30
|
|
|
<Popover
|
|
|
|
onCloseRequest={onCloseRequest}
|
|
|
|
top={top}
|
|
|
|
left={left}
|
|
|
|
fitInViewport={true}
|
|
|
|
>
|
|
|
|
<ul
|
|
|
|
className="context-menu"
|
|
|
|
onContextMenu={(event) => event.preventDefault()}
|
|
|
|
>
|
2021-01-28 00:41:17 +05:30
|
|
|
{options.map((option, idx) => {
|
|
|
|
if (option === "separator") {
|
|
|
|
return <hr key={idx} className="context-menu-option-separator" />;
|
|
|
|
}
|
|
|
|
|
|
|
|
const actionName = option.name;
|
|
|
|
const label = option.contextItemLabel
|
|
|
|
? t(option.contextItemLabel)
|
|
|
|
: "";
|
|
|
|
return (
|
|
|
|
<li key={idx} data-testid={actionName} onClick={onCloseRequest}>
|
|
|
|
<button
|
2021-01-29 23:38:37 +05:30
|
|
|
className={clsx("context-menu-option", {
|
|
|
|
dangerous: actionName === "deleteSelectedElements",
|
|
|
|
checkmark: option.checked?.(appState),
|
|
|
|
})}
|
2021-01-28 00:41:17 +05:30
|
|
|
onClick={() => actionManager.executeAction(option)}
|
|
|
|
>
|
|
|
|
<div className="context-menu-option__label">{label}</div>
|
|
|
|
<kbd className="context-menu-option__shortcut">
|
|
|
|
{actionName
|
|
|
|
? getShortcutFromShortcutName(actionName as ShortcutName)
|
|
|
|
: ""}
|
|
|
|
</kbd>
|
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
);
|
|
|
|
})}
|
2020-09-26 02:48:45 +05:30
|
|
|
</ul>
|
|
|
|
</Popover>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
2020-01-07 07:50:59 +05:00
|
|
|
|
|
|
|
let contextMenuNode: HTMLDivElement;
|
2020-05-20 16:21:37 +03:00
|
|
|
const getContextMenuNode = (): HTMLDivElement => {
|
2020-01-07 07:50:59 +05:00
|
|
|
if (contextMenuNode) {
|
|
|
|
return contextMenuNode;
|
|
|
|
}
|
|
|
|
const div = document.createElement("div");
|
|
|
|
document.body.appendChild(div);
|
|
|
|
return (contextMenuNode = div);
|
2020-05-20 16:21:37 +03:00
|
|
|
};
|
2020-01-07 07:50:59 +05:00
|
|
|
|
|
|
|
type ContextMenuParams = {
|
|
|
|
options: (ContextMenuOption | false | null | undefined)[];
|
2021-01-28 00:41:17 +05:30
|
|
|
top: ContextMenuProps["top"];
|
|
|
|
left: ContextMenuProps["left"];
|
|
|
|
actionManager: ContextMenuProps["actionManager"];
|
2021-01-29 23:38:37 +05:30
|
|
|
appState: Readonly<AppState>;
|
2020-01-07 07:50:59 +05:00
|
|
|
};
|
|
|
|
|
2020-05-20 16:21:37 +03:00
|
|
|
const handleClose = () => {
|
2020-01-07 07:50:59 +05:00
|
|
|
unmountComponentAtNode(getContextMenuNode());
|
2020-05-20 16:21:37 +03:00
|
|
|
};
|
2020-01-07 07:50:59 +05:00
|
|
|
|
|
|
|
export default {
|
|
|
|
push(params: ContextMenuParams) {
|
|
|
|
const options = Array.of<ContextMenuOption>();
|
2020-03-23 13:05:07 +02:00
|
|
|
params.options.forEach((option) => {
|
2020-01-07 07:50:59 +05:00
|
|
|
if (option) {
|
|
|
|
options.push(option);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (options.length) {
|
|
|
|
render(
|
|
|
|
<ContextMenu
|
|
|
|
top={params.top}
|
|
|
|
left={params.left}
|
|
|
|
options={options}
|
|
|
|
onCloseRequest={handleClose}
|
2021-01-28 00:41:17 +05:30
|
|
|
actionManager={params.actionManager}
|
2021-01-29 23:38:37 +05:30
|
|
|
appState={params.appState}
|
2020-01-07 07:50:59 +05:00
|
|
|
/>,
|
2020-01-24 12:04:54 +02:00
|
|
|
getContextMenuNode(),
|
2020-01-07 07:50:59 +05:00
|
|
|
);
|
|
|
|
}
|
2020-01-24 12:04:54 +02:00
|
|
|
},
|
2020-01-07 07:50:59 +05:00
|
|
|
};
|