Tldraw/packages/tldraw/src/state/tools/EllipseTool/EllipseTool.ts

46 wiersze
1.1 KiB
TypeScript

import { Utils, TLPointerEventHandler, TLBoundsCorner } from '@tldraw/core'
import Vec from '@tldraw/vec'
import { Ellipse } from '~state/shapes'
import { SessionType, TDShapeType } from '~types'
import { BaseTool, Status } from '../BaseTool'
export class EllipseTool extends BaseTool {
type = TDShapeType.Ellipse as const
/* ----------------- Event Handlers ----------------- */
onPointerDown: TLPointerEventHandler = () => {
if (this.status !== Status.Idle) return
const {
currentPoint,
currentGrid,
settings: { showGrid },
appState: { currentPageId, currentStyle },
} = this.app
const childIndex = this.getNextChildIndex()
const id = Utils.uniqueId()
const newShape = Ellipse.create({
id,
parentId: currentPageId,
childIndex,
point: showGrid ? Vec.snap(currentPoint, currentGrid) : currentPoint,
style: { ...currentStyle },
})
this.app.patchCreate([newShape])
this.app.startSession(
SessionType.TransformSingle,
newShape.id,
TLBoundsCorner.BottomRight,
true
)
this.setStatus(Status.Creating)
}
}