2021-06-24 08:18:14 +00:00
|
|
|
import { uniqueId } from 'utils'
|
2021-06-16 12:09:45 +00:00
|
|
|
import vec from 'utils/vec'
|
2021-05-28 20:30:27 +00:00
|
|
|
import { PolylineShape, ShapeType } from 'types'
|
|
|
|
import { intersectPolylineBounds } from 'utils/intersections'
|
|
|
|
import { boundsContainPolygon } from 'utils/bounds'
|
2021-06-24 08:18:14 +00:00
|
|
|
import { getBoundsFromPoints, translateBounds } from 'utils'
|
2021-06-21 21:35:28 +00:00
|
|
|
import { defaultStyle } from 'state/shape-styles'
|
|
|
|
import { registerShapeUtils } from './register'
|
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 {
|
2021-06-16 12:09:45 +00:00
|
|
|
id: uniqueId(),
|
2021-06-07 21:12:14 +00:00
|
|
|
seed: Math.random(),
|
2021-05-12 21:11:17 +00:00
|
|
|
type: ShapeType.Polyline,
|
2021-05-15 13:02:13 +00:00
|
|
|
isGenerated: false,
|
2021-05-28 20:30:27 +00:00
|
|
|
name: 'Polyline',
|
2021-06-15 11:58:51 +00:00
|
|
|
parentId: 'page1',
|
2021-05-12 21:11:17 +00:00
|
|
|
childIndex: 0,
|
|
|
|
point: [0, 0],
|
|
|
|
points: [[0, 0]],
|
|
|
|
rotation: 0,
|
2021-05-29 10:12:28 +00:00
|
|
|
isAspectRatioLocked: false,
|
|
|
|
isLocked: false,
|
|
|
|
isHidden: false,
|
2021-06-02 11:50:34 +00:00
|
|
|
style: defaultStyle,
|
2021-05-12 21:11:17 +00:00
|
|
|
...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)) {
|
2021-05-31 19:13:43 +00:00
|
|
|
this.boundsCache.set(shape, getBoundsFromPoints(shape.points))
|
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) {
|
2021-06-21 21:35:28 +00:00
|
|
|
const pt = vec.sub(point, shape.point)
|
2021-05-14 22:56:41 +00:00
|
|
|
let prev = shape.points[0]
|
|
|
|
|
|
|
|
for (let i = 1; i < shape.points.length; i++) {
|
2021-06-21 21:35:28 +00:00
|
|
|
const curr = shape.points[i]
|
2021-05-14 22:56:41 +00:00
|
|
|
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-23 13:46:04 +00:00
|
|
|
transform(shape, bounds, { initialShape, scaleX, scaleY }) {
|
|
|
|
const initialShapeBounds = this.getBounds(initialShape)
|
2021-05-31 19:13:43 +00:00
|
|
|
|
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]
|
2021-05-25 09:00:59 +00:00
|
|
|
return this
|
2021-05-14 12:44:23 +00:00
|
|
|
},
|
2021-05-15 13:02:13 +00:00
|
|
|
|
2021-05-19 09:35:00 +00:00
|
|
|
transformSingle(shape, bounds, info) {
|
2021-05-25 09:00:59 +00:00
|
|
|
this.transform(shape, bounds, info)
|
|
|
|
return this
|
|
|
|
},
|
|
|
|
|
2021-05-15 13:02:13 +00:00
|
|
|
canTransform: true,
|
2021-05-23 13:46:04 +00:00
|
|
|
canChangeAspectRatio: true,
|
2021-06-01 21:49:32 +00:00
|
|
|
canStyleFill: false,
|
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
|