2021-06-16 12:09:45 +00:00
|
|
|
import { uniqueId } from 'utils/utils'
|
|
|
|
import vec from 'utils/vec'
|
2021-05-28 20:30:27 +00:00
|
|
|
import { LineShape, ShapeType } from 'types'
|
|
|
|
import { registerShapeUtils } from './index'
|
|
|
|
import { boundsContained } from 'utils/bounds'
|
|
|
|
import { intersectCircleBounds } from 'utils/intersections'
|
2021-06-05 06:36:39 +00:00
|
|
|
import { ThinLine } from 'components/canvas/misc'
|
2021-05-28 20:30:27 +00:00
|
|
|
import { translateBounds } from 'utils/utils'
|
2021-05-30 20:14:52 +00:00
|
|
|
import styled from 'styles'
|
2021-06-02 11:50:34 +00:00
|
|
|
import { defaultStyle } from 'lib/shape-styles'
|
2021-05-14 12:44:23 +00:00
|
|
|
|
2021-05-20 09:49:40 +00:00
|
|
|
const line = registerShapeUtils<LineShape>({
|
2021-05-14 12:44:23 +00:00
|
|
|
boundsCache: new WeakMap([]),
|
|
|
|
|
|
|
|
create(props) {
|
|
|
|
return {
|
2021-06-16 12:09:45 +00:00
|
|
|
id: uniqueId(),
|
2021-06-07 21:12:14 +00:00
|
|
|
seed: Math.random(),
|
2021-05-14 12:44:23 +00:00
|
|
|
type: ShapeType.Line,
|
2021-05-15 13:02:13 +00:00
|
|
|
isGenerated: false,
|
2021-05-28 20:30:27 +00:00
|
|
|
name: 'Line',
|
2021-06-15 11:58:51 +00:00
|
|
|
parentId: 'page1',
|
2021-05-14 12:44:23 +00:00
|
|
|
childIndex: 0,
|
|
|
|
point: [0, 0],
|
2021-05-14 21:05:21 +00:00
|
|
|
direction: [0, 0],
|
2021-05-14 12:44:23 +00:00
|
|
|
rotation: 0,
|
2021-05-29 10:12:28 +00:00
|
|
|
isAspectRatioLocked: false,
|
|
|
|
isLocked: false,
|
|
|
|
isHidden: false,
|
2021-06-02 11:50:34 +00:00
|
|
|
...props,
|
2021-05-15 17:11:08 +00:00
|
|
|
style: {
|
2021-06-02 11:50:34 +00:00
|
|
|
...defaultStyle,
|
|
|
|
...props.style,
|
|
|
|
isFilled: false,
|
2021-05-15 17:11:08 +00:00
|
|
|
},
|
2021-05-14 12:44:23 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2021-05-14 21:05:21 +00:00
|
|
|
render({ id, direction }) {
|
2021-05-30 20:14:52 +00:00
|
|
|
const [x1, y1] = vec.add([0, 0], vec.mul(direction, 10000))
|
|
|
|
const [x2, y2] = vec.sub([0, 0], vec.mul(direction, 10000))
|
2021-05-14 21:05:21 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<g id={id}>
|
2021-05-30 20:14:52 +00:00
|
|
|
<ThinLine x1={x1} y1={y1} x2={x2} y2={y2} />
|
2021-06-05 06:36:39 +00:00
|
|
|
<use href="dot" />
|
2021-05-14 21:05:21 +00:00
|
|
|
</g>
|
|
|
|
)
|
2021-05-14 12:44:23 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
getBounds(shape) {
|
2021-05-18 08:32:20 +00:00
|
|
|
if (!this.boundsCache.has(shape)) {
|
|
|
|
const bounds = {
|
|
|
|
minX: 0,
|
|
|
|
maxX: 1,
|
|
|
|
minY: 0,
|
|
|
|
maxY: 1,
|
|
|
|
width: 1,
|
|
|
|
height: 1,
|
|
|
|
}
|
|
|
|
|
|
|
|
this.boundsCache.set(shape, bounds)
|
2021-05-14 12:44:23 +00:00
|
|
|
}
|
|
|
|
|
2021-05-18 08:32:20 +00:00
|
|
|
return translateBounds(this.boundsCache.get(shape), shape.point)
|
|
|
|
},
|
2021-05-14 12:44:23 +00:00
|
|
|
|
2021-05-18 08:32:20 +00:00
|
|
|
getRotatedBounds(shape) {
|
|
|
|
return this.getBounds(shape)
|
2021-05-14 12:44:23 +00:00
|
|
|
},
|
|
|
|
|
2021-05-17 21:27:18 +00:00
|
|
|
getCenter(shape) {
|
|
|
|
return shape.point
|
|
|
|
},
|
|
|
|
|
2021-05-14 12:44:23 +00:00
|
|
|
hitTest(shape, test) {
|
2021-05-14 22:56:41 +00:00
|
|
|
return true
|
2021-05-14 12:44:23 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
hitTestBounds(this, shape, brushBounds) {
|
2021-05-15 13:02:13 +00:00
|
|
|
const shapeBounds = this.getBounds(shape)
|
|
|
|
return (
|
|
|
|
boundsContained(shapeBounds, brushBounds) ||
|
|
|
|
intersectCircleBounds(shape.point, 4, brushBounds).length > 0
|
|
|
|
)
|
2021-05-14 12:44:23 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
transform(shape, bounds) {
|
2021-05-14 21:05:21 +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) {
|
|
|
|
return this.transform(shape, bounds, info)
|
|
|
|
},
|
|
|
|
|
2021-05-15 13:02:13 +00:00
|
|
|
canTransform: false,
|
2021-05-23 13:46:04 +00:00
|
|
|
canChangeAspectRatio: false,
|
2021-06-01 21:49:32 +00:00
|
|
|
canStyleFill: false,
|
2021-05-14 12:44:23 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
export default line
|