123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 |
- import React from "react";
- import oc from "open-color";
- import { t } from "../i18n";
- import { isDarwin } from "../keys";
- import { Dialog } from "./Dialog";
- import { getShortcutKey } from "../utils";
- const Columns = (props: { children: React.ReactNode }) => (
- <div
- style={{
- display: "flex",
- flexDirection: "row",
- flexWrap: "wrap",
- justifyContent: "space-between",
- }}
- >
- {props.children}
- </div>
- );
- const Column = (props: { children: React.ReactNode }) => (
- <div
- style={{
- width: "49%",
- }}
- >
- {props.children}
- </div>
- );
- const ShortcutIsland = (props: {
- caption: string;
- children: React.ReactNode;
- }) => (
- <div
- style={{
- border: `1px solid ${oc.gray[4]}`,
- marginBottom: "16px",
- }}
- >
- <h3
- style={{
- margin: "0",
- padding: "4px",
- backgroundColor: oc.gray[2],
- textAlign: "center",
- }}
- >
- {props.caption}
- </h3>
- {props.children}
- </div>
- );
- const Shortcut = (props: {
- label: string;
- shortcuts: string[];
- isOr: boolean;
- }) => {
- const isRTL = document.documentElement.getAttribute("dir") === "rtl";
- return (
- <div
- style={{
- borderTop: `1px solid ${oc.gray[4]}`,
- }}
- >
- <div
- style={{
- display: "flex",
- margin: "0",
- padding: "4px 8px",
- alignItems: "center",
- }}
- >
- <div
- style={{
- lineHeight: 1.4,
- }}
- >
- {props.label}
- </div>
- <div
- style={{
- display: "flex",
- flex: "0 0 auto",
- justifyContent: "flex-end",
- marginLeft: isRTL ? "0em" : "auto",
- marginRight: isRTL ? "auto" : "0em",
- minWidth: "30%",
- }}
- >
- {props.shortcuts.map((shortcut, index) => (
- <React.Fragment key={index}>
- <ShortcutKey>{shortcut}</ShortcutKey>
- {props.isOr &&
- index !== props.shortcuts.length - 1 &&
- t("shortcutsDialog.or")}
- </React.Fragment>
- ))}
- </div>
- </div>
- </div>
- );
- };
- Shortcut.defaultProps = {
- isOr: true,
- };
- const ShortcutKey = (props: { children: React.ReactNode }) => (
- <span
- style={{
- wordBreak: "keep-all",
- border: `1px solid ${oc.gray[4]}`,
- padding: "2px 8px",
- margin: "auto 4px",
- backgroundColor: oc.gray[2],
- borderRadius: "2px",
- fontSize: "0.8em",
- minHeight: "26px",
- boxSizing: "border-box",
- display: "flex",
- alignItems: "center",
- }}
- {...props}
- />
- );
- const Footer = () => (
- <div
- style={{
- display: "flex",
- flexDirection: "row",
- justifyContent: "space-evenly",
- borderTop: `1px solid ${oc.gray[4]}`,
- marginTop: 8,
- paddingTop: 16,
- }}
- >
- <a
- href="https://blog.excalidraw.com"
- target="_blank"
- rel="noopener noreferrer"
- >
- {t("shortcutsDialog.blog")}
- </a>
- <a
- href="https://howto.excalidraw.com"
- target="_blank"
- rel="noopener noreferrer"
- >
- {t("shortcutsDialog.howto")}
- </a>
- <a
- href="https://github.com/excalidraw/excalidraw/issues"
- target="_blank"
- rel="noopener noreferrer"
- >
- {t("shortcutsDialog.github")}
- </a>
- </div>
- );
- export const ShortcutsDialog = ({ onClose }: { onClose?: () => void }) => {
- const handleClose = React.useCallback(() => {
- if (onClose) {
- onClose();
- }
- }, [onClose]);
- return (
- <>
- <Dialog
- maxWidth={900}
- onCloseRequest={handleClose}
- title={t("shortcutsDialog.title")}
- >
- <Columns>
- <Column>
- <ShortcutIsland caption={t("shortcutsDialog.shapes")}>
- <Shortcut label={t("toolBar.selection")} shortcuts={["S", "1"]} />
- <Shortcut label={t("toolBar.rectangle")} shortcuts={["R", "2"]} />
- <Shortcut label={t("toolBar.diamond")} shortcuts={["D", "3"]} />
- <Shortcut label={t("toolBar.ellipse")} shortcuts={["E", "4"]} />
- <Shortcut label={t("toolBar.arrow")} shortcuts={["A", "5"]} />
- <Shortcut label={t("toolBar.line")} shortcuts={["L", "6"]} />
- <Shortcut label={t("toolBar.text")} shortcuts={["T", "7"]} />
- <Shortcut
- label={t("shortcutsDialog.textNewLine")}
- shortcuts={[
- getShortcutKey("Enter"),
- getShortcutKey("Shift+Enter"),
- ]}
- />
- <Shortcut
- label={t("shortcutsDialog.textFinish")}
- shortcuts={[
- getShortcutKey("Esc"),
- getShortcutKey("CtrlOrCmd+Enter"),
- ]}
- />
- <Shortcut
- label={t("shortcutsDialog.curvedArrow")}
- shortcuts={[
- "A",
- t("shortcutsDialog.click"),
- t("shortcutsDialog.click"),
- t("shortcutsDialog.click"),
- ]}
- isOr={false}
- />
- <Shortcut
- label={t("shortcutsDialog.curvedLine")}
- shortcuts={[
- "L",
- t("shortcutsDialog.click"),
- t("shortcutsDialog.click"),
- t("shortcutsDialog.click"),
- ]}
- isOr={false}
- />
- <Shortcut label={t("toolBar.lock")} shortcuts={["Q"]} />
- </ShortcutIsland>
- <ShortcutIsland caption={t("shortcutsDialog.view")}>
- <Shortcut
- label={t("buttons.zoomIn")}
- shortcuts={[getShortcutKey("CtrlOrCmd++")]}
- />
- <Shortcut
- label={t("buttons.zoomOut")}
- shortcuts={[getShortcutKey("CtrlOrCmd+-")]}
- />
- <Shortcut
- label={t("buttons.resetZoom")}
- shortcuts={[getShortcutKey("CtrlOrCmd+0")]}
- />
- <Shortcut
- label={t("shortcutsDialog.zoomToFit")}
- shortcuts={["Shift+1"]}
- />
- <Shortcut
- label={t("buttons.toggleFullScreen")}
- shortcuts={["F"]}
- />
- <Shortcut
- label={t("buttons.toggleZenMode")}
- shortcuts={["Alt+Z"]}
- />
- </ShortcutIsland>
- </Column>
- <Column>
- <ShortcutIsland caption={t("shortcutsDialog.editor")}>
- <Shortcut
- label={t("labels.selectAll")}
- shortcuts={[getShortcutKey("CtrlOrCmd+A")]}
- />
- <Shortcut
- label={t("labels.copy")}
- shortcuts={[getShortcutKey("CtrlOrCmd+C")]}
- />
- <Shortcut
- label={t("labels.paste")}
- shortcuts={[getShortcutKey("CtrlOrCmd+V")]}
- />
- <Shortcut
- label={t("labels.copyAsPng")}
- shortcuts={[getShortcutKey("Shift+Alt+C")]}
- />
- <Shortcut
- label={t("labels.copyStyles")}
- shortcuts={[getShortcutKey("CtrlOrCmd+Shift+C")]}
- />
- <Shortcut
- label={t("labels.pasteStyles")}
- shortcuts={[getShortcutKey("CtrlOrCmd+Shift+V")]}
- />
- <Shortcut
- label={t("labels.delete")}
- shortcuts={[getShortcutKey("Del")]}
- />
- <Shortcut
- label={t("labels.sendToBack")}
- shortcuts={[
- isDarwin
- ? getShortcutKey("CtrlOrCmd+Alt+[")
- : getShortcutKey("CtrlOrCmd+Shift+["),
- ]}
- />
- <Shortcut
- label={t("labels.bringToFront")}
- shortcuts={[
- isDarwin
- ? getShortcutKey("CtrlOrCmd+Alt+]")
- : getShortcutKey("CtrlOrCmd+Shift+]"),
- ]}
- />
- <Shortcut
- label={t("labels.sendBackward")}
- shortcuts={[getShortcutKey("CtrlOrCmd+[")]}
- />
- <Shortcut
- label={t("labels.bringForward")}
- shortcuts={[getShortcutKey("CtrlOrCmd+]")]}
- />
- <Shortcut
- label={t("labels.duplicateSelection")}
- shortcuts={[
- getShortcutKey("CtrlOrCmd+D"),
- getShortcutKey(`Alt+${t("shortcutsDialog.drag")}`),
- ]}
- />
- <Shortcut
- label={t("buttons.undo")}
- shortcuts={[getShortcutKey("CtrlOrCmd+Z")]}
- />
- <Shortcut
- label={t("buttons.redo")}
- shortcuts={[getShortcutKey("CtrlOrCmd+Shift+Z")]}
- />
- </ShortcutIsland>
- </Column>
- </Columns>
- <Footer />
- </Dialog>
- </>
- );
- };
|