c09e170bdd
Co-authored-by: Jawahar <jawahars_16@live.in> Co-authored-by: Andrew Aquino <dawneraq@gmail.com>
146 lines
4.1 KiB
TypeScript
146 lines
4.1 KiB
TypeScript
import {
|
|
getElementsInGroup,
|
|
isSomeElementSelected,
|
|
makeNextSelectedElementIds,
|
|
selectGroupsForSelectedElements,
|
|
} from "@excalidraw/element";
|
|
import { CaptureUpdateAction } from "@excalidraw/element";
|
|
import { KEYS, isWritableElement, updateActiveTool } from "@excalidraw/common";
|
|
|
|
import type { GroupId } from "@excalidraw/element/types";
|
|
|
|
import { register } from "./register";
|
|
|
|
import type { AppClassProperties, AppState } from "../types";
|
|
|
|
const getNextActiveTool = (
|
|
appState: Readonly<AppState>,
|
|
app: AppClassProperties,
|
|
) => {
|
|
if (appState.activeTool.type === "eraser") {
|
|
return updateActiveTool(appState, {
|
|
...(appState.activeTool.lastActiveTool || {
|
|
type: app.state.preferredSelectionTool.type,
|
|
}),
|
|
lastActiveToolBeforeEraser: null,
|
|
});
|
|
}
|
|
|
|
return updateActiveTool(appState, {
|
|
type: app.state.preferredSelectionTool.type,
|
|
});
|
|
};
|
|
|
|
const getParentEditingGroupId = (
|
|
appState: Readonly<AppState>,
|
|
app: AppClassProperties,
|
|
selectedElementIds: AppState["selectedElementIds"],
|
|
): GroupId | null => {
|
|
if (!appState.editingGroupId) {
|
|
return null;
|
|
}
|
|
|
|
const nonDeletedElements = app.scene.getNonDeletedElements();
|
|
const selectedElements = app.scene.getSelectedElements({
|
|
selectedElementIds,
|
|
elements: nonDeletedElements,
|
|
});
|
|
const candidateElements = selectedElements.length
|
|
? selectedElements
|
|
: getElementsInGroup(nonDeletedElements, appState.editingGroupId);
|
|
|
|
for (const element of candidateElements) {
|
|
const editingGroupIndex = element.groupIds.indexOf(appState.editingGroupId);
|
|
if (editingGroupIndex !== -1 && element.groupIds[editingGroupIndex + 1]) {
|
|
return element.groupIds[editingGroupIndex + 1] as GroupId;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
};
|
|
|
|
export const actionDeselect = register({
|
|
name: "deselect",
|
|
label: "",
|
|
trackEvent: false,
|
|
perform: (_elements, appState, _, app) => {
|
|
const activeTool = getNextActiveTool(appState, app);
|
|
|
|
if (appState.editingGroupId) {
|
|
const nonDeletedElements = app.scene.getNonDeletedElements();
|
|
const selectedElementIds =
|
|
Object.keys(appState.selectedElementIds).length > 0
|
|
? appState.selectedElementIds
|
|
: getElementsInGroup(
|
|
nonDeletedElements,
|
|
appState.editingGroupId,
|
|
).reduce((acc, element) => {
|
|
acc[element.id] = true;
|
|
return acc;
|
|
}, {} as Record<string, true>);
|
|
|
|
return {
|
|
appState: {
|
|
...appState,
|
|
...selectGroupsForSelectedElements(
|
|
{
|
|
editingGroupId: getParentEditingGroupId(
|
|
appState,
|
|
app,
|
|
selectedElementIds,
|
|
),
|
|
selectedElementIds,
|
|
},
|
|
nonDeletedElements,
|
|
appState,
|
|
app,
|
|
),
|
|
activeEmbeddable: null,
|
|
activeTool,
|
|
selectedLinearElement: null,
|
|
selectionElement: null,
|
|
showHyperlinkPopup: false,
|
|
suggestedBinding: null,
|
|
},
|
|
captureUpdate: CaptureUpdateAction.IMMEDIATELY,
|
|
};
|
|
}
|
|
|
|
return {
|
|
appState: {
|
|
...appState,
|
|
activeEmbeddable: null,
|
|
activeTool,
|
|
editingGroupId: null,
|
|
selectedElementIds: makeNextSelectedElementIds({}, appState),
|
|
selectedGroupIds: {},
|
|
selectedLinearElement: null,
|
|
selectionElement: null,
|
|
showHyperlinkPopup: false,
|
|
suggestedBinding: null,
|
|
},
|
|
captureUpdate: CaptureUpdateAction.IMMEDIATELY,
|
|
};
|
|
},
|
|
keyTest: (event, appState, _, app) => {
|
|
if (event.key !== KEYS.ESCAPE) {
|
|
return false;
|
|
}
|
|
|
|
if (isWritableElement(event.target)) {
|
|
return false;
|
|
}
|
|
|
|
return (
|
|
!appState.newElement &&
|
|
appState.multiElement === null &&
|
|
!appState.selectedLinearElement?.isEditing &&
|
|
(appState.activeEmbeddable !== null ||
|
|
appState.activeTool.type !== app.state.preferredSelectionTool.type ||
|
|
!!appState.editingGroupId ||
|
|
!!appState.selectedLinearElement ||
|
|
isSomeElementSelected(app.scene.getNonDeletedElements(), appState))
|
|
);
|
|
},
|
|
});
|