tldraw/lib/shape-utils/polyline.tsx

132 lines
3.1 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 { PolylineShape, ShapeType } from "types"
2021-05-20 09:49:40 +00:00
import { registerShapeUtils } from "./index"
2021-05-13 18:22:16 +00:00
import { intersectPolylineBounds } from "utils/intersections"
2021-05-18 08:32:20 +00:00
import {
boundsCollide,
boundsContained,
boundsContainPolygon,
} from "utils/bounds"
import { getBoundsFromPoints, translateBounds } from "utils/utils"
2021-05-12 21:11:17 +00:00
2021-05-20 09:49:40 +00:00
const polyline = registerShapeUtils<PolylineShape>({
2021-05-14 12:44:23 +00:00
boundsCache: new WeakMap([]),
2021-05-13 18:22:16 +00:00
create(props) {
2021-05-12 21:11:17 +00:00
return {
id: uuid(),
type: ShapeType.Polyline,
2021-05-15 13:02:13 +00:00
isGenerated: false,
2021-05-12 21:11:17 +00:00
name: "Polyline",
parentId: "page0",
childIndex: 0,
point: [0, 0],
points: [[0, 0]],
rotation: 0,
style: {},
...props,
}
},
render({ id, points }) {
return <polyline id={id} points={points.toString()} />
},
getBounds(shape) {
2021-05-18 08:32:20 +00:00
if (!this.boundsCache.has(shape)) {
const bounds = getBoundsFromPoints(shape.points)
this.boundsCache.set(shape, bounds)
2021-05-12 22:08:53 +00:00
}
2021-05-18 08:32:20 +00:00
return translateBounds(this.boundsCache.get(shape), shape.point)
},
2021-05-12 22:08:53 +00:00
2021-05-18 08:32:20 +00:00
getRotatedBounds(shape) {
return this.getBounds(shape)
2021-05-12 21:11:17 +00:00
},
2021-05-17 21:27:18 +00:00
getCenter(shape) {
const bounds = this.getBounds(shape)
return [bounds.minX + bounds.width / 2, bounds.minY + bounds.height / 2]
},
2021-05-14 22:56:41 +00:00
hitTest(shape, point) {
let pt = vec.sub(point, shape.point)
let prev = shape.points[0]
for (let i = 1; i < shape.points.length; i++) {
let curr = shape.points[i]
if (vec.distanceToLineSegment(prev, curr, pt) < 4) {
return true
}
prev = curr
}
return false
2021-05-12 21:11:17 +00:00
},
2021-05-18 08:32:20 +00:00
hitTestBounds(this, shape, brushBounds) {
const b = this.getBounds(shape)
const center = [b.minX + b.width / 2, b.minY + b.height / 2]
const rotatedCorners = [
[b.minX, b.minY],
[b.maxX, b.minY],
[b.maxX, b.maxY],
[b.minX, b.maxY],
].map((point) => vec.rotWith(point, center, shape.rotation))
2021-05-13 18:22:16 +00:00
return (
2021-05-18 08:32:20 +00:00
boundsContainPolygon(brushBounds, rotatedCorners) ||
intersectPolylineBounds(
shape.points.map((point) => vec.add(point, shape.point)),
brushBounds
).length > 0
2021-05-13 18:22:16 +00:00
)
},
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
},
2021-05-23 13:46:04 +00:00
transform(shape, bounds, { initialShape, scaleX, scaleY }) {
const initialShapeBounds = this.getBounds(initialShape)
2021-05-14 21:05:21 +00:00
shape.points = shape.points.map((_, i) => {
const [x, y] = initialShape.points[i]
return [
bounds.width *
2021-05-23 13:46:04 +00:00
(scaleX < 0
2021-05-14 21:05:21 +00:00
? 1 - x / initialShapeBounds.width
: x / initialShapeBounds.width),
bounds.height *
2021-05-23 13:46:04 +00:00
(scaleY < 0
2021-05-14 21:05:21 +00:00
? 1 - y / initialShapeBounds.height
: y / initialShapeBounds.height),
]
2021-05-14 12:44:23 +00:00
})
shape.point = [bounds.minX, bounds.minY]
return shape
},
2021-05-15 13:02:13 +00:00
2021-05-19 09:35:00 +00:00
transformSingle(shape, bounds, info) {
return this.transform(shape, bounds, info)
},
2021-05-15 13:02:13 +00:00
canTransform: true,
2021-05-23 13:46:04 +00:00
canChangeAspectRatio: true,
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 polyline