import { AppState } from "../../src/types"; import { ButtonIconSelect } from "../components/ButtonIconSelect"; import { ColorPicker } from "../components/ColorPicker"; import { IconPicker } from "../components/IconPicker"; import { ArrowheadArrowIcon, ArrowheadBarIcon, ArrowheadDotIcon, ArrowheadNoneIcon, EdgeRoundIcon, EdgeSharpIcon, FillCrossHatchIcon, FillHachureIcon, FillSolidIcon, FontFamilyCodeIcon, FontFamilyHandDrawnIcon, FontFamilyNormalIcon, FontSizeExtraLargeIcon, FontSizeLargeIcon, FontSizeMediumIcon, FontSizeSmallIcon, SloppinessArchitectIcon, SloppinessArtistIcon, SloppinessCartoonistIcon, StrokeStyleDashedIcon, StrokeStyleDottedIcon, StrokeStyleSolidIcon, StrokeWidthIcon, TextAlignCenterIcon, TextAlignLeftIcon, TextAlignRightIcon, } from "../components/icons"; import { DEFAULT_FONT_FAMILY, DEFAULT_FONT_SIZE, FONT_FAMILY, } from "../constants"; import { getNonDeletedElements, isTextElement, redrawTextBoundingBox, } from "../element"; import { newElementWith } from "../element/mutateElement"; import { isLinearElement, isLinearElementType } from "../element/typeChecks"; import { Arrowhead, ExcalidrawElement, ExcalidrawLinearElement, ExcalidrawTextElement, FontFamilyValues, TextAlign, } from "../element/types"; import { getLanguage, t } from "../i18n"; import { randomInteger } from "../random"; import { canChangeSharpness, canHaveArrowheads, getCommonAttributeOfSelectedElements, getTargetElements, isSomeElementSelected, } from "../scene"; import { hasStrokeColor } from "../scene/comparisons"; import { register } from "./register"; const changeProperty = ( elements: readonly ExcalidrawElement[], appState: AppState, callback: (element: ExcalidrawElement) => ExcalidrawElement, ) => { return elements.map((element) => { if ( appState.selectedElementIds[element.id] || element.id === appState.editingElement?.id ) { return callback(element); } return element; }); }; const getFormValue = function ( elements: readonly ExcalidrawElement[], appState: AppState, getAttribute: (element: ExcalidrawElement) => T, defaultValue?: T, ): T | null { const editingElement = appState.editingElement; const nonDeletedElements = getNonDeletedElements(elements); return ( (editingElement && getAttribute(editingElement)) ?? (isSomeElementSelected(nonDeletedElements, appState) ? getCommonAttributeOfSelectedElements( nonDeletedElements, appState, getAttribute, ) : defaultValue) ?? null ); }; export const actionChangeStrokeColor = register({ name: "changeStrokeColor", perform: (elements, appState, value) => { return { ...(value.currentItemStrokeColor && { elements: changeProperty(elements, appState, (el) => { return hasStrokeColor(el.type) ? newElementWith(el, { strokeColor: value.currentItemStrokeColor, }) : el; }), }), appState: { ...appState, ...value, }, commitToHistory: !!value.currentItemStrokeColor, }; }, PanelComponent: ({ elements, appState, updateData }) => ( <> element.strokeColor, appState.currentItemStrokeColor, )} onChange={(color) => updateData({ currentItemStrokeColor: color })} isActive={appState.openPopup === "strokeColorPicker"} setActive={(active) => updateData({ openPopup: active ? "strokeColorPicker" : null }) } /> ), }); export const actionChangeBackgroundColor = register({ name: "changeBackgroundColor", perform: (elements, appState, value) => { return { ...(value.currentItemBackgroundColor && { elements: changeProperty(elements, appState, (el) => newElementWith(el, { backgroundColor: value.currentItemBackgroundColor, }), ), }), appState: { ...appState, ...value, }, commitToHistory: !!value.currentItemBackgroundColor, }; }, PanelComponent: ({ elements, appState, updateData }) => ( <> element.backgroundColor, appState.currentItemBackgroundColor, )} onChange={(color) => updateData({ currentItemBackgroundColor: color })} isActive={appState.openPopup === "backgroundColorPicker"} setActive={(active) => updateData({ openPopup: active ? "backgroundColorPicker" : null }) } /> ), }); export const actionChangeFillStyle = register({ name: "changeFillStyle", perform: (elements, appState, value) => { return { elements: changeProperty(elements, appState, (el) => newElementWith(el, { fillStyle: value, }), ), appState: { ...appState, currentItemFillStyle: value }, commitToHistory: true, }; }, PanelComponent: ({ elements, appState, updateData }) => (
{t("labels.fill")} , }, { value: "cross-hatch", text: t("labels.crossHatch"), icon: , }, { value: "solid", text: t("labels.solid"), icon: , }, ]} group="fill" value={getFormValue( elements, appState, (element) => element.fillStyle, appState.currentItemFillStyle, )} onChange={(value) => { updateData(value); }} />
), }); export const actionChangeStrokeWidth = register({ name: "changeStrokeWidth", perform: (elements, appState, value) => { return { elements: changeProperty(elements, appState, (el) => newElementWith(el, { strokeWidth: value, }), ), appState: { ...appState, currentItemStrokeWidth: value }, commitToHistory: true, }; }, PanelComponent: ({ elements, appState, updateData }) => (
{t("labels.strokeWidth")} , }, { value: 2, text: t("labels.bold"), icon: , }, { value: 4, text: t("labels.extraBold"), icon: , }, ]} value={getFormValue( elements, appState, (element) => element.strokeWidth, appState.currentItemStrokeWidth, )} onChange={(value) => updateData(value)} />
), }); export const actionChangeSloppiness = register({ name: "changeSloppiness", perform: (elements, appState, value) => { return { elements: changeProperty(elements, appState, (el) => newElementWith(el, { seed: randomInteger(), roughness: value, }), ), appState: { ...appState, currentItemRoughness: value }, commitToHistory: true, }; }, PanelComponent: ({ elements, appState, updateData }) => (
{t("labels.sloppiness")} , }, { value: 1, text: t("labels.artist"), icon: , }, { value: 2, text: t("labels.cartoonist"), icon: , }, ]} value={getFormValue( elements, appState, (element) => element.roughness, appState.currentItemRoughness, )} onChange={(value) => updateData(value)} />
), }); export const actionChangeStrokeStyle = register({ name: "changeStrokeStyle", perform: (elements, appState, value) => { return { elements: changeProperty(elements, appState, (el) => newElementWith(el, { strokeStyle: value, }), ), appState: { ...appState, currentItemStrokeStyle: value }, commitToHistory: true, }; }, PanelComponent: ({ elements, appState, updateData }) => (
{t("labels.strokeStyle")} , }, { value: "dashed", text: t("labels.strokeStyle_dashed"), icon: , }, { value: "dotted", text: t("labels.strokeStyle_dotted"), icon: , }, ]} value={getFormValue( elements, appState, (element) => element.strokeStyle, appState.currentItemStrokeStyle, )} onChange={(value) => updateData(value)} />
), }); export const actionChangeOpacity = register({ name: "changeOpacity", perform: (elements, appState, value) => { return { elements: changeProperty(elements, appState, (el) => newElementWith(el, { opacity: value, }), ), appState: { ...appState, currentItemOpacity: value }, commitToHistory: true, }; }, PanelComponent: ({ elements, appState, updateData }) => ( ), }); export const actionChangeFontSize = register({ name: "changeFontSize", perform: (elements, appState, value) => { return { elements: changeProperty(elements, appState, (el) => { if (isTextElement(el)) { const element: ExcalidrawTextElement = newElementWith(el, { fontSize: value, }); redrawTextBoundingBox(element); return element; } return el; }), appState: { ...appState, currentItemFontSize: value, }, commitToHistory: true, }; }, PanelComponent: ({ elements, appState, updateData }) => (
{t("labels.fontSize")} , }, { value: 20, text: t("labels.medium"), icon: , }, { value: 28, text: t("labels.large"), icon: , }, { value: 36, text: t("labels.veryLarge"), icon: , }, ]} value={getFormValue( elements, appState, (element) => isTextElement(element) && element.fontSize, appState.currentItemFontSize || DEFAULT_FONT_SIZE, )} onChange={(value) => updateData(value)} />
), }); export const actionChangeFontFamily = register({ name: "changeFontFamily", perform: (elements, appState, value) => { return { elements: changeProperty(elements, appState, (el) => { if (isTextElement(el)) { const element: ExcalidrawTextElement = newElementWith(el, { fontFamily: value, }); redrawTextBoundingBox(element); return element; } return el; }), appState: { ...appState, currentItemFontFamily: value, }, commitToHistory: true, }; }, PanelComponent: ({ elements, appState, updateData }) => { const options: { value: FontFamilyValues; text: string; icon: JSX.Element; }[] = [ { value: FONT_FAMILY.Virgil, text: t("labels.handDrawn"), icon: , }, { value: FONT_FAMILY.Helvetica, text: t("labels.normal"), icon: , }, { value: FONT_FAMILY.Cascadia, text: t("labels.code"), icon: , }, ]; return (
{t("labels.fontFamily")} group="font-family" options={options} value={getFormValue( elements, appState, (element) => isTextElement(element) && element.fontFamily, appState.currentItemFontFamily || DEFAULT_FONT_FAMILY, )} onChange={(value) => updateData(value)} />
); }, }); export const actionChangeTextAlign = register({ name: "changeTextAlign", perform: (elements, appState, value) => { return { elements: changeProperty(elements, appState, (el) => { if (isTextElement(el)) { const element: ExcalidrawTextElement = newElementWith(el, { textAlign: value, }); redrawTextBoundingBox(element); return element; } return el; }), appState: { ...appState, currentItemTextAlign: value, }, commitToHistory: true, }; }, PanelComponent: ({ elements, appState, updateData }) => (
{t("labels.textAlign")} group="text-align" options={[ { value: "left", text: t("labels.left"), icon: , }, { value: "center", text: t("labels.center"), icon: , }, { value: "right", text: t("labels.right"), icon: , }, ]} value={getFormValue( elements, appState, (element) => isTextElement(element) && element.textAlign, appState.currentItemTextAlign, )} onChange={(value) => updateData(value)} />
), }); export const actionChangeSharpness = register({ name: "changeSharpness", perform: (elements, appState, value) => { const targetElements = getTargetElements( getNonDeletedElements(elements), appState, ); const shouldUpdateForNonLinearElements = targetElements.length ? targetElements.every((el) => !isLinearElement(el)) : !isLinearElementType(appState.elementType); const shouldUpdateForLinearElements = targetElements.length ? targetElements.every(isLinearElement) : isLinearElementType(appState.elementType); return { elements: changeProperty(elements, appState, (el) => newElementWith(el, { strokeSharpness: value, }), ), appState: { ...appState, currentItemStrokeSharpness: shouldUpdateForNonLinearElements ? value : appState.currentItemStrokeSharpness, currentItemLinearStrokeSharpness: shouldUpdateForLinearElements ? value : appState.currentItemLinearStrokeSharpness, }, commitToHistory: true, }; }, PanelComponent: ({ elements, appState, updateData }) => (
{t("labels.edges")} , }, { value: "round", text: t("labels.round"), icon: , }, ]} value={getFormValue( elements, appState, (element) => element.strokeSharpness, (canChangeSharpness(appState.elementType) && (isLinearElementType(appState.elementType) ? appState.currentItemLinearStrokeSharpness : appState.currentItemStrokeSharpness)) || null, )} onChange={(value) => updateData(value)} />
), }); export const actionChangeArrowhead = register({ name: "changeArrowhead", perform: ( elements, appState, value: { position: "start" | "end"; type: Arrowhead }, ) => { return { elements: changeProperty(elements, appState, (el) => { if (isLinearElement(el)) { const { position, type } = value; if (position === "start") { const element: ExcalidrawLinearElement = newElementWith(el, { startArrowhead: type, }); return element; } else if (position === "end") { const element: ExcalidrawLinearElement = newElementWith(el, { endArrowhead: type, }); return element; } } return el; }), appState: { ...appState, [value.position === "start" ? "currentItemStartArrowhead" : "currentItemEndArrowhead"]: value.type, }, commitToHistory: true, }; }, PanelComponent: ({ elements, appState, updateData }) => { const isRTL = getLanguage().rtl; return (
{t("labels.arrowheads")}
, keyBinding: "q", }, { value: "arrow", text: t("labels.arrowhead_arrow"), icon: ( ), keyBinding: "w", }, { value: "bar", text: t("labels.arrowhead_bar"), icon: , keyBinding: "e", }, { value: "dot", text: t("labels.arrowhead_dot"), icon: , keyBinding: "r", }, ]} value={getFormValue( elements, appState, (element) => isLinearElement(element) && canHaveArrowheads(element.type) ? element.startArrowhead : appState.currentItemStartArrowhead, appState.currentItemStartArrowhead, )} onChange={(value) => updateData({ position: "start", type: value })} /> , }, { value: "arrow", text: t("labels.arrowhead_arrow"), keyBinding: "w", icon: ( ), }, { value: "bar", text: t("labels.arrowhead_bar"), keyBinding: "e", icon: , }, { value: "dot", text: t("labels.arrowhead_dot"), keyBinding: "r", icon: , }, ]} value={getFormValue( elements, appState, (element) => isLinearElement(element) && canHaveArrowheads(element.type) ? element.endArrowhead : appState.currentItemEndArrowhead, appState.currentItemEndArrowhead, )} onChange={(value) => updateData({ position: "end", type: value })} />
); }, });