You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
134 lines
3.4 KiB
TypeScript
134 lines
3.4 KiB
TypeScript
import { register } from "./register";
|
|
import { getSelectedElements } from "../scene";
|
|
import { getNonDeletedElements } from "../element";
|
|
import type {
|
|
ExcalidrawElement,
|
|
NonDeleted,
|
|
NonDeletedSceneElementsMap,
|
|
} from "../element/types";
|
|
import { resizeMultipleElements } from "../element/resizeElements";
|
|
import type { AppClassProperties, AppState } from "../types";
|
|
import { arrayToMap } from "../utils";
|
|
import { CODES, KEYS } from "../keys";
|
|
import { getCommonBoundingBox } from "../element/bounds";
|
|
import {
|
|
bindOrUnbindLinearElements,
|
|
isBindingEnabled,
|
|
} from "../element/binding";
|
|
import { updateFrameMembershipOfSelectedElements } from "../frame";
|
|
import { flipHorizontal, flipVertical } from "../components/icons";
|
|
import { StoreAction } from "../store";
|
|
import { isLinearElement } from "../element/typeChecks";
|
|
|
|
export const actionFlipHorizontal = register({
|
|
name: "flipHorizontal",
|
|
label: "labels.flipHorizontal",
|
|
icon: flipHorizontal,
|
|
trackEvent: { category: "element" },
|
|
perform: (elements, appState, _, app) => {
|
|
return {
|
|
elements: updateFrameMembershipOfSelectedElements(
|
|
flipSelectedElements(
|
|
elements,
|
|
app.scene.getNonDeletedElementsMap(),
|
|
appState,
|
|
"horizontal",
|
|
app,
|
|
),
|
|
appState,
|
|
app,
|
|
),
|
|
appState,
|
|
storeAction: StoreAction.CAPTURE,
|
|
};
|
|
},
|
|
keyTest: (event) => event.shiftKey && event.code === CODES.H,
|
|
});
|
|
|
|
export const actionFlipVertical = register({
|
|
name: "flipVertical",
|
|
label: "labels.flipVertical",
|
|
icon: flipVertical,
|
|
trackEvent: { category: "element" },
|
|
perform: (elements, appState, _, app) => {
|
|
return {
|
|
elements: updateFrameMembershipOfSelectedElements(
|
|
flipSelectedElements(
|
|
elements,
|
|
app.scene.getNonDeletedElementsMap(),
|
|
appState,
|
|
"vertical",
|
|
app,
|
|
),
|
|
appState,
|
|
app,
|
|
),
|
|
appState,
|
|
storeAction: StoreAction.CAPTURE,
|
|
};
|
|
},
|
|
keyTest: (event) =>
|
|
event.shiftKey && event.code === CODES.V && !event[KEYS.CTRL_OR_CMD],
|
|
});
|
|
|
|
const flipSelectedElements = (
|
|
elements: readonly ExcalidrawElement[],
|
|
elementsMap: NonDeletedSceneElementsMap,
|
|
appState: Readonly<AppState>,
|
|
flipDirection: "horizontal" | "vertical",
|
|
app: AppClassProperties,
|
|
) => {
|
|
const selectedElements = getSelectedElements(
|
|
getNonDeletedElements(elements),
|
|
appState,
|
|
{
|
|
includeBoundTextElement: true,
|
|
includeElementsInFrames: true,
|
|
},
|
|
);
|
|
|
|
const updatedElements = flipElements(
|
|
selectedElements,
|
|
elementsMap,
|
|
appState,
|
|
flipDirection,
|
|
app,
|
|
);
|
|
|
|
const updatedElementsMap = arrayToMap(updatedElements);
|
|
|
|
return elements.map(
|
|
(element) => updatedElementsMap.get(element.id) || element,
|
|
);
|
|
};
|
|
|
|
const flipElements = (
|
|
selectedElements: NonDeleted<ExcalidrawElement>[],
|
|
elementsMap: NonDeletedSceneElementsMap,
|
|
appState: AppState,
|
|
flipDirection: "horizontal" | "vertical",
|
|
app: AppClassProperties,
|
|
): ExcalidrawElement[] => {
|
|
const { minX, minY, maxX, maxY } = getCommonBoundingBox(selectedElements);
|
|
|
|
resizeMultipleElements(
|
|
elementsMap,
|
|
selectedElements,
|
|
elementsMap,
|
|
"nw",
|
|
true,
|
|
true,
|
|
flipDirection === "horizontal" ? maxX : minX,
|
|
flipDirection === "horizontal" ? minY : maxY,
|
|
);
|
|
|
|
bindOrUnbindLinearElements(
|
|
selectedElements.filter(isLinearElement),
|
|
app,
|
|
isBindingEnabled(appState),
|
|
[],
|
|
);
|
|
|
|
return selectedElements;
|
|
};
|