Tldraw/state/commands/transform.ts

41 wiersze
978 B
TypeScript

import Command from './command'
import history from '../history'
import { Data } from 'types'
import { TransformSnapshot } from 'state/sessions/transform-session'
import tld from 'utils/tld'
export default function transformCommand(
data: Data,
before: TransformSnapshot,
after: TransformSnapshot
): void {
history.execute(
data,
new Command({
name: 'transform_shapes',
category: 'canvas',
do(data) {
const { shapeBounds } = after
const { shapes } = tld.getPage(data)
for (const id in shapeBounds) {
shapes[id] = shapeBounds[id].initialShape
}
tld.updateParents(data, Object.keys(shapeBounds))
},
undo(data) {
const { shapeBounds } = before
const { shapes } = tld.getPage(data)
for (const id in shapeBounds) {
shapes[id] = shapeBounds[id].initialShape
}
tld.updateParents(data, Object.keys(shapeBounds))
},
})
)
}