| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- import { uniqueId } from 'utils/utils'
- import { DotShape, ShapeType } from 'types'
- import { boundsContained } from 'utils/bounds'
- import { intersectCircleBounds } from 'utils/intersections'
- import { translateBounds } from 'utils/utils'
- import { defaultStyle } from 'state/shape-styles'
- import { registerShapeUtils } from './register'
-
- const dot = registerShapeUtils<DotShape>({
- boundsCache: new WeakMap([]),
-
- create(props) {
- return {
- id: uniqueId(),
- seed: Math.random(),
- type: ShapeType.Dot,
- isGenerated: false,
- name: 'Dot',
- parentId: 'page1',
- childIndex: 0,
- point: [0, 0],
- rotation: 0,
- isAspectRatioLocked: false,
- isLocked: false,
- isHidden: false,
- ...props,
- style: {
- ...defaultStyle,
- ...props.style,
- isFilled: false,
- },
- }
- },
-
- render({ id }) {
- return <use id={id} href="#dot" fill="black" />
- },
-
- getBounds(shape) {
- if (!this.boundsCache.has(shape)) {
- const bounds = {
- minX: 0,
- maxX: 1,
- minY: 0,
- maxY: 1,
- width: 1,
- height: 1,
- }
-
- this.boundsCache.set(shape, bounds)
- }
-
- return translateBounds(this.boundsCache.get(shape), shape.point)
- },
-
- getRotatedBounds(shape) {
- return this.getBounds(shape)
- },
-
- getCenter(shape) {
- return shape.point
- },
-
- hitTest() {
- return true
- },
-
- hitTestBounds(this, shape, brushBounds) {
- const shapeBounds = this.getBounds(shape)
- return (
- boundsContained(shapeBounds, brushBounds) ||
- intersectCircleBounds(shape.point, 4, brushBounds).length > 0
- )
- },
-
- transform(shape, bounds) {
- shape.point = [bounds.minX, bounds.minY]
-
- return this
- },
-
- canTransform: false,
- canChangeAspectRatio: false,
- })
-
- export default dot
|