We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9ea015d + c0c1c13 commit 925a3ddCopy full SHA for 925a3dd
src/eventDispatchers/mouseEventHandlers/addNewMeasurement.js
@@ -32,6 +32,8 @@ export default function(evt, tool) {
32
? moveHandle
33
: moveNewHandle;
34
35
+ const timestamp = new Date().getTime();
36
+
37
handleMover(
38
eventData,
39
tool.name,
@@ -44,7 +46,18 @@ export default function(evt, tool) {
44
46
return;
45
47
}
48
- if (success) {
49
+ const hasThreshold =
50
+ tool.configuration &&
51
+ Object(tool.configuration).hasOwnProperty(
52
+ 'measurementCreationThreshold'
53
+ );
54
55
+ const isTooFast = hasThreshold
56
+ ? new Date().getTime() - timestamp <
57
+ tool.configuration.measurementCreationThreshold
58
+ : false;
59
60
+ if (success && isTooFast === false) {
61
const eventType = EVENTS.MEASUREMENT_COMPLETED;
62
const eventData = {
63
toolName: tool.name,
0 commit comments