SafetyScreen-ui/node_modules/@interactjs/auto-start/dragAxis.js

77 lines
2.3 KiB
JavaScript

import { parentNode } from "../utils/domUtils.js";
import is from "../utils/is.js";
import autoStart from "./base.js";
function beforeStart({
interaction,
eventTarget,
dx,
dy
}, scope) {
if (interaction.prepared.name !== 'drag') {
return;
} // check if a drag is in the correct axis
const absX = Math.abs(dx);
const absY = Math.abs(dy);
const targetOptions = interaction.interactable.options.drag;
const startAxis = targetOptions.startAxis;
const currentAxis = absX > absY ? 'x' : absX < absY ? 'y' : 'xy';
interaction.prepared.axis = targetOptions.lockAxis === 'start' ? currentAxis[0] // always lock to one axis even if currentAxis === 'xy'
: targetOptions.lockAxis; // if the movement isn't in the startAxis of the interactable
if (currentAxis !== 'xy' && startAxis !== 'xy' && startAxis !== currentAxis) {
// cancel the prepared action
interaction.prepared.name = null; // then try to get a drag from another ineractable
let element = eventTarget;
const getDraggable = function (interactable) {
if (interactable === interaction.interactable) {
return;
}
const options = interaction.interactable.options.drag;
if (!options.manualStart && interactable.testIgnoreAllow(options, element, eventTarget)) {
const action = interactable.getAction(interaction.downPointer, interaction.downEvent, interaction, element);
if (action && action.name === 'drag' && checkStartAxis(currentAxis, interactable) && autoStart.validateAction(action, interactable, element, eventTarget, scope)) {
return interactable;
}
}
}; // check all interactables
while (is.element(element)) {
const interactable = scope.interactables.forEachMatch(element, getDraggable);
if (interactable) {
interaction.prepared.name = 'drag';
interaction.interactable = interactable;
interaction.element = element;
break;
}
element = parentNode(element);
}
}
}
function checkStartAxis(startAxis, interactable) {
if (!interactable) {
return false;
}
const thisAxis = interactable.options.drag.startAxis;
return startAxis === 'xy' || thisAxis === 'xy' || thisAxis === startAxis;
}
export default {
id: 'auto-start/dragAxis',
listeners: {
'autoStart:before-start': beforeStart
}
};
//# sourceMappingURL=dragAxis.js.map