|
|
|
import { CODES, KEYS } from "../keys";
|
|
|
|
import { register } from "./register";
|
|
|
|
import type { AppState } from "../types";
|
|
|
|
import { gridIcon } from "../components/icons";
|
|
|
|
import { StoreAction } from "../store";
|
|
|
|
|
|
|
|
export const actionToggleGridMode = register({
|
|
|
|
name: "gridMode",
|
|
|
|
icon: gridIcon,
|
|
|
|
keywords: ["snap"],
|
|
|
|
label: "labels.toggleGrid",
|
|
|
|
viewMode: true,
|
|
|
|
trackEvent: {
|
|
|
|
category: "canvas",
|
|
|
|
predicate: (appState) => appState.gridModeEnabled,
|
|
|
|
},
|
|
|
|
perform(elements, appState) {
|
|
|
|
return {
|
|
|
|
appState: {
|
|
|
|
...appState,
|
|
|
|
gridModeEnabled: !this.checked!(appState),
|
|
|
|
objectsSnapModeEnabled: false,
|
|
|
|
},
|
|
|
|
storeAction: StoreAction.NONE,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
checked: (appState: AppState) => appState.gridModeEnabled,
|
|
|
|
predicate: (element, appState, props) => {
|
|
|
|
return props.gridModeEnabled === undefined;
|
|
|
|
},
|
|
|
|
keyTest: (event) => event[KEYS.CTRL_OR_CMD] && event.code === CODES.QUOTE,
|
|
|
|
});
|