tldraw/state/commands/handle.ts

37 lines
970 B
TypeScript
Raw Normal View History

2021-05-31 19:13:43 +00:00
import Command from './command'
import history from '../history'
import { Data } from 'types'
import { getPage } from 'utils/utils'
import { HandleSnapshot } from 'state/sessions/handle-session'
import { getShapeUtils } from 'lib/shape-utils'
export default function handleCommand(
data: Data,
before: HandleSnapshot,
after: HandleSnapshot
) {
history.execute(
data,
new Command({
name: 'moved_handle',
category: 'canvas',
do(data, isInitial) {
if (isInitial) return
const { initialShape, currentPageId } = after
const shape = getPage(data, currentPageId).shapes[initialShape.id]
2021-06-04 16:08:43 +00:00
getShapeUtils(shape).onHandleChange(shape, initialShape.handles)
2021-05-31 19:13:43 +00:00
},
undo(data) {
const { initialShape, currentPageId } = before
const shape = getPage(data, currentPageId).shapes[initialShape.id]
2021-06-04 16:08:43 +00:00
getShapeUtils(shape).onHandleChange(shape, initialShape.handles)
2021-05-31 19:13:43 +00:00
},
})
)
}