tldraw/lib/shape-utils/rectangle.tsx

170 lines
4 KiB
TypeScript
Raw Normal View History

import { uniqueId } from 'utils/utils'
import vec from 'utils/vec'
2021-05-28 20:30:27 +00:00
import { RectangleShape, ShapeType } from 'types'
import { registerShapeUtils } from './index'
2021-06-08 10:32:20 +00:00
import {
getSvgPathFromStroke,
translateBounds,
rng,
shuffleArr,
pointsBetween,
} from 'utils/utils'
import { defaultStyle, getShapeStyle } from 'lib/shape-styles'
2021-06-07 21:12:14 +00:00
import getStroke from 'perfect-freehand'
const pathCache = new WeakMap<number[], string>([])
2021-05-12 21:11:17 +00:00
2021-05-20 09:49:40 +00:00
const rectangle = registerShapeUtils<RectangleShape>({
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: uniqueId(),
2021-06-07 21:12:14 +00:00
seed: Math.random(),
2021-05-12 21:11:17 +00:00
type: ShapeType.Rectangle,
2021-05-15 13:02:13 +00:00
isGenerated: false,
2021-05-28 20:30:27 +00:00
name: 'Rectangle',
parentId: 'page1',
2021-05-12 21:11:17 +00:00
childIndex: 0,
point: [0, 0],
size: [1, 1],
2021-05-26 10:34:10 +00:00
radius: 2,
2021-05-12 21:11:17 +00:00
rotation: 0,
isAspectRatioLocked: false,
isLocked: false,
isHidden: false,
style: defaultStyle,
2021-05-12 21:11:17 +00:00
...props,
}
},
2021-06-07 21:12:14 +00:00
render(shape) {
2021-06-08 10:32:20 +00:00
const { id, size, radius, style } = shape
const styles = getShapeStyle(style)
2021-06-07 21:12:14 +00:00
if (!pathCache.has(shape.size)) {
2021-06-07 21:12:14 +00:00
renderPath(shape)
}
const path = pathCache.get(shape.size)
2021-06-07 21:12:14 +00:00
2021-05-23 13:46:04 +00:00
return (
<g id={id}>
2021-05-26 10:34:10 +00:00
<rect
2021-06-15 12:20:22 +00:00
className="hi"
2021-05-26 10:34:10 +00:00
rx={radius}
ry={radius}
2021-06-04 21:21:03 +00:00
x={+styles.strokeWidth / 2}
y={+styles.strokeWidth / 2}
width={Math.max(0, size[0] + -styles.strokeWidth)}
height={Math.max(0, size[1] + -styles.strokeWidth)}
2021-06-07 21:12:14 +00:00
strokeWidth={0}
2021-06-15 12:20:22 +00:00
fill={styles.fill}
2021-05-26 10:34:10 +00:00
/>
2021-06-07 21:12:14 +00:00
<path d={path} fill={styles.stroke} />
2021-05-23 13:46:04 +00:00
</g>
)
2021-05-12 21:11:17 +00:00
},
getBounds(shape) {
2021-05-18 08:32:20 +00:00
if (!this.boundsCache.has(shape)) {
const [width, height] = shape.size
const bounds = {
minX: 0,
maxX: width,
minY: 0,
maxY: height,
width,
height,
}
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-06-02 15:58:51 +00:00
hitTest() {
2021-05-12 21:11:17 +00:00
return true
},
transform(shape, bounds, { initialShape, transformOrigin, scaleX, scaleY }) {
2021-05-29 13:59:11 +00:00
if (shape.rotation === 0 && !shape.isAspectRatioLocked) {
2021-05-22 20:35:01 +00:00
shape.size = [bounds.width, bounds.height]
2021-05-22 20:35:53 +00:00
shape.point = [bounds.minX, bounds.minY]
2021-05-18 10:45:29 +00:00
} else {
2021-05-22 20:35:53 +00:00
shape.size = vec.mul(
initialShape.size,
Math.min(Math.abs(scaleX), Math.abs(scaleY))
)
shape.point = [
bounds.minX +
(bounds.width - shape.size[0]) *
(scaleX < 0 ? 1 - transformOrigin[0] : transformOrigin[0]),
bounds.minY +
(bounds.height - shape.size[1]) *
(scaleY < 0 ? 1 - transformOrigin[1] : transformOrigin[1]),
]
shape.rotation =
(scaleX < 0 && scaleY >= 0) || (scaleY < 0 && scaleX >= 0)
? -initialShape.rotation
: initialShape.rotation
2021-05-18 10:45:29 +00:00
}
return this
2021-05-12 21:11:17 +00:00
},
2021-05-15 13:02:13 +00:00
transformSingle(shape, bounds) {
2021-05-19 09:35:00 +00:00
shape.size = [bounds.width, bounds.height]
shape.point = [bounds.minX, bounds.minY]
return this
},
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 rectangle
2021-06-07 21:12:14 +00:00
function renderPath(shape: RectangleShape) {
const styles = getShapeStyle(shape.style)
2021-06-08 10:32:20 +00:00
const getRandom = rng(shape.id)
const baseOffset = +styles.strokeWidth / 2
2021-06-07 21:12:14 +00:00
const offsets = Array.from(Array(4)).map((_, i) => [
2021-06-08 10:32:20 +00:00
getRandom() * baseOffset,
getRandom() * baseOffset,
2021-06-07 21:12:14 +00:00
])
const [w, h] = shape.size
const tl = vec.add([0, 0], offsets[0])
const tr = vec.add([w, 0], offsets[1])
const br = vec.add([w, h], offsets[2])
const bl = vec.add([0, h], offsets[3])
const lines = shuffleArr(
[
pointsBetween(tr, br),
pointsBetween(br, bl),
pointsBetween(bl, tl),
pointsBetween(tl, tr),
],
2021-06-08 10:32:20 +00:00
Math.floor(5 + getRandom() * 4)
2021-06-07 21:12:14 +00:00
)
const stroke = getStroke(
2021-06-08 10:32:20 +00:00
[...lines.flat().slice(2), ...lines[0], ...lines[0].slice(4)],
2021-06-07 21:12:14 +00:00
{
2021-06-08 11:06:24 +00:00
size: 1 + +styles.strokeWidth,
2021-06-07 21:12:14 +00:00
thinning: 0.6,
easing: (t) => t * t * t * t,
end: { taper: +styles.strokeWidth * 20 },
start: { taper: +styles.strokeWidth * 20 },
simulatePressure: false,
}
)
pathCache.set(shape.size, getSvgPathFromStroke(stroke))
2021-06-07 21:12:14 +00:00
}