tldraw/lib/shape-utils/rectangle.tsx

104 lines
2.5 KiB
TypeScript
Raw Normal View History

2021-05-28 20:30:27 +00:00
import { v4 as uuid } from 'uuid'
import * as vec from 'utils/vec'
import { RectangleShape, ShapeType } from 'types'
import { registerShapeUtils } from './index'
2021-06-02 15:58:51 +00:00
import { translateBounds } from 'utils/utils'
import { defaultStyle, getShapeStyle } from 'lib/shape-styles'
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: uuid(),
type: ShapeType.Rectangle,
2021-05-15 13:02:13 +00:00
isGenerated: false,
2021-05-28 20:30:27 +00:00
name: 'Rectangle',
parentId: 'page0',
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-05-28 20:30:27 +00:00
render({ id, size, radius, style }) {
const styles = getShapeStyle(style)
2021-05-23 13:46:04 +00:00
return (
<g id={id}>
2021-05-26 10:34:10 +00:00
<rect
id={id}
rx={radius}
ry={radius}
width={Math.max(0, size[0] - Number(styles.strokeWidth) / 2)}
height={Math.max(0, size[1] - Number(styles.strokeWidth) / 2)}
2021-05-26 10:34:10 +00:00
/>
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