tldraw/state/shape-utils/rectangle.tsx

222 lines
5.3 KiB
TypeScript
Raw Normal View History

import { uniqueId } from 'utils/utils'
import vec from 'utils/vec'
import { DashStyle, RectangleShape, ShapeType } from 'types'
2021-06-08 10:32:20 +00:00
import {
getSvgPathFromStroke,
translateBounds,
rng,
shuffleArr,
pointsBetween,
} from 'utils/utils'
2021-06-22 18:13:16 +00:00
import { defaultStyle, getShapeStyle } from 'state/shape-styles'
2021-06-07 21:12:14 +00:00
import getStroke from 'perfect-freehand'
2021-06-21 21:35:28 +00:00
import { registerShapeUtils } from './register'
2021-06-22 18:13:16 +00:00
import { getPerfectDashProps } from 'utils/dashes'
2021-06-07 21:12:14 +00:00
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-22 18:13:16 +00:00
const strokeWidth = +styles.strokeWidth
2021-06-07 21:12:14 +00:00
if (style.dash === DashStyle.Solid) {
if (!pathCache.has(shape.size)) {
renderPath(shape)
}
const path = pathCache.get(shape.size)
2021-06-07 21:12:14 +00:00
return (
<g id={id}>
<rect
rx={radius}
ry={radius}
x={+styles.strokeWidth / 2}
y={+styles.strokeWidth / 2}
2021-06-22 18:13:16 +00:00
width={Math.max(0, size[0] - strokeWidth)}
height={Math.max(0, size[1] - strokeWidth)}
strokeWidth={0}
fill={styles.fill}
/>
<path d={path} fill={styles.stroke} />
</g>
)
}
2021-06-07 21:12:14 +00:00
2021-06-22 18:13:16 +00:00
const sw = strokeWidth * 1.618
const w = Math.max(0, size[0] - sw / 2)
const h = Math.max(0, size[1] - sw / 2)
2021-06-22 18:13:16 +00:00
const strokes: [number[], number[], number][] = [
[[sw / 2, sw / 2], [w, sw / 2], w - sw / 2],
[[w, sw / 2], [w, h], h - sw / 2],
[[w, h], [sw / 2, h], w - sw / 2],
[[sw / 2, h], [sw / 2, sw / 2], h - sw / 2],
2021-06-22 18:13:16 +00:00
]
const paths = strokes.map(([start, end, length], i) => {
const { strokeDasharray, strokeDashoffset } = getPerfectDashProps(
length,
sw,
shape.style.dash === DashStyle.Dotted ? 'dotted' : 'dashed'
)
return (
<line
key={id + '_' + i}
x1={start[0]}
y1={start[1]}
x2={end[0]}
y2={end[1]}
stroke={styles.stroke}
strokeWidth={sw}
strokeLinecap="round"
strokeDasharray={strokeDasharray}
strokeDashoffset={strokeDashoffset}
/>
)
})
2021-05-23 13:46:04 +00:00
return (
2021-06-22 18:13:16 +00:00
<g id={id}>
<rect
x={sw / 2}
y={sw / 2}
width={w}
height={h}
2021-06-22 18:13:16 +00:00
fill={styles.fill}
stroke="none"
/>
{paths}
</g>
2021-05-23 13:46:04 +00:00
)
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
2021-06-21 21:35:28 +00:00
const offsets = Array.from(Array(4)).map(() => [
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
}