You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dot.tsx 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. import { v4 as uuid } from "uuid"
  2. import * as vec from "utils/vec"
  3. import { DotShape, ShapeType } from "types"
  4. import { registerShapeUtils } from "./index"
  5. import { boundsContained } from "utils/bounds"
  6. import { intersectCircleBounds } from "utils/intersections"
  7. import { DotCircle } from "components/canvas/misc"
  8. import { translateBounds } from "utils/utils"
  9. const dot = registerShapeUtils<DotShape>({
  10. boundsCache: new WeakMap([]),
  11. create(props) {
  12. return {
  13. id: uuid(),
  14. type: ShapeType.Dot,
  15. isGenerated: false,
  16. name: "Dot",
  17. parentId: "page0",
  18. childIndex: 0,
  19. point: [0, 0],
  20. rotation: 0,
  21. style: {
  22. fill: "#c6cacb",
  23. strokeWidth: "0",
  24. },
  25. ...props,
  26. }
  27. },
  28. render({ id }) {
  29. return <DotCircle id={id} cx={0} cy={0} r={3} />
  30. },
  31. applyStyles(shape, style) {
  32. Object.assign(shape.style, style)
  33. return this
  34. },
  35. getBounds(shape) {
  36. if (!this.boundsCache.has(shape)) {
  37. const bounds = {
  38. minX: 0,
  39. maxX: 1,
  40. minY: 0,
  41. maxY: 1,
  42. width: 1,
  43. height: 1,
  44. }
  45. this.boundsCache.set(shape, bounds)
  46. }
  47. return translateBounds(this.boundsCache.get(shape), shape.point)
  48. },
  49. getRotatedBounds(shape) {
  50. return this.getBounds(shape)
  51. },
  52. getCenter(shape) {
  53. return shape.point
  54. },
  55. hitTest(shape, test) {
  56. return true
  57. },
  58. hitTestBounds(this, shape, brushBounds) {
  59. const shapeBounds = this.getBounds(shape)
  60. return (
  61. boundsContained(shapeBounds, brushBounds) ||
  62. intersectCircleBounds(shape.point, 4, brushBounds).length > 0
  63. )
  64. },
  65. rotateTo(shape) {
  66. return this
  67. },
  68. translateTo(shape, point) {
  69. shape.point = point
  70. return this
  71. },
  72. transform(shape, bounds) {
  73. shape.point = [bounds.minX, bounds.minY]
  74. return this
  75. },
  76. transformSingle(shape, bounds, info) {
  77. this.transform(shape, bounds, info)
  78. return this
  79. },
  80. setParent(shape, parentId) {
  81. shape.parentId = parentId
  82. return this
  83. },
  84. setChildIndex(shape, childIndex) {
  85. shape.childIndex = childIndex
  86. return this
  87. },
  88. canTransform: false,
  89. canChangeAspectRatio: false,
  90. })
  91. export default dot