Actions.tsx 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. import React from "react";
  2. import { ActionManager } from "../actions/manager";
  3. import { getNonDeletedElements } from "../element";
  4. import { ExcalidrawElement, PointerType } from "../element/types";
  5. import { t } from "../i18n";
  6. import { useDevice } from "../components/App";
  7. import {
  8. canChangeSharpness,
  9. canHaveArrowheads,
  10. getTargetElements,
  11. hasBackground,
  12. hasStrokeStyle,
  13. hasStrokeWidth,
  14. hasText,
  15. } from "../scene";
  16. import { SHAPES } from "../shapes";
  17. import { AppState, Zoom } from "../types";
  18. import {
  19. capitalizeString,
  20. isTransparent,
  21. updateActiveTool,
  22. setCursorForShape,
  23. } from "../utils";
  24. import Stack from "./Stack";
  25. import { ToolButton } from "./ToolButton";
  26. import { hasStrokeColor } from "../scene/comparisons";
  27. import { trackEvent } from "../analytics";
  28. import { hasBoundTextElement, isBoundToContainer } from "../element/typeChecks";
  29. import clsx from "clsx";
  30. import { actionToggleZenMode } from "../actions";
  31. import "./Actions.scss";
  32. import { Tooltip } from "./Tooltip";
  33. export const SelectedShapeActions = ({
  34. appState,
  35. elements,
  36. renderAction,
  37. }: {
  38. appState: AppState;
  39. elements: readonly ExcalidrawElement[];
  40. renderAction: ActionManager["renderAction"];
  41. }) => {
  42. const targetElements = getTargetElements(
  43. getNonDeletedElements(elements),
  44. appState,
  45. );
  46. let isSingleElementBoundContainer = false;
  47. if (
  48. targetElements.length === 2 &&
  49. (hasBoundTextElement(targetElements[0]) ||
  50. hasBoundTextElement(targetElements[1]))
  51. ) {
  52. isSingleElementBoundContainer = true;
  53. }
  54. const isEditing = Boolean(appState.editingElement);
  55. const device = useDevice();
  56. const isRTL = document.documentElement.getAttribute("dir") === "rtl";
  57. const showFillIcons =
  58. hasBackground(appState.activeTool.type) ||
  59. targetElements.some(
  60. (element) =>
  61. hasBackground(element.type) && !isTransparent(element.backgroundColor),
  62. );
  63. const showChangeBackgroundIcons =
  64. hasBackground(appState.activeTool.type) ||
  65. targetElements.some((element) => hasBackground(element.type));
  66. const showLinkIcon =
  67. targetElements.length === 1 || isSingleElementBoundContainer;
  68. let commonSelectedType: string | null = targetElements[0]?.type || null;
  69. for (const element of targetElements) {
  70. if (element.type !== commonSelectedType) {
  71. commonSelectedType = null;
  72. break;
  73. }
  74. }
  75. return (
  76. <div className="panelColumn">
  77. <div>
  78. {((hasStrokeColor(appState.activeTool.type) &&
  79. appState.activeTool.type !== "image" &&
  80. commonSelectedType !== "image") ||
  81. targetElements.some((element) => hasStrokeColor(element.type))) &&
  82. renderAction("changeStrokeColor")}
  83. </div>
  84. {showChangeBackgroundIcons && (
  85. <div>{renderAction("changeBackgroundColor")}</div>
  86. )}
  87. {showFillIcons && renderAction("changeFillStyle")}
  88. {(hasStrokeWidth(appState.activeTool.type) ||
  89. targetElements.some((element) => hasStrokeWidth(element.type))) &&
  90. renderAction("changeStrokeWidth")}
  91. {(appState.activeTool.type === "freedraw" ||
  92. targetElements.some((element) => element.type === "freedraw")) &&
  93. renderAction("changeStrokeShape")}
  94. {(hasStrokeStyle(appState.activeTool.type) ||
  95. targetElements.some((element) => hasStrokeStyle(element.type))) && (
  96. <>
  97. {renderAction("changeStrokeStyle")}
  98. {renderAction("changeSloppiness")}
  99. </>
  100. )}
  101. {(canChangeSharpness(appState.activeTool.type) ||
  102. targetElements.some((element) => canChangeSharpness(element.type))) && (
  103. <>{renderAction("changeSharpness")}</>
  104. )}
  105. {(hasText(appState.activeTool.type) ||
  106. targetElements.some((element) => hasText(element.type))) && (
  107. <>
  108. {renderAction("changeFontSize")}
  109. {renderAction("changeFontFamily")}
  110. {renderAction("changeTextAlign")}
  111. </>
  112. )}
  113. {targetElements.some(
  114. (element) =>
  115. hasBoundTextElement(element) || isBoundToContainer(element),
  116. ) && renderAction("changeVerticalAlign")}
  117. {(canHaveArrowheads(appState.activeTool.type) ||
  118. targetElements.some((element) => canHaveArrowheads(element.type))) && (
  119. <>{renderAction("changeArrowhead")}</>
  120. )}
  121. {renderAction("changeOpacity")}
  122. <fieldset>
  123. <legend>{t("labels.layers")}</legend>
  124. <div className="buttonList">
  125. {renderAction("sendToBack")}
  126. {renderAction("sendBackward")}
  127. {renderAction("bringToFront")}
  128. {renderAction("bringForward")}
  129. </div>
  130. </fieldset>
  131. {targetElements.length > 1 && !isSingleElementBoundContainer && (
  132. <fieldset>
  133. <legend>{t("labels.align")}</legend>
  134. <div className="buttonList">
  135. {
  136. // swap this order for RTL so the button positions always match their action
  137. // (i.e. the leftmost button aligns left)
  138. }
  139. {isRTL ? (
  140. <>
  141. {renderAction("alignRight")}
  142. {renderAction("alignHorizontallyCentered")}
  143. {renderAction("alignLeft")}
  144. </>
  145. ) : (
  146. <>
  147. {renderAction("alignLeft")}
  148. {renderAction("alignHorizontallyCentered")}
  149. {renderAction("alignRight")}
  150. </>
  151. )}
  152. {targetElements.length > 2 &&
  153. renderAction("distributeHorizontally")}
  154. {/* breaks the row ˇˇ */}
  155. <div style={{ flexBasis: "100%", height: 0 }} />
  156. <div
  157. style={{
  158. display: "flex",
  159. flexWrap: "wrap",
  160. gap: ".5rem",
  161. marginTop: "-0.5rem",
  162. }}
  163. >
  164. {renderAction("alignTop")}
  165. {renderAction("alignVerticallyCentered")}
  166. {renderAction("alignBottom")}
  167. {targetElements.length > 2 &&
  168. renderAction("distributeVertically")}
  169. </div>
  170. </div>
  171. </fieldset>
  172. )}
  173. {!isEditing && targetElements.length > 0 && (
  174. <fieldset>
  175. <legend>{t("labels.actions")}</legend>
  176. <div className="buttonList">
  177. {!device.isMobile && renderAction("duplicateSelection")}
  178. {!device.isMobile && renderAction("deleteSelectedElements")}
  179. {renderAction("group")}
  180. {renderAction("ungroup")}
  181. {showLinkIcon && renderAction("hyperlink")}
  182. </div>
  183. </fieldset>
  184. )}
  185. </div>
  186. );
  187. };
  188. export const ShapesSwitcher = ({
  189. canvas,
  190. activeTool,
  191. setAppState,
  192. onImageAction,
  193. appState,
  194. }: {
  195. canvas: HTMLCanvasElement | null;
  196. activeTool: AppState["activeTool"];
  197. setAppState: React.Component<any, AppState>["setState"];
  198. onImageAction: (data: { pointerType: PointerType | null }) => void;
  199. appState: AppState;
  200. }) => (
  201. <>
  202. {SHAPES.map(({ value, icon, key, fillable }, index) => {
  203. const numberKey = value === "eraser" ? 0 : index + 1;
  204. const label = t(`toolBar.${value}`);
  205. const letter = key && (typeof key === "string" ? key : key[0]);
  206. const shortcut = letter
  207. ? `${capitalizeString(letter)} ${t("helpDialog.or")} ${numberKey}`
  208. : `${numberKey}`;
  209. return (
  210. <ToolButton
  211. className={clsx("Shape", { fillable })}
  212. key={value}
  213. type="radio"
  214. icon={icon}
  215. checked={activeTool.type === value}
  216. name="editor-current-shape"
  217. title={`${capitalizeString(label)} — ${shortcut}`}
  218. keyBindingLabel={`${numberKey}`}
  219. aria-label={capitalizeString(label)}
  220. aria-keyshortcuts={shortcut}
  221. data-testid={value}
  222. onPointerDown={({ pointerType }) => {
  223. if (!appState.penDetected && pointerType === "pen") {
  224. setAppState({
  225. penDetected: true,
  226. penMode: true,
  227. });
  228. }
  229. }}
  230. onChange={({ pointerType }) => {
  231. if (appState.activeTool.type !== value) {
  232. trackEvent("toolbar", value, "ui");
  233. }
  234. const nextActiveTool = updateActiveTool(appState, {
  235. type: value,
  236. });
  237. setAppState({
  238. activeTool: nextActiveTool,
  239. multiElement: null,
  240. selectedElementIds: {},
  241. });
  242. setCursorForShape(canvas, {
  243. ...appState,
  244. activeTool: nextActiveTool,
  245. });
  246. if (value === "image") {
  247. onImageAction({ pointerType });
  248. }
  249. }}
  250. />
  251. );
  252. })}
  253. </>
  254. );
  255. export const ZoomActions = ({
  256. renderAction,
  257. zoom,
  258. }: {
  259. renderAction: ActionManager["renderAction"];
  260. zoom: Zoom;
  261. }) => (
  262. <Stack.Col gap={1} className="zoom-actions">
  263. <Stack.Row align="center">
  264. {renderAction("zoomOut")}
  265. {renderAction("resetZoom")}
  266. {renderAction("zoomIn")}
  267. </Stack.Row>
  268. </Stack.Col>
  269. );
  270. export const UndoRedoActions = ({
  271. renderAction,
  272. className,
  273. }: {
  274. renderAction: ActionManager["renderAction"];
  275. className?: string;
  276. }) => (
  277. <div className={`undo-redo-buttons ${className}`}>
  278. <div className="undo-button-container">
  279. <Tooltip label={t("buttons.undo")}>{renderAction("undo")}</Tooltip>
  280. </div>
  281. <div className="redo-button-container">
  282. <Tooltip label={t("buttons.redo")}> {renderAction("redo")}</Tooltip>
  283. </div>
  284. </div>
  285. );
  286. export const ExitZenModeAction = ({
  287. actionManager,
  288. showExitZenModeBtn,
  289. }: {
  290. actionManager: ActionManager;
  291. showExitZenModeBtn: boolean;
  292. }) => (
  293. <button
  294. className={clsx("disable-zen-mode", {
  295. "disable-zen-mode--visible": showExitZenModeBtn,
  296. })}
  297. onClick={() => actionManager.executeAction(actionToggleZenMode)}
  298. >
  299. {t("buttons.exitZenMode")}
  300. </button>
  301. );
  302. export const FinalizeAction = ({
  303. renderAction,
  304. className,
  305. }: {
  306. renderAction: ActionManager["renderAction"];
  307. className?: string;
  308. }) => (
  309. <div className={`finalize-button ${className}`}>
  310. {renderAction("finalize", { size: "small" })}
  311. </div>
  312. );