tldraw/state/commands/arrow.ts

44 lines
1.1 KiB
TypeScript
Raw Normal View History

2021-05-31 19:13:43 +00:00
import Command from './command'
import history from '../history'
import { ArrowShape, Data } from 'types'
import { getPage } from 'utils/utils'
import { ArrowSnapshot } from 'state/sessions/arrow-session'
import { getShapeUtils } from 'lib/shape-utils'
export default function arrowCommand(
data: Data,
before: ArrowSnapshot,
after: ArrowSnapshot
) {
history.execute(
data,
new Command({
name: 'point_arrow',
category: 'canvas',
manualSelection: true,
do(data, isInitial) {
if (isInitial) return
const { initialShape, currentPageId } = after
getPage(data, currentPageId).shapes[initialShape.id] = initialShape
data.selectedIds.clear()
data.selectedIds.add(initialShape.id)
data.hoveredId = undefined
data.pointedId = undefined
},
undo(data) {
const { initialShape, currentPageId } = before
const shapes = getPage(data, currentPageId).shapes
delete shapes[initialShape.id]
data.selectedIds.clear()
data.hoveredId = undefined
data.pointedId = undefined
},
})
)
}