| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- import Command from './command'
- import history from '../history'
- import { Data } from 'types'
- import { getPage } from 'utils/utils'
- import { EditSnapshot } from 'state/sessions/edit-session'
- import { getShapeUtils } from 'state/shape-utils'
-
- export default function editCommand(
- data: Data,
- before: EditSnapshot,
- after: EditSnapshot
- ): void {
- history.execute(
- data,
- new Command({
- name: 'edit_shape',
- category: 'canvas',
- do(data) {
- const { initialShape, currentPageId } = after
-
- const page = getPage(data, currentPageId)
-
- page.shapes[initialShape.id] = initialShape
-
- const shape = page.shapes[initialShape.id]
-
- if (getShapeUtils(shape).shouldDelete(shape)) {
- delete page.shapes[initialShape.id]
- }
- },
- undo(data) {
- const { initialShape, currentPageId } = before
-
- const page = getPage(data, currentPageId)
-
- page.shapes[initialShape.id] = initialShape
- },
- })
- )
- }
|