tldraw/lib/shapes/dot.tsx

81 lines
1.5 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"
2021-05-13 18:22:16 +00:00
import { DotShape, ShapeType } from "types"
2021-05-12 22:08:53 +00:00
import { boundsCache } from "./index"
2021-05-13 18:22:16 +00:00
import { boundsContained } from "utils/bounds"
import { intersectCircleBounds } from "utils/intersections"
import { createShape } from "./base-shape"
2021-05-12 21:11:17 +00:00
2021-05-13 18:22:16 +00:00
const dot = createShape<DotShape>({
create(props) {
2021-05-12 21:11:17 +00:00
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
},
2021-05-13 18:22:16 +00:00
hitTestBounds(this, shape, brushBounds) {
const shapeBounds = this.getBounds(shape)
return (
boundsContained(shapeBounds, brushBounds) ||
intersectCircleBounds(shape.point, 4, brushBounds).length > 0
)
},
2021-05-12 21:11:17 +00:00
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
},
2021-05-13 18:22:16 +00:00
})
2021-05-12 21:11:17 +00:00
2021-05-13 18:22:16 +00:00
export default dot