tldraw/lib/shapes/dot.tsx

70 lines
1.2 KiB
TypeScript
Raw Normal View History

2021-05-12 21:11:17 +00:00
import { v4 as uuid } from "uuid"
import * as vec from "utils/vec"
import { BaseLibShape, DotShape, ShapeType } from "types"
2021-05-12 22:08:53 +00:00
import { boundsCache } from "./index"
2021-05-12 21:11:17 +00:00
const Dot: BaseLibShape<ShapeType.Dot> = {
create(props): DotShape {
return {
id: uuid(),
type: ShapeType.Dot,
name: "Dot",
parentId: "page0",
childIndex: 0,
point: [0, 0],
rotation: 0,
style: {},
...props,
}
},
render({ id }) {
return <circle id={id} cx={4} cy={4} r={4} />
},
getBounds(shape) {
2021-05-12 22:08:53 +00:00
if (boundsCache.has(shape)) {
return boundsCache.get(shape)
}
2021-05-12 21:11:17 +00:00
const {
2021-05-12 22:08:53 +00:00
point: [x, y],
2021-05-12 21:11:17 +00:00
} = shape
2021-05-12 22:08:53 +00:00
const bounds = {
minX: x,
maxX: x + 8,
minY: y,
maxY: y + 8,
width: 8,
height: 8,
2021-05-12 21:11:17 +00:00
}
2021-05-12 22:08:53 +00:00
boundsCache.set(shape, bounds)
return bounds
2021-05-12 21:11:17 +00:00
},
hitTest(shape, test) {
return vec.dist(shape.point, test) < 4
},
rotate(shape) {
return shape
},
2021-05-13 06:44:52 +00:00
translate(shape, delta) {
shape.point = vec.add(shape.point, delta)
2021-05-12 21:11:17 +00:00
return shape
},
scale(shape, scale: number) {
return shape
},
stretch(shape, scaleX: number, scaleY: number) {
return shape
},
}
export default Dot