-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathcanvas.ts
More file actions
131 lines (123 loc) · 3.35 KB
/
canvas.ts
File metadata and controls
131 lines (123 loc) · 3.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import Konva from 'konva'
import { Layer } from 'konva/lib/Layer'
import { Line } from 'konva/lib/shapes/Line'
import { KONVA_REFS } from '@/common/constants'
import {
AnnotationLensOptions,
AnnotationShape,
AnnotationViewerOptions,
ImageBoundingBox,
PointerPosition,
} from '@/common/types'
import { roundTo } from './roundTo'
export const mapShapesToPolygons = (
shapesLayer: Layer,
shapes: AnnotationShape[] = [],
useEvents = true,
imageBoundingBox: ImageBoundingBox | null,
options: AnnotationLensOptions | AnnotationViewerOptions,
onClick?: (shape: AnnotationShape) => void,
onShapeMouseEnter?: (shape: AnnotationShape) => void,
onShapeMouseLeave?: (shape: AnnotationShape) => void,
) => {
if (!imageBoundingBox) {
return
}
shapes.forEach((shape: AnnotationShape) => {
const polygon = new Konva.Line({
id: shape.id,
name: KONVA_REFS.shape,
points: mapCoordinatesToPoints(shape.coordinates, imageBoundingBox),
closed: true,
...(options?.shapeConfig || {}),
...shape.config,
shape,
})
shapesLayer.add(polygon)
if (useEvents) {
bindEventToPolygon(
polygon,
options as AnnotationViewerOptions,
onClick,
onShapeMouseEnter,
onShapeMouseLeave,
)
}
})
}
const bindEventToPolygon = (
polygon: Line,
options: AnnotationViewerOptions,
onClick?: (shape: AnnotationShape) => void,
onShapeMouseEnter?: (shape: AnnotationShape) => void,
onShapeMouseLeave?: (shape: AnnotationShape) => void,
) => {
const stage = polygon.getStage()
const shape = polygon.getAttr('shape')
polygon.on('mouseup', (event) => {
event.cancelBubble = true
onClick?.(shape)
options?.onClick?.(polygon)
})
polygon.on('mouseleave', function (event) {
event.cancelBubble = true
stage!.container().style.cursor = 'inherit'
options?.onMouseLeave?.(polygon)
onShapeMouseLeave?.(shape)
})
polygon.on('mouseenter', function (event) {
event.cancelBubble = true
options?.onMouseEnter?.(polygon)
stage!.container().style.cursor = 'pointer'
onShapeMouseEnter?.(shape)
})
}
export const scalePointToImage = (
point: PointerPosition,
imageBoundingBox: ImageBoundingBox,
) => {
const { width, height, scale } = imageBoundingBox
return {
x: roundTo((Math.min(point.x, 1) * width) / scale, 2),
y: roundTo((Math.min(point.y, 1) * height) / scale, 2),
}
}
const mapCoordinatesToPoints = (
coordinates: number[][],
imageBoundingBox: ImageBoundingBox,
): number[] =>
coordinates.reduce((accumulator, element) => {
const { x, y } = scalePointToImage(
{ x: element[0], y: element[1] },
imageBoundingBox,
)
accumulator = accumulator.concat([x, y])
return accumulator
}, [])
export const getMousePosition = (
stage: Konva.Stage | null,
imageBoundingBox: ImageBoundingBox | null,
) => {
if (!stage || !imageBoundingBox) {
return
}
const { x: pointerX, y: pointerY } = stage.getPointerPosition() || {
x: 0,
y: 0,
}
const oldScale = stage.scaleX()
const stageX = stage.x()
const stageY = stage.y()
return {
x: roundTo(
((pointerX - stageX) * imageBoundingBox.scale) /
(oldScale * imageBoundingBox.width),
2,
),
y: roundTo(
((pointerY - stageY) * imageBoundingBox.scale) /
(oldScale * imageBoundingBox.height),
2,
),
}
}