CMD + D to Duplicate Selection (#982)

* cmd+d to duplicate selection

* use duplicateElement instead

* use duplicateElement instead

* Update actionDuplicateSelection.ts

* select the new duplicated element

* add locale

* use event.key instead of event.code

Co-authored-by: David Luzar <luzar.david@gmail.com>
This commit is contained in:
Faustino Kialungila 2020-03-16 22:53:02 +01:00 committed by GitHub
parent 6966a7a008
commit ae9b64a623
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 1 deletions

View File

@ -0,0 +1,29 @@
import { KEYS } from "../keys";
import { register } from "./register";
import { ExcalidrawElement } from "../element/types";
import { duplicateElement } from "../element";
export const actionDuplicateSelection = register({
name: "duplicateSelection",
perform: (elements, appState) => {
return {
appState,
elements: elements.reduce(
(acc: Array<ExcalidrawElement>, element: ExcalidrawElement) => {
if (appState.selectedElementIds[element.id]) {
const newElement = duplicateElement(element);
newElement.x = newElement.x + 10;
newElement.y = newElement.y + 10;
appState.selectedElementIds[newElement.id] = true;
delete appState.selectedElementIds[element.id];
return acc.concat([element, newElement]);
}
return acc.concat(element);
},
[],
),
};
},
contextItemLabel: "labels.duplicateSelection",
keyTest: event => event[KEYS.CTRL_OR_CMD] && event.key === "d",
});

View File

@ -6,6 +6,7 @@ export {
actionSendToBack,
} from "./actionZindex";
export { actionSelectAll } from "./actionSelectAll";
export { actionDuplicateSelection } from "./actionDuplicateSelection";
export {
actionChangeStrokeColor,
actionChangeBackgroundColor,

View File

@ -43,7 +43,8 @@
"drawingCanvas": "Drawing Canvas",
"layers": "Layers",
"language": "Language",
"createRoom": "Share a live-collaboration session"
"createRoom": "Share a live-collaboration session",
"duplicateSelection": "Duplicate selected elements"
},
"buttons": {
"clearReset": "Reset the canvas",