Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | import { state } from '../../store';
import { EventTypes } from '../../types';
import { setAnnotationSelected } from '../../stateManagement/annotation/annotationSelection';
import getActiveToolForTouchEvent from '../shared/getActiveToolForTouchEvent';
/**
* If the `touchStart` handler does not consume an event,
* activate the creation loop of the active tool, if one is found for the
* touch button pressed.
*
* @param evt - The normalized touchStart event.
*/
export default function touchStartActivate(
evt: EventTypes.TouchStartActivateEventType
) {
// If a tool has locked the current state it is dealing with an interaction within its own eventLoop.
if (state.isInteractingWithTool) {
return;
}
const activeTool = getActiveToolForTouchEvent(evt);
if (!activeTool) {
return;
}
if (state.isMultiPartToolActive) {
return;
}
if (activeTool.addNewAnnotation) {
const annotation = activeTool.addNewAnnotation(evt, 'touch');
setAnnotationSelected(annotation.annotationUID);
}
}
|