Use existing helper to copy all state (#1098)
This commit is contained in:
parent
2a373571f8
commit
aa54364bd6
@ -512,7 +512,7 @@ export class App extends React.Component<any, AppState> {
|
|||||||
if (isWritableElement(event.target)) {
|
if (isWritableElement(event.target)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
copyToAppClipboard(globalSceneState.getAllElements(), this.state);
|
this.copyAll();
|
||||||
const { elements: nextElements, appState } = deleteSelectedElements(
|
const { elements: nextElements, appState } = deleteSelectedElements(
|
||||||
globalSceneState.getAllElements(),
|
globalSceneState.getAllElements(),
|
||||||
this.state,
|
this.state,
|
||||||
@ -527,10 +527,11 @@ export class App extends React.Component<any, AppState> {
|
|||||||
if (isWritableElement(event.target)) {
|
if (isWritableElement(event.target)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
copyToAppClipboard(globalSceneState.getAllElements(), this.state);
|
this.copyAll();
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
});
|
});
|
||||||
private copyToAppClipboard = () => {
|
|
||||||
|
private copyAll = () => {
|
||||||
copyToAppClipboard(globalSceneState.getAllElements(), this.state);
|
copyToAppClipboard(globalSceneState.getAllElements(), this.state);
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -2446,7 +2447,7 @@ export class App extends React.Component<any, AppState> {
|
|||||||
options: [
|
options: [
|
||||||
navigator.clipboard && {
|
navigator.clipboard && {
|
||||||
label: t("labels.copy"),
|
label: t("labels.copy"),
|
||||||
action: this.copyToAppClipboard,
|
action: this.copyAll,
|
||||||
},
|
},
|
||||||
navigator.clipboard && {
|
navigator.clipboard && {
|
||||||
label: t("labels.paste"),
|
label: t("labels.paste"),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user