tldraw/state/shape-utils/dot.tsx

74 lines
1.6 KiB
TypeScript
Raw Normal View History

2021-07-08 09:59:47 +00:00
import { getFromCache, uniqueId } from 'utils/utils'
2021-05-28 20:30:27 +00:00
import { DotShape, ShapeType } from 'types'
import { intersectCircleBounds } from 'utils/intersections'
2021-06-24 12:34:43 +00:00
import { boundsContained, translateBounds } from 'utils'
2021-07-03 16:30:06 +00:00
import { defaultStyle, getShapeStyle } from 'state/shape-styles'
2021-06-21 21:35:28 +00:00
import { registerShapeUtils } from './register'
2021-05-12 21:11:17 +00:00
2021-05-20 09:49:40 +00:00
const dot = registerShapeUtils<DotShape>({
2021-05-14 12:44:23 +00:00
boundsCache: new WeakMap([]),
defaultProps: {
id: uniqueId(),
type: ShapeType.Dot,
name: 'Dot',
parentId: 'page1',
childIndex: 0,
point: [0, 0],
rotation: 0,
style: defaultStyle,
2021-05-12 21:11:17 +00:00
},
2021-07-10 20:39:29 +00:00
render(shape, { isDarkMode }) {
const styles = getShapeStyle(shape.style, isDarkMode)
2021-07-03 16:30:06 +00:00
2021-07-09 19:52:08 +00:00
return <use href="#dot" stroke={styles.stroke} fill={styles.stroke} />
2021-05-12 21:11:17 +00:00
},
getBounds(shape) {
2021-07-08 09:59:47 +00:00
const bounds = getFromCache(this.boundsCache, shape, (cache) => {
cache.set(shape, {
2021-05-18 08:32:20 +00:00
minX: 0,
maxX: 1,
minY: 0,
maxY: 1,
width: 1,
height: 1,
2021-07-08 09:59:47 +00:00
})
})
2021-05-18 08:32:20 +00:00
2021-07-08 09:59:47 +00:00
return translateBounds(bounds, shape.point)
2021-05-18 08:32:20 +00:00
},
2021-05-14 12:44:23 +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) {
return shape.point
},
2021-06-21 21:35:28 +00:00
hitTest() {
2021-05-14 22:56:41 +00:00
return true
2021-05-12 21:11:17 +00:00
},
2021-05-13 18:22:16 +00:00
hitTestBounds(this, shape, brushBounds) {
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) {
shape.point = [bounds.minX, bounds.minY]
return this
2021-05-14 12:44:23 +00:00
},
2021-05-15 13:02:13 +00:00
canTransform: false,
2021-05-23 13:46:04 +00:00
canChangeAspectRatio: 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 dot