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.
8514 lines
235 KiB
8514 lines
235 KiB
import React, { useLayoutEffect, useEffect, useRef, useState, useContext } from 'react'; |
|
import _inheritsLoose from '@babel/runtime/helpers/esm/inheritsLoose'; |
|
import _extends from '@babel/runtime/helpers/esm/extends'; |
|
import { createStore as createStore$1, applyMiddleware, compose, bindActionCreators } from 'redux'; |
|
import { Provider, connect } from 'react-redux'; |
|
import { useMemo, useCallback } from 'use-memo-one'; |
|
import { getRect, expand, offset, withScroll, getBox, createBox, calculateBox } from 'css-box-model'; |
|
import memoizeOne from 'memoize-one'; |
|
import rafSchd from 'raf-schd'; |
|
import ReactDOM from 'react-dom'; |
|
|
|
var isProduction = process.env.NODE_ENV === 'production'; |
|
var spacesAndTabs = /[ \t]{2,}/g; |
|
var lineStartWithSpaces = /^[ \t]*/gm; |
|
|
|
var clean = function clean(value) { |
|
return value.replace(spacesAndTabs, ' ').replace(lineStartWithSpaces, '').trim(); |
|
}; |
|
|
|
var getDevMessage = function getDevMessage(message) { |
|
return clean("\n %creact-beautiful-dnd\n\n %c" + clean(message) + "\n\n %c\uD83D\uDC77\u200D This is a development only message. It will be removed in production builds.\n"); |
|
}; |
|
|
|
var getFormattedMessage = function getFormattedMessage(message) { |
|
return [getDevMessage(message), 'color: #00C584; font-size: 1.2em; font-weight: bold;', 'line-height: 1.5', 'color: #723874;']; |
|
}; |
|
var isDisabledFlag = '__react-beautiful-dnd-disable-dev-warnings'; |
|
function log(type, message) { |
|
var _console; |
|
|
|
if (isProduction) { |
|
return; |
|
} |
|
|
|
if (typeof window !== 'undefined' && window[isDisabledFlag]) { |
|
return; |
|
} |
|
|
|
(_console = console)[type].apply(_console, getFormattedMessage(message)); |
|
} |
|
var warning = log.bind(null, 'warn'); |
|
var error = log.bind(null, 'error'); |
|
|
|
function noop() {} |
|
|
|
function getOptions(shared, fromBinding) { |
|
return _extends({}, shared, {}, fromBinding); |
|
} |
|
|
|
function bindEvents(el, bindings, sharedOptions) { |
|
var unbindings = bindings.map(function (binding) { |
|
var options = getOptions(sharedOptions, binding.options); |
|
el.addEventListener(binding.eventName, binding.fn, options); |
|
return function unbind() { |
|
el.removeEventListener(binding.eventName, binding.fn, options); |
|
}; |
|
}); |
|
return function unbindAll() { |
|
unbindings.forEach(function (unbind) { |
|
unbind(); |
|
}); |
|
}; |
|
} |
|
|
|
var isProduction$1 = process.env.NODE_ENV === 'production'; |
|
var prefix = 'Invariant failed'; |
|
function RbdInvariant(message) { |
|
this.message = message; |
|
} |
|
|
|
RbdInvariant.prototype.toString = function toString() { |
|
return this.message; |
|
}; |
|
|
|
function invariant(condition, message) { |
|
if (condition) { |
|
return; |
|
} |
|
|
|
if (isProduction$1) { |
|
throw new RbdInvariant(prefix); |
|
} else { |
|
throw new RbdInvariant(prefix + ": " + (message || '')); |
|
} |
|
} |
|
|
|
var ErrorBoundary = function (_React$Component) { |
|
_inheritsLoose(ErrorBoundary, _React$Component); |
|
|
|
function ErrorBoundary() { |
|
var _this; |
|
|
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { |
|
args[_key] = arguments[_key]; |
|
} |
|
|
|
_this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this; |
|
_this.callbacks = null; |
|
_this.unbind = noop; |
|
|
|
_this.onWindowError = function (event) { |
|
var callbacks = _this.getCallbacks(); |
|
|
|
if (callbacks.isDragging()) { |
|
callbacks.tryAbort(); |
|
process.env.NODE_ENV !== "production" ? warning("\n An error was caught by our window 'error' event listener while a drag was occurring.\n The active drag has been aborted.\n ") : void 0; |
|
} |
|
|
|
var err = event.error; |
|
|
|
if (err instanceof RbdInvariant) { |
|
event.preventDefault(); |
|
|
|
if (process.env.NODE_ENV !== 'production') { |
|
error(err.message); |
|
} |
|
} |
|
}; |
|
|
|
_this.getCallbacks = function () { |
|
if (!_this.callbacks) { |
|
throw new Error('Unable to find AppCallbacks in <ErrorBoundary/>'); |
|
} |
|
|
|
return _this.callbacks; |
|
}; |
|
|
|
_this.setCallbacks = function (callbacks) { |
|
_this.callbacks = callbacks; |
|
}; |
|
|
|
return _this; |
|
} |
|
|
|
var _proto = ErrorBoundary.prototype; |
|
|
|
_proto.componentDidMount = function componentDidMount() { |
|
this.unbind = bindEvents(window, [{ |
|
eventName: 'error', |
|
fn: this.onWindowError |
|
}]); |
|
}; |
|
|
|
_proto.componentDidCatch = function componentDidCatch(err) { |
|
if (err instanceof RbdInvariant) { |
|
if (process.env.NODE_ENV !== 'production') { |
|
error(err.message); |
|
} |
|
|
|
this.setState({}); |
|
return; |
|
} |
|
|
|
throw err; |
|
}; |
|
|
|
_proto.componentWillUnmount = function componentWillUnmount() { |
|
this.unbind(); |
|
}; |
|
|
|
_proto.render = function render() { |
|
return this.props.children(this.setCallbacks); |
|
}; |
|
|
|
return ErrorBoundary; |
|
}(React.Component); |
|
|
|
var dragHandleUsageInstructions = "\n Press space bar to start a drag.\n When dragging you can use the arrow keys to move the item around and escape to cancel.\n Some screen readers may require you to be in focus mode or to use your pass through key\n"; |
|
|
|
var position = function position(index) { |
|
return index + 1; |
|
}; |
|
|
|
var onDragStart = function onDragStart(start) { |
|
return "\n You have lifted an item in position " + position(start.source.index) + "\n"; |
|
}; |
|
|
|
var withLocation = function withLocation(source, destination) { |
|
var isInHomeList = source.droppableId === destination.droppableId; |
|
var startPosition = position(source.index); |
|
var endPosition = position(destination.index); |
|
|
|
if (isInHomeList) { |
|
return "\n You have moved the item from position " + startPosition + "\n to position " + endPosition + "\n "; |
|
} |
|
|
|
return "\n You have moved the item from position " + startPosition + "\n in list " + source.droppableId + "\n to list " + destination.droppableId + "\n in position " + endPosition + "\n "; |
|
}; |
|
|
|
var withCombine = function withCombine(id, source, combine) { |
|
var inHomeList = source.droppableId === combine.droppableId; |
|
|
|
if (inHomeList) { |
|
return "\n The item " + id + "\n has been combined with " + combine.draggableId; |
|
} |
|
|
|
return "\n The item " + id + "\n in list " + source.droppableId + "\n has been combined with " + combine.draggableId + "\n in list " + combine.droppableId + "\n "; |
|
}; |
|
|
|
var onDragUpdate = function onDragUpdate(update) { |
|
var location = update.destination; |
|
|
|
if (location) { |
|
return withLocation(update.source, location); |
|
} |
|
|
|
var combine = update.combine; |
|
|
|
if (combine) { |
|
return withCombine(update.draggableId, update.source, combine); |
|
} |
|
|
|
return 'You are over an area that cannot be dropped on'; |
|
}; |
|
|
|
var returnedToStart = function returnedToStart(source) { |
|
return "\n The item has returned to its starting position\n of " + position(source.index) + "\n"; |
|
}; |
|
|
|
var onDragEnd = function onDragEnd(result) { |
|
if (result.reason === 'CANCEL') { |
|
return "\n Movement cancelled.\n " + returnedToStart(result.source) + "\n "; |
|
} |
|
|
|
var location = result.destination; |
|
var combine = result.combine; |
|
|
|
if (location) { |
|
return "\n You have dropped the item.\n " + withLocation(result.source, location) + "\n "; |
|
} |
|
|
|
if (combine) { |
|
return "\n You have dropped the item.\n " + withCombine(result.draggableId, result.source, combine) + "\n "; |
|
} |
|
|
|
return "\n The item has been dropped while not over a drop area.\n " + returnedToStart(result.source) + "\n "; |
|
}; |
|
|
|
var preset = { |
|
dragHandleUsageInstructions: dragHandleUsageInstructions, |
|
onDragStart: onDragStart, |
|
onDragUpdate: onDragUpdate, |
|
onDragEnd: onDragEnd |
|
}; |
|
|
|
var origin = { |
|
x: 0, |
|
y: 0 |
|
}; |
|
var add = function add(point1, point2) { |
|
return { |
|
x: point1.x + point2.x, |
|
y: point1.y + point2.y |
|
}; |
|
}; |
|
var subtract = function subtract(point1, point2) { |
|
return { |
|
x: point1.x - point2.x, |
|
y: point1.y - point2.y |
|
}; |
|
}; |
|
var isEqual = function isEqual(point1, point2) { |
|
return point1.x === point2.x && point1.y === point2.y; |
|
}; |
|
var negate = function negate(point) { |
|
return { |
|
x: point.x !== 0 ? -point.x : 0, |
|
y: point.y !== 0 ? -point.y : 0 |
|
}; |
|
}; |
|
var patch = function patch(line, value, otherValue) { |
|
var _ref; |
|
|
|
if (otherValue === void 0) { |
|
otherValue = 0; |
|
} |
|
|
|
return _ref = {}, _ref[line] = value, _ref[line === 'x' ? 'y' : 'x'] = otherValue, _ref; |
|
}; |
|
var distance = function distance(point1, point2) { |
|
return Math.sqrt(Math.pow(point2.x - point1.x, 2) + Math.pow(point2.y - point1.y, 2)); |
|
}; |
|
var closest = function closest(target, points) { |
|
return Math.min.apply(Math, points.map(function (point) { |
|
return distance(target, point); |
|
})); |
|
}; |
|
var apply = function apply(fn) { |
|
return function (point) { |
|
return { |
|
x: fn(point.x), |
|
y: fn(point.y) |
|
}; |
|
}; |
|
}; |
|
|
|
var executeClip = (function (frame, subject) { |
|
var result = getRect({ |
|
top: Math.max(subject.top, frame.top), |
|
right: Math.min(subject.right, frame.right), |
|
bottom: Math.min(subject.bottom, frame.bottom), |
|
left: Math.max(subject.left, frame.left) |
|
}); |
|
|
|
if (result.width <= 0 || result.height <= 0) { |
|
return null; |
|
} |
|
|
|
return result; |
|
}); |
|
|
|
var offsetByPosition = function offsetByPosition(spacing, point) { |
|
return { |
|
top: spacing.top + point.y, |
|
left: spacing.left + point.x, |
|
bottom: spacing.bottom + point.y, |
|
right: spacing.right + point.x |
|
}; |
|
}; |
|
var getCorners = function getCorners(spacing) { |
|
return [{ |
|
x: spacing.left, |
|
y: spacing.top |
|
}, { |
|
x: spacing.right, |
|
y: spacing.top |
|
}, { |
|
x: spacing.left, |
|
y: spacing.bottom |
|
}, { |
|
x: spacing.right, |
|
y: spacing.bottom |
|
}]; |
|
}; |
|
var noSpacing = { |
|
top: 0, |
|
right: 0, |
|
bottom: 0, |
|
left: 0 |
|
}; |
|
|
|
var scroll = function scroll(target, frame) { |
|
if (!frame) { |
|
return target; |
|
} |
|
|
|
return offsetByPosition(target, frame.scroll.diff.displacement); |
|
}; |
|
|
|
var increase = function increase(target, axis, withPlaceholder) { |
|
if (withPlaceholder && withPlaceholder.increasedBy) { |
|
var _extends2; |
|
|
|
return _extends({}, target, (_extends2 = {}, _extends2[axis.end] = target[axis.end] + withPlaceholder.increasedBy[axis.line], _extends2)); |
|
} |
|
|
|
return target; |
|
}; |
|
|
|
var clip = function clip(target, frame) { |
|
if (frame && frame.shouldClipSubject) { |
|
return executeClip(frame.pageMarginBox, target); |
|
} |
|
|
|
return getRect(target); |
|
}; |
|
|
|
var getSubject = (function (_ref) { |
|
var page = _ref.page, |
|
withPlaceholder = _ref.withPlaceholder, |
|
axis = _ref.axis, |
|
frame = _ref.frame; |
|
var scrolled = scroll(page.marginBox, frame); |
|
var increased = increase(scrolled, axis, withPlaceholder); |
|
var clipped = clip(increased, frame); |
|
return { |
|
page: page, |
|
withPlaceholder: withPlaceholder, |
|
active: clipped |
|
}; |
|
}); |
|
|
|
var scrollDroppable = (function (droppable, newScroll) { |
|
!droppable.frame ? process.env.NODE_ENV !== "production" ? invariant(false) : invariant(false) : void 0; |
|
var scrollable = droppable.frame; |
|
var scrollDiff = subtract(newScroll, scrollable.scroll.initial); |
|
var scrollDisplacement = negate(scrollDiff); |
|
|
|
var frame = _extends({}, scrollable, { |
|
scroll: { |
|
initial: scrollable.scroll.initial, |
|
current: newScroll, |
|
diff: { |
|
value: scrollDiff, |
|
displacement: scrollDisplacement |
|
}, |
|
max: scrollable.scroll.max |
|
} |
|
}); |
|
|
|
var subject = getSubject({ |
|
page: droppable.subject.page, |
|
withPlaceholder: droppable.subject.withPlaceholder, |
|
axis: droppable.axis, |
|
frame: frame |
|
}); |
|
|
|
var result = _extends({}, droppable, { |
|
frame: frame, |
|
subject: subject |
|
}); |
|
|
|
return result; |
|
}); |
|
|
|
function isInteger(value) { |
|
if (Number.isInteger) { |
|
return Number.isInteger(value); |
|
} |
|
|
|
return typeof value === 'number' && isFinite(value) && Math.floor(value) === value; |
|
} |
|
function values(map) { |
|
if (Object.values) { |
|
return Object.values(map); |
|
} |
|
|
|
return Object.keys(map).map(function (key) { |
|
return map[key]; |
|
}); |
|
} |
|
function findIndex(list, predicate) { |
|
if (list.findIndex) { |
|
return list.findIndex(predicate); |
|
} |
|
|
|
for (var i = 0; i < list.length; i++) { |
|
if (predicate(list[i])) { |
|
return i; |
|
} |
|
} |
|
|
|
return -1; |
|
} |
|
function find(list, predicate) { |
|
if (list.find) { |
|
return list.find(predicate); |
|
} |
|
|
|
var index = findIndex(list, predicate); |
|
|
|
if (index !== -1) { |
|
return list[index]; |
|
} |
|
|
|
return undefined; |
|
} |
|
function toArray(list) { |
|
return Array.prototype.slice.call(list); |
|
} |
|
|
|
var toDroppableMap = memoizeOne(function (droppables) { |
|
return droppables.reduce(function (previous, current) { |
|
previous[current.descriptor.id] = current; |
|
return previous; |
|
}, {}); |
|
}); |
|
var toDraggableMap = memoizeOne(function (draggables) { |
|
return draggables.reduce(function (previous, current) { |
|
previous[current.descriptor.id] = current; |
|
return previous; |
|
}, {}); |
|
}); |
|
var toDroppableList = memoizeOne(function (droppables) { |
|
return values(droppables); |
|
}); |
|
var toDraggableList = memoizeOne(function (draggables) { |
|
return values(draggables); |
|
}); |
|
|
|
var getDraggablesInsideDroppable = memoizeOne(function (droppableId, draggables) { |
|
var result = toDraggableList(draggables).filter(function (draggable) { |
|
return droppableId === draggable.descriptor.droppableId; |
|
}).sort(function (a, b) { |
|
return a.descriptor.index - b.descriptor.index; |
|
}); |
|
return result; |
|
}); |
|
|
|
function tryGetDestination(impact) { |
|
if (impact.at && impact.at.type === 'REORDER') { |
|
return impact.at.destination; |
|
} |
|
|
|
return null; |
|
} |
|
function tryGetCombine(impact) { |
|
if (impact.at && impact.at.type === 'COMBINE') { |
|
return impact.at.combine; |
|
} |
|
|
|
return null; |
|
} |
|
|
|
var removeDraggableFromList = memoizeOne(function (remove, list) { |
|
return list.filter(function (item) { |
|
return item.descriptor.id !== remove.descriptor.id; |
|
}); |
|
}); |
|
|
|
var moveToNextCombine = (function (_ref) { |
|
var isMovingForward = _ref.isMovingForward, |
|
draggable = _ref.draggable, |
|
destination = _ref.destination, |
|
insideDestination = _ref.insideDestination, |
|
previousImpact = _ref.previousImpact; |
|
|
|
if (!destination.isCombineEnabled) { |
|
return null; |
|
} |
|
|
|
var location = tryGetDestination(previousImpact); |
|
|
|
if (!location) { |
|
return null; |
|
} |
|
|
|
function getImpact(target) { |
|
var at = { |
|
type: 'COMBINE', |
|
combine: { |
|
draggableId: target, |
|
droppableId: destination.descriptor.id |
|
} |
|
}; |
|
return _extends({}, previousImpact, { |
|
at: at |
|
}); |
|
} |
|
|
|
var all = previousImpact.displaced.all; |
|
var closestId = all.length ? all[0] : null; |
|
|
|
if (isMovingForward) { |
|
return closestId ? getImpact(closestId) : null; |
|
} |
|
|
|
var withoutDraggable = removeDraggableFromList(draggable, insideDestination); |
|
|
|
if (!closestId) { |
|
if (!withoutDraggable.length) { |
|
return null; |
|
} |
|
|
|
var last = withoutDraggable[withoutDraggable.length - 1]; |
|
return getImpact(last.descriptor.id); |
|
} |
|
|
|
var indexOfClosest = findIndex(withoutDraggable, function (d) { |
|
return d.descriptor.id === closestId; |
|
}); |
|
!(indexOfClosest !== -1) ? process.env.NODE_ENV !== "production" ? invariant(false, 'Could not find displaced item in set') : invariant(false) : void 0; |
|
var proposedIndex = indexOfClosest - 1; |
|
|
|
if (proposedIndex < 0) { |
|
return null; |
|
} |
|
|
|
var before = withoutDraggable[proposedIndex]; |
|
return getImpact(before.descriptor.id); |
|
}); |
|
|
|
var isHomeOf = (function (draggable, destination) { |
|
return draggable.descriptor.droppableId === destination.descriptor.id; |
|
}); |
|
|
|
var noDisplacedBy = { |
|
point: origin, |
|
value: 0 |
|
}; |
|
var emptyGroups = { |
|
invisible: {}, |
|
visible: {}, |
|
all: [] |
|
}; |
|
var noImpact = { |
|
displaced: emptyGroups, |
|
displacedBy: noDisplacedBy, |
|
at: null |
|
}; |
|
|
|
var isWithin = (function (lowerBound, upperBound) { |
|
return function (value) { |
|
return lowerBound <= value && value <= upperBound; |
|
}; |
|
}); |
|
|
|
var isPartiallyVisibleThroughFrame = (function (frame) { |
|
var isWithinVertical = isWithin(frame.top, frame.bottom); |
|
var isWithinHorizontal = isWithin(frame.left, frame.right); |
|
return function (subject) { |
|
var isContained = isWithinVertical(subject.top) && isWithinVertical(subject.bottom) && isWithinHorizontal(subject.left) && isWithinHorizontal(subject.right); |
|
|
|
if (isContained) { |
|
return true; |
|
} |
|
|
|
var isPartiallyVisibleVertically = isWithinVertical(subject.top) || isWithinVertical(subject.bottom); |
|
var isPartiallyVisibleHorizontally = isWithinHorizontal(subject.left) || isWithinHorizontal(subject.right); |
|
var isPartiallyContained = isPartiallyVisibleVertically && isPartiallyVisibleHorizontally; |
|
|
|
if (isPartiallyContained) { |
|
return true; |
|
} |
|
|
|
var isBiggerVertically = subject.top < frame.top && subject.bottom > frame.bottom; |
|
var isBiggerHorizontally = subject.left < frame.left && subject.right > frame.right; |
|
var isTargetBiggerThanFrame = isBiggerVertically && isBiggerHorizontally; |
|
|
|
if (isTargetBiggerThanFrame) { |
|
return true; |
|
} |
|
|
|
var isTargetBiggerOnOneAxis = isBiggerVertically && isPartiallyVisibleHorizontally || isBiggerHorizontally && isPartiallyVisibleVertically; |
|
return isTargetBiggerOnOneAxis; |
|
}; |
|
}); |
|
|
|
var isTotallyVisibleThroughFrame = (function (frame) { |
|
var isWithinVertical = isWithin(frame.top, frame.bottom); |
|
var isWithinHorizontal = isWithin(frame.left, frame.right); |
|
return function (subject) { |
|
var isContained = isWithinVertical(subject.top) && isWithinVertical(subject.bottom) && isWithinHorizontal(subject.left) && isWithinHorizontal(subject.right); |
|
return isContained; |
|
}; |
|
}); |
|
|
|
var vertical = { |
|
direction: 'vertical', |
|
line: 'y', |
|
crossAxisLine: 'x', |
|
start: 'top', |
|
end: 'bottom', |
|
size: 'height', |
|
crossAxisStart: 'left', |
|
crossAxisEnd: 'right', |
|
crossAxisSize: 'width' |
|
}; |
|
var horizontal = { |
|
direction: 'horizontal', |
|
line: 'x', |
|
crossAxisLine: 'y', |
|
start: 'left', |
|
end: 'right', |
|
size: 'width', |
|
crossAxisStart: 'top', |
|
crossAxisEnd: 'bottom', |
|
crossAxisSize: 'height' |
|
}; |
|
|
|
var isTotallyVisibleThroughFrameOnAxis = (function (axis) { |
|
return function (frame) { |
|
var isWithinVertical = isWithin(frame.top, frame.bottom); |
|
var isWithinHorizontal = isWithin(frame.left, frame.right); |
|
return function (subject) { |
|
if (axis === vertical) { |
|
return isWithinVertical(subject.top) && isWithinVertical(subject.bottom); |
|
} |
|
|
|
return isWithinHorizontal(subject.left) && isWithinHorizontal(subject.right); |
|
}; |
|
}; |
|
}); |
|
|
|
var getDroppableDisplaced = function getDroppableDisplaced(target, destination) { |
|
var displacement = destination.frame ? destination.frame.scroll.diff.displacement : origin; |
|
return offsetByPosition(target, displacement); |
|
}; |
|
|
|
var isVisibleInDroppable = function isVisibleInDroppable(target, destination, isVisibleThroughFrameFn) { |
|
if (!destination.subject.active) { |
|
return false; |
|
} |
|
|
|
return isVisibleThroughFrameFn(destination.subject.active)(target); |
|
}; |
|
|
|
var isVisibleInViewport = function isVisibleInViewport(target, viewport, isVisibleThroughFrameFn) { |
|
return isVisibleThroughFrameFn(viewport)(target); |
|
}; |
|
|
|
var isVisible = function isVisible(_ref) { |
|
var toBeDisplaced = _ref.target, |
|
destination = _ref.destination, |
|
viewport = _ref.viewport, |
|
withDroppableDisplacement = _ref.withDroppableDisplacement, |
|
isVisibleThroughFrameFn = _ref.isVisibleThroughFrameFn; |
|
var displacedTarget = withDroppableDisplacement ? getDroppableDisplaced(toBeDisplaced, destination) : toBeDisplaced; |
|
return isVisibleInDroppable(displacedTarget, destination, isVisibleThroughFrameFn) && isVisibleInViewport(displacedTarget, viewport, isVisibleThroughFrameFn); |
|
}; |
|
|
|
var isPartiallyVisible = function isPartiallyVisible(args) { |
|
return isVisible(_extends({}, args, { |
|
isVisibleThroughFrameFn: isPartiallyVisibleThroughFrame |
|
})); |
|
}; |
|
var isTotallyVisible = function isTotallyVisible(args) { |
|
return isVisible(_extends({}, args, { |
|
isVisibleThroughFrameFn: isTotallyVisibleThroughFrame |
|
})); |
|
}; |
|
var isTotallyVisibleOnAxis = function isTotallyVisibleOnAxis(args) { |
|
return isVisible(_extends({}, args, { |
|
isVisibleThroughFrameFn: isTotallyVisibleThroughFrameOnAxis(args.destination.axis) |
|
})); |
|
}; |
|
|
|
var getShouldAnimate = function getShouldAnimate(id, last, forceShouldAnimate) { |
|
if (typeof forceShouldAnimate === 'boolean') { |
|
return forceShouldAnimate; |
|
} |
|
|
|
if (!last) { |
|
return true; |
|
} |
|
|
|
var invisible = last.invisible, |
|
visible = last.visible; |
|
|
|
if (invisible[id]) { |
|
return false; |
|
} |
|
|
|
var previous = visible[id]; |
|
return previous ? previous.shouldAnimate : true; |
|
}; |
|
|
|
function getTarget(draggable, displacedBy) { |
|
var marginBox = draggable.page.marginBox; |
|
var expandBy = { |
|
top: displacedBy.point.y, |
|
right: 0, |
|
bottom: 0, |
|
left: displacedBy.point.x |
|
}; |
|
return getRect(expand(marginBox, expandBy)); |
|
} |
|
|
|
function getDisplacementGroups(_ref) { |
|
var afterDragging = _ref.afterDragging, |
|
destination = _ref.destination, |
|
displacedBy = _ref.displacedBy, |
|
viewport = _ref.viewport, |
|
forceShouldAnimate = _ref.forceShouldAnimate, |
|
last = _ref.last; |
|
return afterDragging.reduce(function process(groups, draggable) { |
|
var target = getTarget(draggable, displacedBy); |
|
var id = draggable.descriptor.id; |
|
groups.all.push(id); |
|
var isVisible = isPartiallyVisible({ |
|
target: target, |
|
destination: destination, |
|
viewport: viewport, |
|
withDroppableDisplacement: true |
|
}); |
|
|
|
if (!isVisible) { |
|
groups.invisible[draggable.descriptor.id] = true; |
|
return groups; |
|
} |
|
|
|
var shouldAnimate = getShouldAnimate(id, last, forceShouldAnimate); |
|
var displacement = { |
|
draggableId: id, |
|
shouldAnimate: shouldAnimate |
|
}; |
|
groups.visible[id] = displacement; |
|
return groups; |
|
}, { |
|
all: [], |
|
visible: {}, |
|
invisible: {} |
|
}); |
|
} |
|
|
|
function getIndexOfLastItem(draggables, options) { |
|
if (!draggables.length) { |
|
return 0; |
|
} |
|
|
|
var indexOfLastItem = draggables[draggables.length - 1].descriptor.index; |
|
return options.inHomeList ? indexOfLastItem : indexOfLastItem + 1; |
|
} |
|
|
|
function goAtEnd(_ref) { |
|
var insideDestination = _ref.insideDestination, |
|
inHomeList = _ref.inHomeList, |
|
displacedBy = _ref.displacedBy, |
|
destination = _ref.destination; |
|
var newIndex = getIndexOfLastItem(insideDestination, { |
|
inHomeList: inHomeList |
|
}); |
|
return { |
|
displaced: emptyGroups, |
|
displacedBy: displacedBy, |
|
at: { |
|
type: 'REORDER', |
|
destination: { |
|
droppableId: destination.descriptor.id, |
|
index: newIndex |
|
} |
|
} |
|
}; |
|
} |
|
|
|
function calculateReorderImpact(_ref2) { |
|
var draggable = _ref2.draggable, |
|
insideDestination = _ref2.insideDestination, |
|
destination = _ref2.destination, |
|
viewport = _ref2.viewport, |
|
displacedBy = _ref2.displacedBy, |
|
last = _ref2.last, |
|
index = _ref2.index, |
|
forceShouldAnimate = _ref2.forceShouldAnimate; |
|
var inHomeList = isHomeOf(draggable, destination); |
|
|
|
if (index == null) { |
|
return goAtEnd({ |
|
insideDestination: insideDestination, |
|
inHomeList: inHomeList, |
|
displacedBy: displacedBy, |
|
destination: destination |
|
}); |
|
} |
|
|
|
var match = find(insideDestination, function (item) { |
|
return item.descriptor.index === index; |
|
}); |
|
|
|
if (!match) { |
|
return goAtEnd({ |
|
insideDestination: insideDestination, |
|
inHomeList: inHomeList, |
|
displacedBy: displacedBy, |
|
destination: destination |
|
}); |
|
} |
|
|
|
var withoutDragging = removeDraggableFromList(draggable, insideDestination); |
|
var sliceFrom = insideDestination.indexOf(match); |
|
var impacted = withoutDragging.slice(sliceFrom); |
|
var displaced = getDisplacementGroups({ |
|
afterDragging: impacted, |
|
destination: destination, |
|
displacedBy: displacedBy, |
|
last: last, |
|
viewport: viewport.frame, |
|
forceShouldAnimate: forceShouldAnimate |
|
}); |
|
return { |
|
displaced: displaced, |
|
displacedBy: displacedBy, |
|
at: { |
|
type: 'REORDER', |
|
destination: { |
|
droppableId: destination.descriptor.id, |
|
index: index |
|
} |
|
} |
|
}; |
|
} |
|
|
|
function didStartAfterCritical(draggableId, afterCritical) { |
|
return Boolean(afterCritical.effected[draggableId]); |
|
} |
|
|
|
var fromCombine = (function (_ref) { |
|
var isMovingForward = _ref.isMovingForward, |
|
destination = _ref.destination, |
|
draggables = _ref.draggables, |
|
combine = _ref.combine, |
|
afterCritical = _ref.afterCritical; |
|
|
|
if (!destination.isCombineEnabled) { |
|
return null; |
|
} |
|
|
|
var combineId = combine.draggableId; |
|
var combineWith = draggables[combineId]; |
|
var combineWithIndex = combineWith.descriptor.index; |
|
var didCombineWithStartAfterCritical = didStartAfterCritical(combineId, afterCritical); |
|
|
|
if (didCombineWithStartAfterCritical) { |
|
if (isMovingForward) { |
|
return combineWithIndex; |
|
} |
|
|
|
return combineWithIndex - 1; |
|
} |
|
|
|
if (isMovingForward) { |
|
return combineWithIndex + 1; |
|
} |
|
|
|
return combineWithIndex; |
|
}); |
|
|
|
var fromReorder = (function (_ref) { |
|
var isMovingForward = _ref.isMovingForward, |
|
isInHomeList = _ref.isInHomeList, |
|
insideDestination = _ref.insideDestination, |
|
location = _ref.location; |
|
|
|
if (!insideDestination.length) { |
|
return null; |
|
} |
|
|
|
var currentIndex = location.index; |
|
var proposedIndex = isMovingForward ? currentIndex + 1 : currentIndex - 1; |
|
var firstIndex = insideDestination[0].descriptor.index; |
|
var lastIndex = insideDestination[insideDestination.length - 1].descriptor.index; |
|
var upperBound = isInHomeList ? lastIndex : lastIndex + 1; |
|
|
|
if (proposedIndex < firstIndex) { |
|
return null; |
|
} |
|
|
|
if (proposedIndex > upperBound) { |
|
return null; |
|
} |
|
|
|
return proposedIndex; |
|
}); |
|
|
|
var moveToNextIndex = (function (_ref) { |
|
var isMovingForward = _ref.isMovingForward, |
|
isInHomeList = _ref.isInHomeList, |
|
draggable = _ref.draggable, |
|
draggables = _ref.draggables, |
|
destination = _ref.destination, |
|
insideDestination = _ref.insideDestination, |
|
previousImpact = _ref.previousImpact, |
|
viewport = _ref.viewport, |
|
afterCritical = _ref.afterCritical; |
|
var wasAt = previousImpact.at; |
|
!wasAt ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot move in direction without previous impact location') : invariant(false) : void 0; |
|
|
|
if (wasAt.type === 'REORDER') { |
|
var _newIndex = fromReorder({ |
|
isMovingForward: isMovingForward, |
|
isInHomeList: isInHomeList, |
|
location: wasAt.destination, |
|
insideDestination: insideDestination |
|
}); |
|
|
|
if (_newIndex == null) { |
|
return null; |
|
} |
|
|
|
return calculateReorderImpact({ |
|
draggable: draggable, |
|
insideDestination: insideDestination, |
|
destination: destination, |
|
viewport: viewport, |
|
last: previousImpact.displaced, |
|
displacedBy: previousImpact.displacedBy, |
|
index: _newIndex |
|
}); |
|
} |
|
|
|
var newIndex = fromCombine({ |
|
isMovingForward: isMovingForward, |
|
destination: destination, |
|
displaced: previousImpact.displaced, |
|
draggables: draggables, |
|
combine: wasAt.combine, |
|
afterCritical: afterCritical |
|
}); |
|
|
|
if (newIndex == null) { |
|
return null; |
|
} |
|
|
|
return calculateReorderImpact({ |
|
draggable: draggable, |
|
insideDestination: insideDestination, |
|
destination: destination, |
|
viewport: viewport, |
|
last: previousImpact.displaced, |
|
displacedBy: previousImpact.displacedBy, |
|
index: newIndex |
|
}); |
|
}); |
|
|
|
var getCombinedItemDisplacement = (function (_ref) { |
|
var displaced = _ref.displaced, |
|
afterCritical = _ref.afterCritical, |
|
combineWith = _ref.combineWith, |
|
displacedBy = _ref.displacedBy; |
|
var isDisplaced = Boolean(displaced.visible[combineWith] || displaced.invisible[combineWith]); |
|
|
|
if (didStartAfterCritical(combineWith, afterCritical)) { |
|
return isDisplaced ? origin : negate(displacedBy.point); |
|
} |
|
|
|
return isDisplaced ? displacedBy.point : origin; |
|
}); |
|
|
|
var whenCombining = (function (_ref) { |
|
var afterCritical = _ref.afterCritical, |
|
impact = _ref.impact, |
|
draggables = _ref.draggables; |
|
var combine = tryGetCombine(impact); |
|
!combine ? process.env.NODE_ENV !== "production" ? invariant(false) : invariant(false) : void 0; |
|
var combineWith = combine.draggableId; |
|
var center = draggables[combineWith].page.borderBox.center; |
|
var displaceBy = getCombinedItemDisplacement({ |
|
displaced: impact.displaced, |
|
afterCritical: afterCritical, |
|
combineWith: combineWith, |
|
displacedBy: impact.displacedBy |
|
}); |
|
return add(center, displaceBy); |
|
}); |
|
|
|
var distanceFromStartToBorderBoxCenter = function distanceFromStartToBorderBoxCenter(axis, box) { |
|
return box.margin[axis.start] + box.borderBox[axis.size] / 2; |
|
}; |
|
|
|
var distanceFromEndToBorderBoxCenter = function distanceFromEndToBorderBoxCenter(axis, box) { |
|
return box.margin[axis.end] + box.borderBox[axis.size] / 2; |
|
}; |
|
|
|
var getCrossAxisBorderBoxCenter = function getCrossAxisBorderBoxCenter(axis, target, isMoving) { |
|
return target[axis.crossAxisStart] + isMoving.margin[axis.crossAxisStart] + isMoving.borderBox[axis.crossAxisSize] / 2; |
|
}; |
|
|
|
var goAfter = function goAfter(_ref) { |
|
var axis = _ref.axis, |
|
moveRelativeTo = _ref.moveRelativeTo, |
|
isMoving = _ref.isMoving; |
|
return patch(axis.line, moveRelativeTo.marginBox[axis.end] + distanceFromStartToBorderBoxCenter(axis, isMoving), getCrossAxisBorderBoxCenter(axis, moveRelativeTo.marginBox, isMoving)); |
|
}; |
|
var goBefore = function goBefore(_ref2) { |
|
var axis = _ref2.axis, |
|
moveRelativeTo = _ref2.moveRelativeTo, |
|
isMoving = _ref2.isMoving; |
|
return patch(axis.line, moveRelativeTo.marginBox[axis.start] - distanceFromEndToBorderBoxCenter(axis, isMoving), getCrossAxisBorderBoxCenter(axis, moveRelativeTo.marginBox, isMoving)); |
|
}; |
|
var goIntoStart = function goIntoStart(_ref3) { |
|
var axis = _ref3.axis, |
|
moveInto = _ref3.moveInto, |
|
isMoving = _ref3.isMoving; |
|
return patch(axis.line, moveInto.contentBox[axis.start] + distanceFromStartToBorderBoxCenter(axis, isMoving), getCrossAxisBorderBoxCenter(axis, moveInto.contentBox, isMoving)); |
|
}; |
|
|
|
var whenReordering = (function (_ref) { |
|
var impact = _ref.impact, |
|
draggable = _ref.draggable, |
|
draggables = _ref.draggables, |
|
droppable = _ref.droppable, |
|
afterCritical = _ref.afterCritical; |
|
var insideDestination = getDraggablesInsideDroppable(droppable.descriptor.id, draggables); |
|
var draggablePage = draggable.page; |
|
var axis = droppable.axis; |
|
|
|
if (!insideDestination.length) { |
|
return goIntoStart({ |
|
axis: axis, |
|
moveInto: droppable.page, |
|
isMoving: draggablePage |
|
}); |
|
} |
|
|
|
var displaced = impact.displaced, |
|
displacedBy = impact.displacedBy; |
|
var closestAfter = displaced.all[0]; |
|
|
|
if (closestAfter) { |
|
var closest = draggables[closestAfter]; |
|
|
|
if (didStartAfterCritical(closestAfter, afterCritical)) { |
|
return goBefore({ |
|
axis: axis, |
|
moveRelativeTo: closest.page, |
|
isMoving: draggablePage |
|
}); |
|
} |
|
|
|
var withDisplacement = offset(closest.page, displacedBy.point); |
|
return goBefore({ |
|
axis: axis, |
|
moveRelativeTo: withDisplacement, |
|
isMoving: draggablePage |
|
}); |
|
} |
|
|
|
var last = insideDestination[insideDestination.length - 1]; |
|
|
|
if (last.descriptor.id === draggable.descriptor.id) { |
|
return draggablePage.borderBox.center; |
|
} |
|
|
|
if (didStartAfterCritical(last.descriptor.id, afterCritical)) { |
|
var page = offset(last.page, negate(afterCritical.displacedBy.point)); |
|
return goAfter({ |
|
axis: axis, |
|
moveRelativeTo: page, |
|
isMoving: draggablePage |
|
}); |
|
} |
|
|
|
return goAfter({ |
|
axis: axis, |
|
moveRelativeTo: last.page, |
|
isMoving: draggablePage |
|
}); |
|
}); |
|
|
|
var withDroppableDisplacement = (function (droppable, point) { |
|
var frame = droppable.frame; |
|
|
|
if (!frame) { |
|
return point; |
|
} |
|
|
|
return add(point, frame.scroll.diff.displacement); |
|
}); |
|
|
|
var getResultWithoutDroppableDisplacement = function getResultWithoutDroppableDisplacement(_ref) { |
|
var impact = _ref.impact, |
|
draggable = _ref.draggable, |
|
droppable = _ref.droppable, |
|
draggables = _ref.draggables, |
|
afterCritical = _ref.afterCritical; |
|
var original = draggable.page.borderBox.center; |
|
var at = impact.at; |
|
|
|
if (!droppable) { |
|
return original; |
|
} |
|
|
|
if (!at) { |
|
return original; |
|
} |
|
|
|
if (at.type === 'REORDER') { |
|
return whenReordering({ |
|
impact: impact, |
|
draggable: draggable, |
|
draggables: draggables, |
|
droppable: droppable, |
|
afterCritical: afterCritical |
|
}); |
|
} |
|
|
|
return whenCombining({ |
|
impact: impact, |
|
draggables: draggables, |
|
afterCritical: afterCritical |
|
}); |
|
}; |
|
|
|
var getPageBorderBoxCenterFromImpact = (function (args) { |
|
var withoutDisplacement = getResultWithoutDroppableDisplacement(args); |
|
var droppable = args.droppable; |
|
var withDisplacement = droppable ? withDroppableDisplacement(droppable, withoutDisplacement) : withoutDisplacement; |
|
return withDisplacement; |
|
}); |
|
|
|
var scrollViewport = (function (viewport, newScroll) { |
|
var diff = subtract(newScroll, viewport.scroll.initial); |
|
var displacement = negate(diff); |
|
var frame = getRect({ |
|
top: newScroll.y, |
|
bottom: newScroll.y + viewport.frame.height, |
|
left: newScroll.x, |
|
right: newScroll.x + viewport.frame.width |
|
}); |
|
var updated = { |
|
frame: frame, |
|
scroll: { |
|
initial: viewport.scroll.initial, |
|
max: viewport.scroll.max, |
|
current: newScroll, |
|
diff: { |
|
value: diff, |
|
displacement: displacement |
|
} |
|
} |
|
}; |
|
return updated; |
|
}); |
|
|
|
function getDraggables(ids, draggables) { |
|
return ids.map(function (id) { |
|
return draggables[id]; |
|
}); |
|
} |
|
|
|
function tryGetVisible(id, groups) { |
|
for (var i = 0; i < groups.length; i++) { |
|
var displacement = groups[i].visible[id]; |
|
|
|
if (displacement) { |
|
return displacement; |
|
} |
|
} |
|
|
|
return null; |
|
} |
|
|
|
var speculativelyIncrease = (function (_ref) { |
|
var impact = _ref.impact, |
|
viewport = _ref.viewport, |
|
destination = _ref.destination, |
|
draggables = _ref.draggables, |
|
maxScrollChange = _ref.maxScrollChange; |
|
var scrolledViewport = scrollViewport(viewport, add(viewport.scroll.current, maxScrollChange)); |
|
var scrolledDroppable = destination.frame ? scrollDroppable(destination, add(destination.frame.scroll.current, maxScrollChange)) : destination; |
|
var last = impact.displaced; |
|
var withViewportScroll = getDisplacementGroups({ |
|
afterDragging: getDraggables(last.all, draggables), |
|
destination: destination, |
|
displacedBy: impact.displacedBy, |
|
viewport: scrolledViewport.frame, |
|
last: last, |
|
forceShouldAnimate: false |
|
}); |
|
var withDroppableScroll = getDisplacementGroups({ |
|
afterDragging: getDraggables(last.all, draggables), |
|
destination: scrolledDroppable, |
|
displacedBy: impact.displacedBy, |
|
viewport: viewport.frame, |
|
last: last, |
|
forceShouldAnimate: false |
|
}); |
|
var invisible = {}; |
|
var visible = {}; |
|
var groups = [last, withViewportScroll, withDroppableScroll]; |
|
last.all.forEach(function (id) { |
|
var displacement = tryGetVisible(id, groups); |
|
|
|
if (displacement) { |
|
visible[id] = displacement; |
|
return; |
|
} |
|
|
|
invisible[id] = true; |
|
}); |
|
|
|
var newImpact = _extends({}, impact, { |
|
displaced: { |
|
all: last.all, |
|
invisible: invisible, |
|
visible: visible |
|
} |
|
}); |
|
|
|
return newImpact; |
|
}); |
|
|
|
var withViewportDisplacement = (function (viewport, point) { |
|
return add(viewport.scroll.diff.displacement, point); |
|
}); |
|
|
|
var getClientFromPageBorderBoxCenter = (function (_ref) { |
|
var pageBorderBoxCenter = _ref.pageBorderBoxCenter, |
|
draggable = _ref.draggable, |
|
viewport = _ref.viewport; |
|
var withoutPageScrollChange = withViewportDisplacement(viewport, pageBorderBoxCenter); |
|
var offset = subtract(withoutPageScrollChange, draggable.page.borderBox.center); |
|
return add(draggable.client.borderBox.center, offset); |
|
}); |
|
|
|
var isTotallyVisibleInNewLocation = (function (_ref) { |
|
var draggable = _ref.draggable, |
|
destination = _ref.destination, |
|
newPageBorderBoxCenter = _ref.newPageBorderBoxCenter, |
|
viewport = _ref.viewport, |
|
withDroppableDisplacement = _ref.withDroppableDisplacement, |
|
_ref$onlyOnMainAxis = _ref.onlyOnMainAxis, |
|
onlyOnMainAxis = _ref$onlyOnMainAxis === void 0 ? false : _ref$onlyOnMainAxis; |
|
var changeNeeded = subtract(newPageBorderBoxCenter, draggable.page.borderBox.center); |
|
var shifted = offsetByPosition(draggable.page.borderBox, changeNeeded); |
|
var args = { |
|
target: shifted, |
|
destination: destination, |
|
withDroppableDisplacement: withDroppableDisplacement, |
|
viewport: viewport |
|
}; |
|
return onlyOnMainAxis ? isTotallyVisibleOnAxis(args) : isTotallyVisible(args); |
|
}); |
|
|
|
var moveToNextPlace = (function (_ref) { |
|
var isMovingForward = _ref.isMovingForward, |
|
draggable = _ref.draggable, |
|
destination = _ref.destination, |
|
draggables = _ref.draggables, |
|
previousImpact = _ref.previousImpact, |
|
viewport = _ref.viewport, |
|
previousPageBorderBoxCenter = _ref.previousPageBorderBoxCenter, |
|
previousClientSelection = _ref.previousClientSelection, |
|
afterCritical = _ref.afterCritical; |
|
|
|
if (!destination.isEnabled) { |
|
return null; |
|
} |
|
|
|
var insideDestination = getDraggablesInsideDroppable(destination.descriptor.id, draggables); |
|
var isInHomeList = isHomeOf(draggable, destination); |
|
var impact = moveToNextCombine({ |
|
isMovingForward: isMovingForward, |
|
draggable: draggable, |
|
destination: destination, |
|
insideDestination: insideDestination, |
|
previousImpact: previousImpact |
|
}) || moveToNextIndex({ |
|
isMovingForward: isMovingForward, |
|
isInHomeList: isInHomeList, |
|
draggable: draggable, |
|
draggables: draggables, |
|
destination: destination, |
|
insideDestination: insideDestination, |
|
previousImpact: previousImpact, |
|
viewport: viewport, |
|
afterCritical: afterCritical |
|
}); |
|
|
|
if (!impact) { |
|
return null; |
|
} |
|
|
|
var pageBorderBoxCenter = getPageBorderBoxCenterFromImpact({ |
|
impact: impact, |
|
draggable: draggable, |
|
droppable: destination, |
|
draggables: draggables, |
|
afterCritical: afterCritical |
|
}); |
|
var isVisibleInNewLocation = isTotallyVisibleInNewLocation({ |
|
draggable: draggable, |
|
destination: destination, |
|
newPageBorderBoxCenter: pageBorderBoxCenter, |
|
viewport: viewport.frame, |
|
withDroppableDisplacement: false, |
|
onlyOnMainAxis: true |
|
}); |
|
|
|
if (isVisibleInNewLocation) { |
|
var clientSelection = getClientFromPageBorderBoxCenter({ |
|
pageBorderBoxCenter: pageBorderBoxCenter, |
|
draggable: draggable, |
|
viewport: viewport |
|
}); |
|
return { |
|
clientSelection: clientSelection, |
|
impact: impact, |
|
scrollJumpRequest: null |
|
}; |
|
} |
|
|
|
var distance = subtract(pageBorderBoxCenter, previousPageBorderBoxCenter); |
|
var cautious = speculativelyIncrease({ |
|
impact: impact, |
|
viewport: viewport, |
|
destination: destination, |
|
draggables: draggables, |
|
maxScrollChange: distance |
|
}); |
|
return { |
|
clientSelection: previousClientSelection, |
|
impact: cautious, |
|
scrollJumpRequest: distance |
|
}; |
|
}); |
|
|
|
var getKnownActive = function getKnownActive(droppable) { |
|
var rect = droppable.subject.active; |
|
!rect ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot get clipped area from droppable') : invariant(false) : void 0; |
|
return rect; |
|
}; |
|
|
|
var getBestCrossAxisDroppable = (function (_ref) { |
|
var isMovingForward = _ref.isMovingForward, |
|
pageBorderBoxCenter = _ref.pageBorderBoxCenter, |
|
source = _ref.source, |
|
droppables = _ref.droppables, |
|
viewport = _ref.viewport; |
|
var active = source.subject.active; |
|
|
|
if (!active) { |
|
return null; |
|
} |
|
|
|
var axis = source.axis; |
|
var isBetweenSourceClipped = isWithin(active[axis.start], active[axis.end]); |
|
var candidates = toDroppableList(droppables).filter(function (droppable) { |
|
return droppable !== source; |
|
}).filter(function (droppable) { |
|
return droppable.isEnabled; |
|
}).filter(function (droppable) { |
|
return Boolean(droppable.subject.active); |
|
}).filter(function (droppable) { |
|
return isPartiallyVisibleThroughFrame(viewport.frame)(getKnownActive(droppable)); |
|
}).filter(function (droppable) { |
|
var activeOfTarget = getKnownActive(droppable); |
|
|
|
if (isMovingForward) { |
|
return active[axis.crossAxisEnd] < activeOfTarget[axis.crossAxisEnd]; |
|
} |
|
|
|
return activeOfTarget[axis.crossAxisStart] < active[axis.crossAxisStart]; |
|
}).filter(function (droppable) { |
|
var activeOfTarget = getKnownActive(droppable); |
|
var isBetweenDestinationClipped = isWithin(activeOfTarget[axis.start], activeOfTarget[axis.end]); |
|
return isBetweenSourceClipped(activeOfTarget[axis.start]) || isBetweenSourceClipped(activeOfTarget[axis.end]) || isBetweenDestinationClipped(active[axis.start]) || isBetweenDestinationClipped(active[axis.end]); |
|
}).sort(function (a, b) { |
|
var first = getKnownActive(a)[axis.crossAxisStart]; |
|
var second = getKnownActive(b)[axis.crossAxisStart]; |
|
|
|
if (isMovingForward) { |
|
return first - second; |
|
} |
|
|
|
return second - first; |
|
}).filter(function (droppable, index, array) { |
|
return getKnownActive(droppable)[axis.crossAxisStart] === getKnownActive(array[0])[axis.crossAxisStart]; |
|
}); |
|
|
|
if (!candidates.length) { |
|
return null; |
|
} |
|
|
|
if (candidates.length === 1) { |
|
return candidates[0]; |
|
} |
|
|
|
var contains = candidates.filter(function (droppable) { |
|
var isWithinDroppable = isWithin(getKnownActive(droppable)[axis.start], getKnownActive(droppable)[axis.end]); |
|
return isWithinDroppable(pageBorderBoxCenter[axis.line]); |
|
}); |
|
|
|
if (contains.length === 1) { |
|
return contains[0]; |
|
} |
|
|
|
if (contains.length > 1) { |
|
return contains.sort(function (a, b) { |
|
return getKnownActive(a)[axis.start] - getKnownActive(b)[axis.start]; |
|
})[0]; |
|
} |
|
|
|
return candidates.sort(function (a, b) { |
|
var first = closest(pageBorderBoxCenter, getCorners(getKnownActive(a))); |
|
var second = closest(pageBorderBoxCenter, getCorners(getKnownActive(b))); |
|
|
|
if (first !== second) { |
|
return first - second; |
|
} |
|
|
|
return getKnownActive(a)[axis.start] - getKnownActive(b)[axis.start]; |
|
})[0]; |
|
}); |
|
|
|
var getCurrentPageBorderBoxCenter = function getCurrentPageBorderBoxCenter(draggable, afterCritical) { |
|
var original = draggable.page.borderBox.center; |
|
return didStartAfterCritical(draggable.descriptor.id, afterCritical) ? subtract(original, afterCritical.displacedBy.point) : original; |
|
}; |
|
var getCurrentPageBorderBox = function getCurrentPageBorderBox(draggable, afterCritical) { |
|
var original = draggable.page.borderBox; |
|
return didStartAfterCritical(draggable.descriptor.id, afterCritical) ? offsetByPosition(original, negate(afterCritical.displacedBy.point)) : original; |
|
}; |
|
|
|
var getClosestDraggable = (function (_ref) { |
|
var pageBorderBoxCenter = _ref.pageBorderBoxCenter, |
|
viewport = _ref.viewport, |
|
destination = _ref.destination, |
|
insideDestination = _ref.insideDestination, |
|
afterCritical = _ref.afterCritical; |
|
var sorted = insideDestination.filter(function (draggable) { |
|
return isTotallyVisible({ |
|
target: getCurrentPageBorderBox(draggable, afterCritical), |
|
destination: destination, |
|
viewport: viewport.frame, |
|
withDroppableDisplacement: true |
|
}); |
|
}).sort(function (a, b) { |
|
var distanceToA = distance(pageBorderBoxCenter, withDroppableDisplacement(destination, getCurrentPageBorderBoxCenter(a, afterCritical))); |
|
var distanceToB = distance(pageBorderBoxCenter, withDroppableDisplacement(destination, getCurrentPageBorderBoxCenter(b, afterCritical))); |
|
|
|
if (distanceToA < distanceToB) { |
|
return -1; |
|
} |
|
|
|
if (distanceToB < distanceToA) { |
|
return 1; |
|
} |
|
|
|
return a.descriptor.index - b.descriptor.index; |
|
}); |
|
return sorted[0] || null; |
|
}); |
|
|
|
var getDisplacedBy = memoizeOne(function getDisplacedBy(axis, displaceBy) { |
|
var displacement = displaceBy[axis.line]; |
|
return { |
|
value: displacement, |
|
point: patch(axis.line, displacement) |
|
}; |
|
}); |
|
|
|
var getRequiredGrowthForPlaceholder = function getRequiredGrowthForPlaceholder(droppable, placeholderSize, draggables) { |
|
var axis = droppable.axis; |
|
|
|
if (droppable.descriptor.mode === 'virtual') { |
|
return patch(axis.line, placeholderSize[axis.line]); |
|
} |
|
|
|
var availableSpace = droppable.subject.page.contentBox[axis.size]; |
|
var insideDroppable = getDraggablesInsideDroppable(droppable.descriptor.id, draggables); |
|
var spaceUsed = insideDroppable.reduce(function (sum, dimension) { |
|
return sum + dimension.client.marginBox[axis.size]; |
|
}, 0); |
|
var requiredSpace = spaceUsed + placeholderSize[axis.line]; |
|
var needsToGrowBy = requiredSpace - availableSpace; |
|
|
|
if (needsToGrowBy <= 0) { |
|
return null; |
|
} |
|
|
|
return patch(axis.line, needsToGrowBy); |
|
}; |
|
|
|
var withMaxScroll = function withMaxScroll(frame, max) { |
|
return _extends({}, frame, { |
|
scroll: _extends({}, frame.scroll, { |
|
max: max |
|
}) |
|
}); |
|
}; |
|
|
|
var addPlaceholder = function addPlaceholder(droppable, draggable, draggables) { |
|
var frame = droppable.frame; |
|
!!isHomeOf(draggable, droppable) ? process.env.NODE_ENV !== "production" ? invariant(false, 'Should not add placeholder space to home list') : invariant(false) : void 0; |
|
!!droppable.subject.withPlaceholder ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot add placeholder size to a subject when it already has one') : invariant(false) : void 0; |
|
var placeholderSize = getDisplacedBy(droppable.axis, draggable.displaceBy).point; |
|
var requiredGrowth = getRequiredGrowthForPlaceholder(droppable, placeholderSize, draggables); |
|
var added = { |
|
placeholderSize: placeholderSize, |
|
increasedBy: requiredGrowth, |
|
oldFrameMaxScroll: droppable.frame ? droppable.frame.scroll.max : null |
|
}; |
|
|
|
if (!frame) { |
|
var _subject = getSubject({ |
|
page: droppable.subject.page, |
|
withPlaceholder: added, |
|
axis: droppable.axis, |
|
frame: droppable.frame |
|
}); |
|
|
|
return _extends({}, droppable, { |
|
subject: _subject |
|
}); |
|
} |
|
|
|
var maxScroll = requiredGrowth ? add(frame.scroll.max, requiredGrowth) : frame.scroll.max; |
|
var newFrame = withMaxScroll(frame, maxScroll); |
|
var subject = getSubject({ |
|
page: droppable.subject.page, |
|
withPlaceholder: added, |
|
axis: droppable.axis, |
|
frame: newFrame |
|
}); |
|
return _extends({}, droppable, { |
|
subject: subject, |
|
frame: newFrame |
|
}); |
|
}; |
|
var removePlaceholder = function removePlaceholder(droppable) { |
|
var added = droppable.subject.withPlaceholder; |
|
!added ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot remove placeholder form subject when there was none') : invariant(false) : void 0; |
|
var frame = droppable.frame; |
|
|
|
if (!frame) { |
|
var _subject2 = getSubject({ |
|
page: droppable.subject.page, |
|
axis: droppable.axis, |
|
frame: null, |
|
withPlaceholder: null |
|
}); |
|
|
|
return _extends({}, droppable, { |
|
subject: _subject2 |
|
}); |
|
} |
|
|
|
var oldMaxScroll = added.oldFrameMaxScroll; |
|
!oldMaxScroll ? process.env.NODE_ENV !== "production" ? invariant(false, 'Expected droppable with frame to have old max frame scroll when removing placeholder') : invariant(false) : void 0; |
|
var newFrame = withMaxScroll(frame, oldMaxScroll); |
|
var subject = getSubject({ |
|
page: droppable.subject.page, |
|
axis: droppable.axis, |
|
frame: newFrame, |
|
withPlaceholder: null |
|
}); |
|
return _extends({}, droppable, { |
|
subject: subject, |
|
frame: newFrame |
|
}); |
|
}; |
|
|
|
var moveToNewDroppable = (function (_ref) { |
|
var previousPageBorderBoxCenter = _ref.previousPageBorderBoxCenter, |
|
moveRelativeTo = _ref.moveRelativeTo, |
|
insideDestination = _ref.insideDestination, |
|
draggable = _ref.draggable, |
|
draggables = _ref.draggables, |
|
destination = _ref.destination, |
|
viewport = _ref.viewport, |
|
afterCritical = _ref.afterCritical; |
|
|
|
if (!moveRelativeTo) { |
|
if (insideDestination.length) { |
|
return null; |
|
} |
|
|
|
var proposed = { |
|
displaced: emptyGroups, |
|
displacedBy: noDisplacedBy, |
|
at: { |
|
type: 'REORDER', |
|
destination: { |
|
droppableId: destination.descriptor.id, |
|
index: 0 |
|
} |
|
} |
|
}; |
|
var proposedPageBorderBoxCenter = getPageBorderBoxCenterFromImpact({ |
|
impact: proposed, |
|
draggable: draggable, |
|
droppable: destination, |
|
draggables: draggables, |
|
afterCritical: afterCritical |
|
}); |
|
var withPlaceholder = isHomeOf(draggable, destination) ? destination : addPlaceholder(destination, draggable, draggables); |
|
var isVisibleInNewLocation = isTotallyVisibleInNewLocation({ |
|
draggable: draggable, |
|
destination: withPlaceholder, |
|
newPageBorderBoxCenter: proposedPageBorderBoxCenter, |
|
viewport: viewport.frame, |
|
withDroppableDisplacement: false, |
|
onlyOnMainAxis: true |
|
}); |
|
return isVisibleInNewLocation ? proposed : null; |
|
} |
|
|
|
var isGoingBeforeTarget = Boolean(previousPageBorderBoxCenter[destination.axis.line] <= moveRelativeTo.page.borderBox.center[destination.axis.line]); |
|
|
|
var proposedIndex = function () { |
|
var relativeTo = moveRelativeTo.descriptor.index; |
|
|
|
if (moveRelativeTo.descriptor.id === draggable.descriptor.id) { |
|
return relativeTo; |
|
} |
|
|
|
if (isGoingBeforeTarget) { |
|
return relativeTo; |
|
} |
|
|
|
return relativeTo + 1; |
|
}(); |
|
|
|
var displacedBy = getDisplacedBy(destination.axis, draggable.displaceBy); |
|
return calculateReorderImpact({ |
|
draggable: draggable, |
|
insideDestination: insideDestination, |
|
destination: destination, |
|
viewport: viewport, |
|
displacedBy: displacedBy, |
|
last: emptyGroups, |
|
index: proposedIndex |
|
}); |
|
}); |
|
|
|
var moveCrossAxis = (function (_ref) { |
|
var isMovingForward = _ref.isMovingForward, |
|
previousPageBorderBoxCenter = _ref.previousPageBorderBoxCenter, |
|
draggable = _ref.draggable, |
|
isOver = _ref.isOver, |
|
draggables = _ref.draggables, |
|
droppables = _ref.droppables, |
|
viewport = _ref.viewport, |
|
afterCritical = _ref.afterCritical; |
|
var destination = getBestCrossAxisDroppable({ |
|
isMovingForward: isMovingForward, |
|
pageBorderBoxCenter: previousPageBorderBoxCenter, |
|
source: isOver, |
|
droppables: droppables, |
|
viewport: viewport |
|
}); |
|
|
|
if (!destination) { |
|
return null; |
|
} |
|
|
|
var insideDestination = getDraggablesInsideDroppable(destination.descriptor.id, draggables); |
|
var moveRelativeTo = getClosestDraggable({ |
|
pageBorderBoxCenter: previousPageBorderBoxCenter, |
|
viewport: viewport, |
|
destination: destination, |
|
insideDestination: insideDestination, |
|
afterCritical: afterCritical |
|
}); |
|
var impact = moveToNewDroppable({ |
|
previousPageBorderBoxCenter: previousPageBorderBoxCenter, |
|
destination: destination, |
|
draggable: draggable, |
|
draggables: draggables, |
|
moveRelativeTo: moveRelativeTo, |
|
insideDestination: insideDestination, |
|
viewport: viewport, |
|
afterCritical: afterCritical |
|
}); |
|
|
|
if (!impact) { |
|
return null; |
|
} |
|
|
|
var pageBorderBoxCenter = getPageBorderBoxCenterFromImpact({ |
|
impact: impact, |
|
draggable: draggable, |
|
droppable: destination, |
|
draggables: draggables, |
|
afterCritical: afterCritical |
|
}); |
|
var clientSelection = getClientFromPageBorderBoxCenter({ |
|
pageBorderBoxCenter: pageBorderBoxCenter, |
|
draggable: draggable, |
|
viewport: viewport |
|
}); |
|
return { |
|
clientSelection: clientSelection, |
|
impact: impact, |
|
scrollJumpRequest: null |
|
}; |
|
}); |
|
|
|
var whatIsDraggedOver = (function (impact) { |
|
var at = impact.at; |
|
|
|
if (!at) { |
|
return null; |
|
} |
|
|
|
if (at.type === 'REORDER') { |
|
return at.destination.droppableId; |
|
} |
|
|
|
return at.combine.droppableId; |
|
}); |
|
|
|
var getDroppableOver = function getDroppableOver(impact, droppables) { |
|
var id = whatIsDraggedOver(impact); |
|
return id ? droppables[id] : null; |
|
}; |
|
|
|
var moveInDirection = (function (_ref) { |
|
var state = _ref.state, |
|
type = _ref.type; |
|
var isActuallyOver = getDroppableOver(state.impact, state.dimensions.droppables); |
|
var isMainAxisMovementAllowed = Boolean(isActuallyOver); |
|
var home = state.dimensions.droppables[state.critical.droppable.id]; |
|
var isOver = isActuallyOver || home; |
|
var direction = isOver.axis.direction; |
|
var isMovingOnMainAxis = direction === 'vertical' && (type === 'MOVE_UP' || type === 'MOVE_DOWN') || direction === 'horizontal' && (type === 'MOVE_LEFT' || type === 'MOVE_RIGHT'); |
|
|
|
if (isMovingOnMainAxis && !isMainAxisMovementAllowed) { |
|
return null; |
|
} |
|
|
|
var isMovingForward = type === 'MOVE_DOWN' || type === 'MOVE_RIGHT'; |
|
var draggable = state.dimensions.draggables[state.critical.draggable.id]; |
|
var previousPageBorderBoxCenter = state.current.page.borderBoxCenter; |
|
var _state$dimensions = state.dimensions, |
|
draggables = _state$dimensions.draggables, |
|
droppables = _state$dimensions.droppables; |
|
return isMovingOnMainAxis ? moveToNextPlace({ |
|
isMovingForward: isMovingForward, |
|
previousPageBorderBoxCenter: previousPageBorderBoxCenter, |
|
draggable: draggable, |
|
destination: isOver, |
|
draggables: draggables, |
|
viewport: state.viewport, |
|
previousClientSelection: state.current.client.selection, |
|
previousImpact: state.impact, |
|
afterCritical: state.afterCritical |
|
}) : moveCrossAxis({ |
|
isMovingForward: isMovingForward, |
|
previousPageBorderBoxCenter: previousPageBorderBoxCenter, |
|
draggable: draggable, |
|
isOver: isOver, |
|
draggables: draggables, |
|
droppables: droppables, |
|
viewport: state.viewport, |
|
afterCritical: state.afterCritical |
|
}); |
|
}); |
|
|
|
function isMovementAllowed(state) { |
|
return state.phase === 'DRAGGING' || state.phase === 'COLLECTING'; |
|
} |
|
|
|
function isPositionInFrame(frame) { |
|
var isWithinVertical = isWithin(frame.top, frame.bottom); |
|
var isWithinHorizontal = isWithin(frame.left, frame.right); |
|
return function run(point) { |
|
return isWithinVertical(point.y) && isWithinHorizontal(point.x); |
|
}; |
|
} |
|
|
|
function getHasOverlap(first, second) { |
|
return first.left < second.right && first.right > second.left && first.top < second.bottom && first.bottom > second.top; |
|
} |
|
|
|
function getFurthestAway(_ref) { |
|
var pageBorderBox = _ref.pageBorderBox, |
|
draggable = _ref.draggable, |
|
candidates = _ref.candidates; |
|
var startCenter = draggable.page.borderBox.center; |
|
var sorted = candidates.map(function (candidate) { |
|
var axis = candidate.axis; |
|
var target = patch(candidate.axis.line, pageBorderBox.center[axis.line], candidate.page.borderBox.center[axis.crossAxisLine]); |
|
return { |
|
id: candidate.descriptor.id, |
|
distance: distance(startCenter, target) |
|
}; |
|
}).sort(function (a, b) { |
|
return b.distance - a.distance; |
|
}); |
|
return sorted[0] ? sorted[0].id : null; |
|
} |
|
|
|
function getDroppableOver$1(_ref2) { |
|
var pageBorderBox = _ref2.pageBorderBox, |
|
draggable = _ref2.draggable, |
|
droppables = _ref2.droppables; |
|
var candidates = toDroppableList(droppables).filter(function (item) { |
|
if (!item.isEnabled) { |
|
return false; |
|
} |
|
|
|
var active = item.subject.active; |
|
|
|
if (!active) { |
|
return false; |
|
} |
|
|
|
if (!getHasOverlap(pageBorderBox, active)) { |
|
return false; |
|
} |
|
|
|
if (isPositionInFrame(active)(pageBorderBox.center)) { |
|
return true; |
|
} |
|
|
|
var axis = item.axis; |
|
var childCenter = active.center[axis.crossAxisLine]; |
|
var crossAxisStart = pageBorderBox[axis.crossAxisStart]; |
|
var crossAxisEnd = pageBorderBox[axis.crossAxisEnd]; |
|
var isContained = isWithin(active[axis.crossAxisStart], active[axis.crossAxisEnd]); |
|
var isStartContained = isContained(crossAxisStart); |
|
var isEndContained = isContained(crossAxisEnd); |
|
|
|
if (!isStartContained && !isEndContained) { |
|
return true; |
|
} |
|
|
|
if (isStartContained) { |
|
return crossAxisStart < childCenter; |
|
} |
|
|
|
return crossAxisEnd > childCenter; |
|
}); |
|
|
|
if (!candidates.length) { |
|
return null; |
|
} |
|
|
|
if (candidates.length === 1) { |
|
return candidates[0].descriptor.id; |
|
} |
|
|
|
return getFurthestAway({ |
|
pageBorderBox: pageBorderBox, |
|
draggable: draggable, |
|
candidates: candidates |
|
}); |
|
} |
|
|
|
var offsetRectByPosition = function offsetRectByPosition(rect, point) { |
|
return getRect(offsetByPosition(rect, point)); |
|
}; |
|
|
|
var withDroppableScroll = (function (droppable, area) { |
|
var frame = droppable.frame; |
|
|
|
if (!frame) { |
|
return area; |
|
} |
|
|
|
return offsetRectByPosition(area, frame.scroll.diff.value); |
|
}); |
|
|
|
function getIsDisplaced(_ref) { |
|
var displaced = _ref.displaced, |
|
id = _ref.id; |
|
return Boolean(displaced.visible[id] || displaced.invisible[id]); |
|
} |
|
|
|
function atIndex(_ref) { |
|
var draggable = _ref.draggable, |
|
closest = _ref.closest, |
|
inHomeList = _ref.inHomeList; |
|
|
|
if (!closest) { |
|
return null; |
|
} |
|
|
|
if (!inHomeList) { |
|
return closest.descriptor.index; |
|
} |
|
|
|
if (closest.descriptor.index > draggable.descriptor.index) { |
|
return closest.descriptor.index - 1; |
|
} |
|
|
|
return closest.descriptor.index; |
|
} |
|
|
|
var getReorderImpact = (function (_ref2) { |
|
var targetRect = _ref2.pageBorderBoxWithDroppableScroll, |
|
draggable = _ref2.draggable, |
|
destination = _ref2.destination, |
|
insideDestination = _ref2.insideDestination, |
|
last = _ref2.last, |
|
viewport = _ref2.viewport, |
|
afterCritical = _ref2.afterCritical; |
|
var axis = destination.axis; |
|
var displacedBy = getDisplacedBy(destination.axis, draggable.displaceBy); |
|
var displacement = displacedBy.value; |
|
var targetStart = targetRect[axis.start]; |
|
var targetEnd = targetRect[axis.end]; |
|
var withoutDragging = removeDraggableFromList(draggable, insideDestination); |
|
var closest = find(withoutDragging, function (child) { |
|
var id = child.descriptor.id; |
|
var childCenter = child.page.borderBox.center[axis.line]; |
|
var didStartAfterCritical$1 = didStartAfterCritical(id, afterCritical); |
|
var isDisplaced = getIsDisplaced({ |
|
displaced: last, |
|
id: id |
|
}); |
|
|
|
if (didStartAfterCritical$1) { |
|
if (isDisplaced) { |
|
return targetEnd <= childCenter; |
|
} |
|
|
|
return targetStart < childCenter - displacement; |
|
} |
|
|
|
if (isDisplaced) { |
|
return targetEnd <= childCenter + displacement; |
|
} |
|
|
|
return targetStart < childCenter; |
|
}); |
|
var newIndex = atIndex({ |
|
draggable: draggable, |
|
closest: closest, |
|
inHomeList: isHomeOf(draggable, destination) |
|
}); |
|
return calculateReorderImpact({ |
|
draggable: draggable, |
|
insideDestination: insideDestination, |
|
destination: destination, |
|
viewport: viewport, |
|
last: last, |
|
displacedBy: displacedBy, |
|
index: newIndex |
|
}); |
|
}); |
|
|
|
var combineThresholdDivisor = 4; |
|
var getCombineImpact = (function (_ref) { |
|
var draggable = _ref.draggable, |
|
targetRect = _ref.pageBorderBoxWithDroppableScroll, |
|
previousImpact = _ref.previousImpact, |
|
destination = _ref.destination, |
|
insideDestination = _ref.insideDestination, |
|
afterCritical = _ref.afterCritical; |
|
|
|
if (!destination.isCombineEnabled) { |
|
return null; |
|
} |
|
|
|
var axis = destination.axis; |
|
var displacedBy = getDisplacedBy(destination.axis, draggable.displaceBy); |
|
var displacement = displacedBy.value; |
|
var targetStart = targetRect[axis.start]; |
|
var targetEnd = targetRect[axis.end]; |
|
var withoutDragging = removeDraggableFromList(draggable, insideDestination); |
|
var combineWith = find(withoutDragging, function (child) { |
|
var id = child.descriptor.id; |
|
var childRect = child.page.borderBox; |
|
var childSize = childRect[axis.size]; |
|
var threshold = childSize / combineThresholdDivisor; |
|
var didStartAfterCritical$1 = didStartAfterCritical(id, afterCritical); |
|
var isDisplaced = getIsDisplaced({ |
|
displaced: previousImpact.displaced, |
|
id: id |
|
}); |
|
|
|
if (didStartAfterCritical$1) { |
|
if (isDisplaced) { |
|
return targetEnd > childRect[axis.start] + threshold && targetEnd < childRect[axis.end] - threshold; |
|
} |
|
|
|
return targetStart > childRect[axis.start] - displacement + threshold && targetStart < childRect[axis.end] - displacement - threshold; |
|
} |
|
|
|
if (isDisplaced) { |
|
return targetEnd > childRect[axis.start] + displacement + threshold && targetEnd < childRect[axis.end] + displacement - threshold; |
|
} |
|
|
|
return targetStart > childRect[axis.start] + threshold && targetStart < childRect[axis.end] - threshold; |
|
}); |
|
|
|
if (!combineWith) { |
|
return null; |
|
} |
|
|
|
var impact = { |
|
displacedBy: displacedBy, |
|
displaced: previousImpact.displaced, |
|
at: { |
|
type: 'COMBINE', |
|
combine: { |
|
draggableId: combineWith.descriptor.id, |
|
droppableId: destination.descriptor.id |
|
} |
|
} |
|
}; |
|
return impact; |
|
}); |
|
|
|
var getDragImpact = (function (_ref) { |
|
var pageOffset = _ref.pageOffset, |
|
draggable = _ref.draggable, |
|
draggables = _ref.draggables, |
|
droppables = _ref.droppables, |
|
previousImpact = _ref.previousImpact, |
|
viewport = _ref.viewport, |
|
afterCritical = _ref.afterCritical; |
|
var pageBorderBox = offsetRectByPosition(draggable.page.borderBox, pageOffset); |
|
var destinationId = getDroppableOver$1({ |
|
pageBorderBox: pageBorderBox, |
|
draggable: draggable, |
|
droppables: droppables |
|
}); |
|
|
|
if (!destinationId) { |
|
return noImpact; |
|
} |
|
|
|
var destination = droppables[destinationId]; |
|
var insideDestination = getDraggablesInsideDroppable(destination.descriptor.id, draggables); |
|
var pageBorderBoxWithDroppableScroll = withDroppableScroll(destination, pageBorderBox); |
|
return getCombineImpact({ |
|
pageBorderBoxWithDroppableScroll: pageBorderBoxWithDroppableScroll, |
|
draggable: draggable, |
|
previousImpact: previousImpact, |
|
destination: destination, |
|
insideDestination: insideDestination, |
|
afterCritical: afterCritical |
|
}) || getReorderImpact({ |
|
pageBorderBoxWithDroppableScroll: pageBorderBoxWithDroppableScroll, |
|
draggable: draggable, |
|
destination: destination, |
|
insideDestination: insideDestination, |
|
last: previousImpact.displaced, |
|
viewport: viewport, |
|
afterCritical: afterCritical |
|
}); |
|
}); |
|
|
|
var patchDroppableMap = (function (droppables, updated) { |
|
var _extends2; |
|
|
|
return _extends({}, droppables, (_extends2 = {}, _extends2[updated.descriptor.id] = updated, _extends2)); |
|
}); |
|
|
|
var clearUnusedPlaceholder = function clearUnusedPlaceholder(_ref) { |
|
var previousImpact = _ref.previousImpact, |
|
impact = _ref.impact, |
|
droppables = _ref.droppables; |
|
var last = whatIsDraggedOver(previousImpact); |
|
var now = whatIsDraggedOver(impact); |
|
|
|
if (!last) { |
|
return droppables; |
|
} |
|
|
|
if (last === now) { |
|
return droppables; |
|
} |
|
|
|
var lastDroppable = droppables[last]; |
|
|
|
if (!lastDroppable.subject.withPlaceholder) { |
|
return droppables; |
|
} |
|
|
|
var updated = removePlaceholder(lastDroppable); |
|
return patchDroppableMap(droppables, updated); |
|
}; |
|
|
|
var recomputePlaceholders = (function (_ref2) { |
|
var draggable = _ref2.draggable, |
|
draggables = _ref2.draggables, |
|
droppables = _ref2.droppables, |
|
previousImpact = _ref2.previousImpact, |
|
impact = _ref2.impact; |
|
var cleaned = clearUnusedPlaceholder({ |
|
previousImpact: previousImpact, |
|
impact: impact, |
|
droppables: droppables |
|
}); |
|
var isOver = whatIsDraggedOver(impact); |
|
|
|
if (!isOver) { |
|
return cleaned; |
|
} |
|
|
|
var droppable = droppables[isOver]; |
|
|
|
if (isHomeOf(draggable, droppable)) { |
|
return cleaned; |
|
} |
|
|
|
if (droppable.subject.withPlaceholder) { |
|
return cleaned; |
|
} |
|
|
|
var patched = addPlaceholder(droppable, draggable, draggables); |
|
return patchDroppableMap(cleaned, patched); |
|
}); |
|
|
|
var update = (function (_ref) { |
|
var state = _ref.state, |
|
forcedClientSelection = _ref.clientSelection, |
|
forcedDimensions = _ref.dimensions, |
|
forcedViewport = _ref.viewport, |
|
forcedImpact = _ref.impact, |
|
scrollJumpRequest = _ref.scrollJumpRequest; |
|
var viewport = forcedViewport || state.viewport; |
|
var dimensions = forcedDimensions || state.dimensions; |
|
var clientSelection = forcedClientSelection || state.current.client.selection; |
|
var offset = subtract(clientSelection, state.initial.client.selection); |
|
var client = { |
|
offset: offset, |
|
selection: clientSelection, |
|
borderBoxCenter: add(state.initial.client.borderBoxCenter, offset) |
|
}; |
|
var page = { |
|
selection: add(client.selection, viewport.scroll.current), |
|
borderBoxCenter: add(client.borderBoxCenter, viewport.scroll.current), |
|
offset: add(client.offset, viewport.scroll.diff.value) |
|
}; |
|
var current = { |
|
client: client, |
|
page: page |
|
}; |
|
|
|
if (state.phase === 'COLLECTING') { |
|
return _extends({ |
|
phase: 'COLLECTING' |
|
}, state, { |
|
dimensions: dimensions, |
|
viewport: viewport, |
|
current: current |
|
}); |
|
} |
|
|
|
var draggable = dimensions.draggables[state.critical.draggable.id]; |
|
var newImpact = forcedImpact || getDragImpact({ |
|
pageOffset: page.offset, |
|
draggable: draggable, |
|
draggables: dimensions.draggables, |
|
droppables: dimensions.droppables, |
|
previousImpact: state.impact, |
|
viewport: viewport, |
|
afterCritical: state.afterCritical |
|
}); |
|
var withUpdatedPlaceholders = recomputePlaceholders({ |
|
draggable: draggable, |
|
impact: newImpact, |
|
previousImpact: state.impact, |
|
draggables: dimensions.draggables, |
|
droppables: dimensions.droppables |
|
}); |
|
|
|
var result = _extends({}, state, { |
|
current: current, |
|
dimensions: { |
|
draggables: dimensions.draggables, |
|
droppables: withUpdatedPlaceholders |
|
}, |
|
impact: newImpact, |
|
viewport: viewport, |
|
scrollJumpRequest: scrollJumpRequest || null, |
|
forceShouldAnimate: scrollJumpRequest ? false : null |
|
}); |
|
|
|
return result; |
|
}); |
|
|
|
function getDraggables$1(ids, draggables) { |
|
return ids.map(function (id) { |
|
return draggables[id]; |
|
}); |
|
} |
|
|
|
var recompute = (function (_ref) { |
|
var impact = _ref.impact, |
|
viewport = _ref.viewport, |
|
draggables = _ref.draggables, |
|
destination = _ref.destination, |
|
forceShouldAnimate = _ref.forceShouldAnimate; |
|
var last = impact.displaced; |
|
var afterDragging = getDraggables$1(last.all, draggables); |
|
var displaced = getDisplacementGroups({ |
|
afterDragging: afterDragging, |
|
destination: destination, |
|
displacedBy: impact.displacedBy, |
|
viewport: viewport.frame, |
|
forceShouldAnimate: forceShouldAnimate, |
|
last: last |
|
}); |
|
return _extends({}, impact, { |
|
displaced: displaced |
|
}); |
|
}); |
|
|
|
var getClientBorderBoxCenter = (function (_ref) { |
|
var impact = _ref.impact, |
|
draggable = _ref.draggable, |
|
droppable = _ref.droppable, |
|
draggables = _ref.draggables, |
|
viewport = _ref.viewport, |
|
afterCritical = _ref.afterCritical; |
|
var pageBorderBoxCenter = getPageBorderBoxCenterFromImpact({ |
|
impact: impact, |
|
draggable: draggable, |
|
draggables: draggables, |
|
droppable: droppable, |
|
afterCritical: afterCritical |
|
}); |
|
return getClientFromPageBorderBoxCenter({ |
|
pageBorderBoxCenter: pageBorderBoxCenter, |
|
draggable: draggable, |
|
viewport: viewport |
|
}); |
|
}); |
|
|
|
var refreshSnap = (function (_ref) { |
|
var state = _ref.state, |
|
forcedDimensions = _ref.dimensions, |
|
forcedViewport = _ref.viewport; |
|
!(state.movementMode === 'SNAP') ? process.env.NODE_ENV !== "production" ? invariant(false) : invariant(false) : void 0; |
|
var needsVisibilityCheck = state.impact; |
|
var viewport = forcedViewport || state.viewport; |
|
var dimensions = forcedDimensions || state.dimensions; |
|
var draggables = dimensions.draggables, |
|
droppables = dimensions.droppables; |
|
var draggable = draggables[state.critical.draggable.id]; |
|
var isOver = whatIsDraggedOver(needsVisibilityCheck); |
|
!isOver ? process.env.NODE_ENV !== "production" ? invariant(false, 'Must be over a destination in SNAP movement mode') : invariant(false) : void 0; |
|
var destination = droppables[isOver]; |
|
var impact = recompute({ |
|
impact: needsVisibilityCheck, |
|
viewport: viewport, |
|
destination: destination, |
|
draggables: draggables |
|
}); |
|
var clientSelection = getClientBorderBoxCenter({ |
|
impact: impact, |
|
draggable: draggable, |
|
droppable: destination, |
|
draggables: draggables, |
|
viewport: viewport, |
|
afterCritical: state.afterCritical |
|
}); |
|
return update({ |
|
impact: impact, |
|
clientSelection: clientSelection, |
|
state: state, |
|
dimensions: dimensions, |
|
viewport: viewport |
|
}); |
|
}); |
|
|
|
var getHomeLocation = (function (descriptor) { |
|
return { |
|
index: descriptor.index, |
|
droppableId: descriptor.droppableId |
|
}; |
|
}); |
|
|
|
var getLiftEffect = (function (_ref) { |
|
var draggable = _ref.draggable, |
|
home = _ref.home, |
|
draggables = _ref.draggables, |
|
viewport = _ref.viewport; |
|
var displacedBy = getDisplacedBy(home.axis, draggable.displaceBy); |
|
var insideHome = getDraggablesInsideDroppable(home.descriptor.id, draggables); |
|
var rawIndex = insideHome.indexOf(draggable); |
|
!(rawIndex !== -1) ? process.env.NODE_ENV !== "production" ? invariant(false, 'Expected draggable to be inside home list') : invariant(false) : void 0; |
|
var afterDragging = insideHome.slice(rawIndex + 1); |
|
var effected = afterDragging.reduce(function (previous, item) { |
|
previous[item.descriptor.id] = true; |
|
return previous; |
|
}, {}); |
|
var afterCritical = { |
|
inVirtualList: home.descriptor.mode === 'virtual', |
|
displacedBy: displacedBy, |
|
effected: effected |
|
}; |
|
var displaced = getDisplacementGroups({ |
|
afterDragging: afterDragging, |
|
destination: home, |
|
displacedBy: displacedBy, |
|
last: null, |
|
viewport: viewport.frame, |
|
forceShouldAnimate: false |
|
}); |
|
var impact = { |
|
displaced: displaced, |
|
displacedBy: displacedBy, |
|
at: { |
|
type: 'REORDER', |
|
destination: getHomeLocation(draggable.descriptor) |
|
} |
|
}; |
|
return { |
|
impact: impact, |
|
afterCritical: afterCritical |
|
}; |
|
}); |
|
|
|
var patchDimensionMap = (function (dimensions, updated) { |
|
return { |
|
draggables: dimensions.draggables, |
|
droppables: patchDroppableMap(dimensions.droppables, updated) |
|
}; |
|
}); |
|
|
|
var start = function start(key) { |
|
if (process.env.NODE_ENV !== 'production') { |
|
{ |
|
return; |
|
} |
|
} |
|
}; |
|
var finish = function finish(key) { |
|
if (process.env.NODE_ENV !== 'production') { |
|
{ |
|
return; |
|
} |
|
} |
|
}; |
|
|
|
var offsetDraggable = (function (_ref) { |
|
var draggable = _ref.draggable, |
|
offset$1 = _ref.offset, |
|
initialWindowScroll = _ref.initialWindowScroll; |
|
var client = offset(draggable.client, offset$1); |
|
var page = withScroll(client, initialWindowScroll); |
|
|
|
var moved = _extends({}, draggable, { |
|
placeholder: _extends({}, draggable.placeholder, { |
|
client: client |
|
}), |
|
client: client, |
|
page: page |
|
}); |
|
|
|
return moved; |
|
}); |
|
|
|
var getFrame = (function (droppable) { |
|
var frame = droppable.frame; |
|
!frame ? process.env.NODE_ENV !== "production" ? invariant(false, 'Expected Droppable to have a frame') : invariant(false) : void 0; |
|
return frame; |
|
}); |
|
|
|
var adjustAdditionsForScrollChanges = (function (_ref) { |
|
var additions = _ref.additions, |
|
updatedDroppables = _ref.updatedDroppables, |
|
viewport = _ref.viewport; |
|
var windowScrollChange = viewport.scroll.diff.value; |
|
return additions.map(function (draggable) { |
|
var droppableId = draggable.descriptor.droppableId; |
|
var modified = updatedDroppables[droppableId]; |
|
var frame = getFrame(modified); |
|
var droppableScrollChange = frame.scroll.diff.value; |
|
var totalChange = add(windowScrollChange, droppableScrollChange); |
|
var moved = offsetDraggable({ |
|
draggable: draggable, |
|
offset: totalChange, |
|
initialWindowScroll: viewport.scroll.initial |
|
}); |
|
return moved; |
|
}); |
|
}); |
|
|
|
var publishWhileDraggingInVirtual = (function (_ref) { |
|
var state = _ref.state, |
|
published = _ref.published; |
|
start(); |
|
var withScrollChange = published.modified.map(function (update) { |
|
var existing = state.dimensions.droppables[update.droppableId]; |
|
var scrolled = scrollDroppable(existing, update.scroll); |
|
return scrolled; |
|
}); |
|
|
|
var droppables = _extends({}, state.dimensions.droppables, {}, toDroppableMap(withScrollChange)); |
|
|
|
var updatedAdditions = toDraggableMap(adjustAdditionsForScrollChanges({ |
|
additions: published.additions, |
|
updatedDroppables: droppables, |
|
viewport: state.viewport |
|
})); |
|
|
|
var draggables = _extends({}, state.dimensions.draggables, {}, updatedAdditions); |
|
|
|
published.removals.forEach(function (id) { |
|
delete draggables[id]; |
|
}); |
|
var dimensions = { |
|
droppables: droppables, |
|
draggables: draggables |
|
}; |
|
var wasOverId = whatIsDraggedOver(state.impact); |
|
var wasOver = wasOverId ? dimensions.droppables[wasOverId] : null; |
|
var draggable = dimensions.draggables[state.critical.draggable.id]; |
|
var home = dimensions.droppables[state.critical.droppable.id]; |
|
|
|
var _getLiftEffect = getLiftEffect({ |
|
draggable: draggable, |
|
home: home, |
|
draggables: draggables, |
|
viewport: state.viewport |
|
}), |
|
onLiftImpact = _getLiftEffect.impact, |
|
afterCritical = _getLiftEffect.afterCritical; |
|
|
|
var previousImpact = wasOver && wasOver.isCombineEnabled ? state.impact : onLiftImpact; |
|
var impact = getDragImpact({ |
|
pageOffset: state.current.page.offset, |
|
draggable: dimensions.draggables[state.critical.draggable.id], |
|
draggables: dimensions.draggables, |
|
droppables: dimensions.droppables, |
|
previousImpact: previousImpact, |
|
viewport: state.viewport, |
|
afterCritical: afterCritical |
|
}); |
|
finish(); |
|
|
|
var draggingState = _extends({ |
|
phase: 'DRAGGING' |
|
}, state, { |
|
phase: 'DRAGGING', |
|
impact: impact, |
|
onLiftImpact: onLiftImpact, |
|
dimensions: dimensions, |
|
afterCritical: afterCritical, |
|
forceShouldAnimate: false |
|
}); |
|
|
|
if (state.phase === 'COLLECTING') { |
|
return draggingState; |
|
} |
|
|
|
var dropPending = _extends({ |
|
phase: 'DROP_PENDING' |
|
}, draggingState, { |
|
phase: 'DROP_PENDING', |
|
reason: state.reason, |
|
isWaiting: false |
|
}); |
|
|
|
return dropPending; |
|
}); |
|
|
|
var isSnapping = function isSnapping(state) { |
|
return state.movementMode === 'SNAP'; |
|
}; |
|
|
|
var postDroppableChange = function postDroppableChange(state, updated, isEnabledChanging) { |
|
var dimensions = patchDimensionMap(state.dimensions, updated); |
|
|
|
if (!isSnapping(state) || isEnabledChanging) { |
|
return update({ |
|
state: state, |
|
dimensions: dimensions |
|
}); |
|
} |
|
|
|
return refreshSnap({ |
|
state: state, |
|
dimensions: dimensions |
|
}); |
|
}; |
|
|
|
function removeScrollJumpRequest(state) { |
|
if (state.isDragging && state.movementMode === 'SNAP') { |
|
return _extends({ |
|
phase: 'DRAGGING' |
|
}, state, { |
|
scrollJumpRequest: null |
|
}); |
|
} |
|
|
|
return state; |
|
} |
|
|
|
var idle = { |
|
phase: 'IDLE', |
|
completed: null, |
|
shouldFlush: false |
|
}; |
|
var reducer = (function (state, action) { |
|
if (state === void 0) { |
|
state = idle; |
|
} |
|
|
|
if (action.type === 'FLUSH') { |
|
return _extends({}, idle, { |
|
shouldFlush: true |
|
}); |
|
} |
|
|
|
if (action.type === 'INITIAL_PUBLISH') { |
|
!(state.phase === 'IDLE') ? process.env.NODE_ENV !== "production" ? invariant(false, 'INITIAL_PUBLISH must come after a IDLE phase') : invariant(false) : void 0; |
|
var _action$payload = action.payload, |
|
critical = _action$payload.critical, |
|
clientSelection = _action$payload.clientSelection, |
|
viewport = _action$payload.viewport, |
|
dimensions = _action$payload.dimensions, |
|
movementMode = _action$payload.movementMode; |
|
var draggable = dimensions.draggables[critical.draggable.id]; |
|
var home = dimensions.droppables[critical.droppable.id]; |
|
var client = { |
|
selection: clientSelection, |
|
borderBoxCenter: draggable.client.borderBox.center, |
|
offset: origin |
|
}; |
|
var initial = { |
|
client: client, |
|
page: { |
|
selection: add(client.selection, viewport.scroll.initial), |
|
borderBoxCenter: add(client.selection, viewport.scroll.initial), |
|
offset: add(client.selection, viewport.scroll.diff.value) |
|
} |
|
}; |
|
var isWindowScrollAllowed = toDroppableList(dimensions.droppables).every(function (item) { |
|
return !item.isFixedOnPage; |
|
}); |
|
|
|
var _getLiftEffect = getLiftEffect({ |
|
draggable: draggable, |
|
home: home, |
|
draggables: dimensions.draggables, |
|
viewport: viewport |
|
}), |
|
impact = _getLiftEffect.impact, |
|
afterCritical = _getLiftEffect.afterCritical; |
|
|
|
var result = { |
|
phase: 'DRAGGING', |
|
isDragging: true, |
|
critical: critical, |
|
movementMode: movementMode, |
|
dimensions: dimensions, |
|
initial: initial, |
|
current: initial, |
|
isWindowScrollAllowed: isWindowScrollAllowed, |
|
impact: impact, |
|
afterCritical: afterCritical, |
|
onLiftImpact: impact, |
|
viewport: viewport, |
|
scrollJumpRequest: null, |
|
forceShouldAnimate: null |
|
}; |
|
return result; |
|
} |
|
|
|
if (action.type === 'COLLECTION_STARTING') { |
|
if (state.phase === 'COLLECTING' || state.phase === 'DROP_PENDING') { |
|
return state; |
|
} |
|
|
|
!(state.phase === 'DRAGGING') ? process.env.NODE_ENV !== "production" ? invariant(false, "Collection cannot start from phase " + state.phase) : invariant(false) : void 0; |
|
|
|
var _result = _extends({ |
|
phase: 'COLLECTING' |
|
}, state, { |
|
phase: 'COLLECTING' |
|
}); |
|
|
|
return _result; |
|
} |
|
|
|
if (action.type === 'PUBLISH_WHILE_DRAGGING') { |
|
!(state.phase === 'COLLECTING' || state.phase === 'DROP_PENDING') ? process.env.NODE_ENV !== "production" ? invariant(false, "Unexpected " + action.type + " received in phase " + state.phase) : invariant(false) : void 0; |
|
return publishWhileDraggingInVirtual({ |
|
state: state, |
|
published: action.payload |
|
}); |
|
} |
|
|
|
if (action.type === 'MOVE') { |
|
if (state.phase === 'DROP_PENDING') { |
|
return state; |
|
} |
|
|
|
!isMovementAllowed(state) ? process.env.NODE_ENV !== "production" ? invariant(false, action.type + " not permitted in phase " + state.phase) : invariant(false) : void 0; |
|
var _clientSelection = action.payload.client; |
|
|
|
if (isEqual(_clientSelection, state.current.client.selection)) { |
|
return state; |
|
} |
|
|
|
return update({ |
|
state: state, |
|
clientSelection: _clientSelection, |
|
impact: isSnapping(state) ? state.impact : null |
|
}); |
|
} |
|
|
|
if (action.type === 'UPDATE_DROPPABLE_SCROLL') { |
|
if (state.phase === 'DROP_PENDING') { |
|
return removeScrollJumpRequest(state); |
|
} |
|
|
|
if (state.phase === 'COLLECTING') { |
|
return removeScrollJumpRequest(state); |
|
} |
|
|
|
!isMovementAllowed(state) ? process.env.NODE_ENV !== "production" ? invariant(false, action.type + " not permitted in phase " + state.phase) : invariant(false) : void 0; |
|
var _action$payload2 = action.payload, |
|
id = _action$payload2.id, |
|
newScroll = _action$payload2.newScroll; |
|
var target = state.dimensions.droppables[id]; |
|
|
|
if (!target) { |
|
return state; |
|
} |
|
|
|
var scrolled = scrollDroppable(target, newScroll); |
|
return postDroppableChange(state, scrolled, false); |
|
} |
|
|
|
if (action.type === 'UPDATE_DROPPABLE_IS_ENABLED') { |
|
if (state.phase === 'DROP_PENDING') { |
|
return state; |
|
} |
|
|
|
!isMovementAllowed(state) ? process.env.NODE_ENV !== "production" ? invariant(false, "Attempting to move in an unsupported phase " + state.phase) : invariant(false) : void 0; |
|
var _action$payload3 = action.payload, |
|
_id = _action$payload3.id, |
|
isEnabled = _action$payload3.isEnabled; |
|
var _target = state.dimensions.droppables[_id]; |
|
!_target ? process.env.NODE_ENV !== "production" ? invariant(false, "Cannot find Droppable[id: " + _id + "] to toggle its enabled state") : invariant(false) : void 0; |
|
!(_target.isEnabled !== isEnabled) ? process.env.NODE_ENV !== "production" ? invariant(false, "Trying to set droppable isEnabled to " + String(isEnabled) + "\n but it is already " + String(_target.isEnabled)) : invariant(false) : void 0; |
|
|
|
var updated = _extends({}, _target, { |
|
isEnabled: isEnabled |
|
}); |
|
|
|
return postDroppableChange(state, updated, true); |
|
} |
|
|
|
if (action.type === 'UPDATE_DROPPABLE_IS_COMBINE_ENABLED') { |
|
if (state.phase === 'DROP_PENDING') { |
|
return state; |
|
} |
|
|
|
!isMovementAllowed(state) ? process.env.NODE_ENV !== "production" ? invariant(false, "Attempting to move in an unsupported phase " + state.phase) : invariant(false) : void 0; |
|
var _action$payload4 = action.payload, |
|
_id2 = _action$payload4.id, |
|
isCombineEnabled = _action$payload4.isCombineEnabled; |
|
var _target2 = state.dimensions.droppables[_id2]; |
|
!_target2 ? process.env.NODE_ENV !== "production" ? invariant(false, "Cannot find Droppable[id: " + _id2 + "] to toggle its isCombineEnabled state") : invariant(false) : void 0; |
|
!(_target2.isCombineEnabled !== isCombineEnabled) ? process.env.NODE_ENV !== "production" ? invariant(false, "Trying to set droppable isCombineEnabled to " + String(isCombineEnabled) + "\n but it is already " + String(_target2.isCombineEnabled)) : invariant(false) : void 0; |
|
|
|
var _updated = _extends({}, _target2, { |
|
isCombineEnabled: isCombineEnabled |
|
}); |
|
|
|
return postDroppableChange(state, _updated, true); |
|
} |
|
|
|
if (action.type === 'MOVE_BY_WINDOW_SCROLL') { |
|
if (state.phase === 'DROP_PENDING' || state.phase === 'DROP_ANIMATING') { |
|
return state; |
|
} |
|
|
|
!isMovementAllowed(state) ? process.env.NODE_ENV !== "production" ? invariant(false, "Cannot move by window in phase " + state.phase) : invariant(false) : void 0; |
|
!state.isWindowScrollAllowed ? process.env.NODE_ENV !== "production" ? invariant(false, 'Window scrolling is currently not supported for fixed lists') : invariant(false) : void 0; |
|
var _newScroll = action.payload.newScroll; |
|
|
|
if (isEqual(state.viewport.scroll.current, _newScroll)) { |
|
return removeScrollJumpRequest(state); |
|
} |
|
|
|
var _viewport = scrollViewport(state.viewport, _newScroll); |
|
|
|
if (isSnapping(state)) { |
|
return refreshSnap({ |
|
state: state, |
|
viewport: _viewport |
|
}); |
|
} |
|
|
|
return update({ |
|
state: state, |
|
viewport: _viewport |
|
}); |
|
} |
|
|
|
if (action.type === 'UPDATE_VIEWPORT_MAX_SCROLL') { |
|
if (!isMovementAllowed(state)) { |
|
return state; |
|
} |
|
|
|
var maxScroll = action.payload.maxScroll; |
|
|
|
if (isEqual(maxScroll, state.viewport.scroll.max)) { |
|
return state; |
|
} |
|
|
|
var withMaxScroll = _extends({}, state.viewport, { |
|
scroll: _extends({}, state.viewport.scroll, { |
|
max: maxScroll |
|
}) |
|
}); |
|
|
|
return _extends({ |
|
phase: 'DRAGGING' |
|
}, state, { |
|
viewport: withMaxScroll |
|
}); |
|
} |
|
|
|
if (action.type === 'MOVE_UP' || action.type === 'MOVE_DOWN' || action.type === 'MOVE_LEFT' || action.type === 'MOVE_RIGHT') { |
|
if (state.phase === 'COLLECTING' || state.phase === 'DROP_PENDING') { |
|
return state; |
|
} |
|
|
|
!(state.phase === 'DRAGGING') ? process.env.NODE_ENV !== "production" ? invariant(false, action.type + " received while not in DRAGGING phase") : invariant(false) : void 0; |
|
|
|
var _result2 = moveInDirection({ |
|
state: state, |
|
type: action.type |
|
}); |
|
|
|
if (!_result2) { |
|
return state; |
|
} |
|
|
|
return update({ |
|
state: state, |
|
impact: _result2.impact, |
|
clientSelection: _result2.clientSelection, |
|
scrollJumpRequest: _result2.scrollJumpRequest |
|
}); |
|
} |
|
|
|
if (action.type === 'DROP_PENDING') { |
|
var reason = action.payload.reason; |
|
!(state.phase === 'COLLECTING') ? process.env.NODE_ENV !== "production" ? invariant(false, 'Can only move into the DROP_PENDING phase from the COLLECTING phase') : invariant(false) : void 0; |
|
|
|
var newState = _extends({ |
|
phase: 'DROP_PENDING' |
|
}, state, { |
|
phase: 'DROP_PENDING', |
|
isWaiting: true, |
|
reason: reason |
|
}); |
|
|
|
return newState; |
|
} |
|
|
|
if (action.type === 'DROP_ANIMATE') { |
|
var _action$payload5 = action.payload, |
|
completed = _action$payload5.completed, |
|
dropDuration = _action$payload5.dropDuration, |
|
newHomeClientOffset = _action$payload5.newHomeClientOffset; |
|
!(state.phase === 'DRAGGING' || state.phase === 'DROP_PENDING') ? process.env.NODE_ENV !== "production" ? invariant(false, "Cannot animate drop from phase " + state.phase) : invariant(false) : void 0; |
|
var _result3 = { |
|
phase: 'DROP_ANIMATING', |
|
completed: completed, |
|
dropDuration: dropDuration, |
|
newHomeClientOffset: newHomeClientOffset, |
|
dimensions: state.dimensions |
|
}; |
|
return _result3; |
|
} |
|
|
|
if (action.type === 'DROP_COMPLETE') { |
|
var _completed = action.payload.completed; |
|
return { |
|
phase: 'IDLE', |
|
completed: _completed, |
|
shouldFlush: false |
|
}; |
|
} |
|
|
|
return state; |
|
}); |
|
|
|
var beforeInitialCapture = function beforeInitialCapture(args) { |
|
return { |
|
type: 'BEFORE_INITIAL_CAPTURE', |
|
payload: args |
|
}; |
|
}; |
|
var lift = function lift(args) { |
|
return { |
|
type: 'LIFT', |
|
payload: args |
|
}; |
|
}; |
|
var initialPublish = function initialPublish(args) { |
|
return { |
|
type: 'INITIAL_PUBLISH', |
|
payload: args |
|
}; |
|
}; |
|
var publishWhileDragging = function publishWhileDragging(args) { |
|
return { |
|
type: 'PUBLISH_WHILE_DRAGGING', |
|
payload: args |
|
}; |
|
}; |
|
var collectionStarting = function collectionStarting() { |
|
return { |
|
type: 'COLLECTION_STARTING', |
|
payload: null |
|
}; |
|
}; |
|
var updateDroppableScroll = function updateDroppableScroll(args) { |
|
return { |
|
type: 'UPDATE_DROPPABLE_SCROLL', |
|
payload: args |
|
}; |
|
}; |
|
var updateDroppableIsEnabled = function updateDroppableIsEnabled(args) { |
|
return { |
|
type: 'UPDATE_DROPPABLE_IS_ENABLED', |
|
payload: args |
|
}; |
|
}; |
|
var updateDroppableIsCombineEnabled = function updateDroppableIsCombineEnabled(args) { |
|
return { |
|
type: 'UPDATE_DROPPABLE_IS_COMBINE_ENABLED', |
|
payload: args |
|
}; |
|
}; |
|
var move = function move(args) { |
|
return { |
|
type: 'MOVE', |
|
payload: args |
|
}; |
|
}; |
|
var moveByWindowScroll = function moveByWindowScroll(args) { |
|
return { |
|
type: 'MOVE_BY_WINDOW_SCROLL', |
|
payload: args |
|
}; |
|
}; |
|
var updateViewportMaxScroll = function updateViewportMaxScroll(args) { |
|
return { |
|
type: 'UPDATE_VIEWPORT_MAX_SCROLL', |
|
payload: args |
|
}; |
|
}; |
|
var moveUp = function moveUp() { |
|
return { |
|
type: 'MOVE_UP', |
|
payload: null |
|
}; |
|
}; |
|
var moveDown = function moveDown() { |
|
return { |
|
type: 'MOVE_DOWN', |
|
payload: null |
|
}; |
|
}; |
|
var moveRight = function moveRight() { |
|
return { |
|
type: 'MOVE_RIGHT', |
|
payload: null |
|
}; |
|
}; |
|
var moveLeft = function moveLeft() { |
|
return { |
|
type: 'MOVE_LEFT', |
|
payload: null |
|
}; |
|
}; |
|
var flush = function flush() { |
|
return { |
|
type: 'FLUSH', |
|
payload: null |
|
}; |
|
}; |
|
var animateDrop = function animateDrop(args) { |
|
return { |
|
type: 'DROP_ANIMATE', |
|
payload: args |
|
}; |
|
}; |
|
var completeDrop = function completeDrop(args) { |
|
return { |
|
type: 'DROP_COMPLETE', |
|
payload: args |
|
}; |
|
}; |
|
var drop = function drop(args) { |
|
return { |
|
type: 'DROP', |
|
payload: args |
|
}; |
|
}; |
|
var dropPending = function dropPending(args) { |
|
return { |
|
type: 'DROP_PENDING', |
|
payload: args |
|
}; |
|
}; |
|
var dropAnimationFinished = function dropAnimationFinished() { |
|
return { |
|
type: 'DROP_ANIMATION_FINISHED', |
|
payload: null |
|
}; |
|
}; |
|
|
|
function checkIndexes(insideDestination) { |
|
if (insideDestination.length <= 1) { |
|
return; |
|
} |
|
|
|
var indexes = insideDestination.map(function (d) { |
|
return d.descriptor.index; |
|
}); |
|
var errors = {}; |
|
|
|
for (var i = 1; i < indexes.length; i++) { |
|
var current = indexes[i]; |
|
var previous = indexes[i - 1]; |
|
|
|
if (current !== previous + 1) { |
|
errors[current] = true; |
|
} |
|
} |
|
|
|
if (!Object.keys(errors).length) { |
|
return; |
|
} |
|
|
|
var formatted = indexes.map(function (index) { |
|
var hasError = Boolean(errors[index]); |
|
return hasError ? "[\uD83D\uDD25" + index + "]" : "" + index; |
|
}).join(', '); |
|
process.env.NODE_ENV !== "production" ? warning("\n Detected non-consecutive <Draggable /> indexes.\n\n (This can cause unexpected bugs)\n\n " + formatted + "\n ") : void 0; |
|
} |
|
|
|
function validateDimensions(critical, dimensions) { |
|
if (process.env.NODE_ENV !== 'production') { |
|
var insideDestination = getDraggablesInsideDroppable(critical.droppable.id, dimensions.draggables); |
|
checkIndexes(insideDestination); |
|
} |
|
} |
|
|
|
var lift$1 = (function (marshal) { |
|
return function (_ref) { |
|
var getState = _ref.getState, |
|
dispatch = _ref.dispatch; |
|
return function (next) { |
|
return function (action) { |
|
if (action.type !== 'LIFT') { |
|
next(action); |
|
return; |
|
} |
|
|
|
var _action$payload = action.payload, |
|
id = _action$payload.id, |
|
clientSelection = _action$payload.clientSelection, |
|
movementMode = _action$payload.movementMode; |
|
var initial = getState(); |
|
|
|
if (initial.phase === 'DROP_ANIMATING') { |
|
dispatch(completeDrop({ |
|
completed: initial.completed |
|
})); |
|
} |
|
|
|
!(getState().phase === 'IDLE') ? process.env.NODE_ENV !== "production" ? invariant(false, 'Unexpected phase to start a drag') : invariant(false) : void 0; |
|
dispatch(flush()); |
|
dispatch(beforeInitialCapture({ |
|
draggableId: id, |
|
movementMode: movementMode |
|
})); |
|
var scrollOptions = { |
|
shouldPublishImmediately: movementMode === 'SNAP' |
|
}; |
|
var request = { |
|
draggableId: id, |
|
scrollOptions: scrollOptions |
|
}; |
|
|
|
var _marshal$startPublish = marshal.startPublishing(request), |
|
critical = _marshal$startPublish.critical, |
|
dimensions = _marshal$startPublish.dimensions, |
|
viewport = _marshal$startPublish.viewport; |
|
|
|
validateDimensions(critical, dimensions); |
|
dispatch(initialPublish({ |
|
critical: critical, |
|
dimensions: dimensions, |
|
clientSelection: clientSelection, |
|
movementMode: movementMode, |
|
viewport: viewport |
|
})); |
|
}; |
|
}; |
|
}; |
|
}); |
|
|
|
var style = (function (marshal) { |
|
return function () { |
|
return function (next) { |
|
return function (action) { |
|
if (action.type === 'INITIAL_PUBLISH') { |
|
marshal.dragging(); |
|
} |
|
|
|
if (action.type === 'DROP_ANIMATE') { |
|
marshal.dropping(action.payload.completed.result.reason); |
|
} |
|
|
|
if (action.type === 'FLUSH' || action.type === 'DROP_COMPLETE') { |
|
marshal.resting(); |
|
} |
|
|
|
next(action); |
|
}; |
|
}; |
|
}; |
|
}); |
|
|
|
var curves = { |
|
outOfTheWay: 'cubic-bezier(0.2, 0, 0, 1)', |
|
drop: 'cubic-bezier(.2,1,.1,1)' |
|
}; |
|
var combine = { |
|
opacity: { |
|
drop: 0, |
|
combining: 0.7 |
|
}, |
|
scale: { |
|
drop: 0.75 |
|
} |
|
}; |
|
var timings = { |
|
outOfTheWay: 0.2, |
|
minDropTime: 0.33, |
|
maxDropTime: 0.55 |
|
}; |
|
var outOfTheWayTiming = timings.outOfTheWay + "s " + curves.outOfTheWay; |
|
var transitions = { |
|
fluid: "opacity " + outOfTheWayTiming, |
|
snap: "transform " + outOfTheWayTiming + ", opacity " + outOfTheWayTiming, |
|
drop: function drop(duration) { |
|
var timing = duration + "s " + curves.drop; |
|
return "transform " + timing + ", opacity " + timing; |
|
}, |
|
outOfTheWay: "transform " + outOfTheWayTiming, |
|
placeholder: "height " + outOfTheWayTiming + ", width " + outOfTheWayTiming + ", margin " + outOfTheWayTiming |
|
}; |
|
|
|
var moveTo = function moveTo(offset) { |
|
return isEqual(offset, origin) ? null : "translate(" + offset.x + "px, " + offset.y + "px)"; |
|
}; |
|
|
|
var transforms = { |
|
moveTo: moveTo, |
|
drop: function drop(offset, isCombining) { |
|
var translate = moveTo(offset); |
|
|
|
if (!translate) { |
|
return null; |
|
} |
|
|
|
if (!isCombining) { |
|
return translate; |
|
} |
|
|
|
return translate + " scale(" + combine.scale.drop + ")"; |
|
} |
|
}; |
|
|
|
var minDropTime = timings.minDropTime, |
|
maxDropTime = timings.maxDropTime; |
|
var dropTimeRange = maxDropTime - minDropTime; |
|
var maxDropTimeAtDistance = 1500; |
|
var cancelDropModifier = 0.6; |
|
var getDropDuration = (function (_ref) { |
|
var current = _ref.current, |
|
destination = _ref.destination, |
|
reason = _ref.reason; |
|
var distance$1 = distance(current, destination); |
|
|
|
if (distance$1 <= 0) { |
|
return minDropTime; |
|
} |
|
|
|
if (distance$1 >= maxDropTimeAtDistance) { |
|
return maxDropTime; |
|
} |
|
|
|
var percentage = distance$1 / maxDropTimeAtDistance; |
|
var duration = minDropTime + dropTimeRange * percentage; |
|
var withDuration = reason === 'CANCEL' ? duration * cancelDropModifier : duration; |
|
return Number(withDuration.toFixed(2)); |
|
}); |
|
|
|
var getNewHomeClientOffset = (function (_ref) { |
|
var impact = _ref.impact, |
|
draggable = _ref.draggable, |
|
dimensions = _ref.dimensions, |
|
viewport = _ref.viewport, |
|
afterCritical = _ref.afterCritical; |
|
var draggables = dimensions.draggables, |
|
droppables = dimensions.droppables; |
|
var droppableId = whatIsDraggedOver(impact); |
|
var destination = droppableId ? droppables[droppableId] : null; |
|
var home = droppables[draggable.descriptor.droppableId]; |
|
var newClientCenter = getClientBorderBoxCenter({ |
|
impact: impact, |
|
draggable: draggable, |
|
draggables: draggables, |
|
afterCritical: afterCritical, |
|
droppable: destination || home, |
|
viewport: viewport |
|
}); |
|
var offset = subtract(newClientCenter, draggable.client.borderBox.center); |
|
return offset; |
|
}); |
|
|
|
var getDropImpact = (function (_ref) { |
|
var draggables = _ref.draggables, |
|
reason = _ref.reason, |
|
lastImpact = _ref.lastImpact, |
|
home = _ref.home, |
|
viewport = _ref.viewport, |
|
onLiftImpact = _ref.onLiftImpact; |
|
|
|
if (!lastImpact.at || reason !== 'DROP') { |
|
var recomputedHomeImpact = recompute({ |
|
draggables: draggables, |
|
impact: onLiftImpact, |
|
destination: home, |
|
viewport: viewport, |
|
forceShouldAnimate: true |
|
}); |
|
return { |
|
impact: recomputedHomeImpact, |
|
didDropInsideDroppable: false |
|
}; |
|
} |
|
|
|
if (lastImpact.at.type === 'REORDER') { |
|
return { |
|
impact: lastImpact, |
|
didDropInsideDroppable: true |
|
}; |
|
} |
|
|
|
var withoutMovement = _extends({}, lastImpact, { |
|
displaced: emptyGroups |
|
}); |
|
|
|
return { |
|
impact: withoutMovement, |
|
didDropInsideDroppable: true |
|
}; |
|
}); |
|
|
|
var drop$1 = (function (_ref) { |
|
var getState = _ref.getState, |
|
dispatch = _ref.dispatch; |
|
return function (next) { |
|
return function (action) { |
|
if (action.type !== 'DROP') { |
|
next(action); |
|
return; |
|
} |
|
|
|
var state = getState(); |
|
var reason = action.payload.reason; |
|
|
|
if (state.phase === 'COLLECTING') { |
|
dispatch(dropPending({ |
|
reason: reason |
|
})); |
|
return; |
|
} |
|
|
|
if (state.phase === 'IDLE') { |
|
return; |
|
} |
|
|
|
var isWaitingForDrop = state.phase === 'DROP_PENDING' && state.isWaiting; |
|
!!isWaitingForDrop ? process.env.NODE_ENV !== "production" ? invariant(false, 'A DROP action occurred while DROP_PENDING and still waiting') : invariant(false) : void 0; |
|
!(state.phase === 'DRAGGING' || state.phase === 'DROP_PENDING') ? process.env.NODE_ENV !== "production" ? invariant(false, "Cannot drop in phase: " + state.phase) : invariant(false) : void 0; |
|
var critical = state.critical; |
|
var dimensions = state.dimensions; |
|
var draggable = dimensions.draggables[state.critical.draggable.id]; |
|
|
|
var _getDropImpact = getDropImpact({ |
|
reason: reason, |
|
lastImpact: state.impact, |
|
afterCritical: state.afterCritical, |
|
onLiftImpact: state.onLiftImpact, |
|
home: state.dimensions.droppables[state.critical.droppable.id], |
|
viewport: state.viewport, |
|
draggables: state.dimensions.draggables |
|
}), |
|
impact = _getDropImpact.impact, |
|
didDropInsideDroppable = _getDropImpact.didDropInsideDroppable; |
|
|
|
var destination = didDropInsideDroppable ? tryGetDestination(impact) : null; |
|
var combine = didDropInsideDroppable ? tryGetCombine(impact) : null; |
|
var source = { |
|
index: critical.draggable.index, |
|
droppableId: critical.droppable.id |
|
}; |
|
var result = { |
|
draggableId: draggable.descriptor.id, |
|
type: draggable.descriptor.type, |
|
source: source, |
|
reason: reason, |
|
mode: state.movementMode, |
|
destination: destination, |
|
combine: combine |
|
}; |
|
var newHomeClientOffset = getNewHomeClientOffset({ |
|
impact: impact, |
|
draggable: draggable, |
|
dimensions: dimensions, |
|
viewport: state.viewport, |
|
afterCritical: state.afterCritical |
|
}); |
|
var completed = { |
|
critical: state.critical, |
|
afterCritical: state.afterCritical, |
|
result: result, |
|
impact: impact |
|
}; |
|
var isAnimationRequired = !isEqual(state.current.client.offset, newHomeClientOffset) || Boolean(result.combine); |
|
|
|
if (!isAnimationRequired) { |
|
dispatch(completeDrop({ |
|
completed: completed |
|
})); |
|
return; |
|
} |
|
|
|
var dropDuration = getDropDuration({ |
|
current: state.current.client.offset, |
|
destination: newHomeClientOffset, |
|
reason: reason |
|
}); |
|
var args = { |
|
newHomeClientOffset: newHomeClientOffset, |
|
dropDuration: dropDuration, |
|
completed: completed |
|
}; |
|
dispatch(animateDrop(args)); |
|
}; |
|
}; |
|
}); |
|
|
|
var getWindowScroll = (function () { |
|
return { |
|
x: window.pageXOffset, |
|
y: window.pageYOffset |
|
}; |
|
}); |
|
|
|
function getWindowScrollBinding(update) { |
|
return { |
|
eventName: 'scroll', |
|
options: { |
|
passive: true, |
|
capture: false |
|
}, |
|
fn: function fn(event) { |
|
if (event.target !== window && event.target !== window.document) { |
|
return; |
|
} |
|
|
|
update(); |
|
} |
|
}; |
|
} |
|
|
|
function getScrollListener(_ref) { |
|
var onWindowScroll = _ref.onWindowScroll; |
|
|
|
function updateScroll() { |
|
onWindowScroll(getWindowScroll()); |
|
} |
|
|
|
var scheduled = rafSchd(updateScroll); |
|
var binding = getWindowScrollBinding(scheduled); |
|
var unbind = noop; |
|
|
|
function isActive() { |
|
return unbind !== noop; |
|
} |
|
|
|
function start() { |
|
!!isActive() ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot start scroll listener when already active') : invariant(false) : void 0; |
|
unbind = bindEvents(window, [binding]); |
|
} |
|
|
|
function stop() { |
|
!isActive() ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot stop scroll listener when not active') : invariant(false) : void 0; |
|
scheduled.cancel(); |
|
unbind(); |
|
unbind = noop; |
|
} |
|
|
|
return { |
|
start: start, |
|
stop: stop, |
|
isActive: isActive |
|
}; |
|
} |
|
|
|
var shouldEnd = function shouldEnd(action) { |
|
return action.type === 'DROP_COMPLETE' || action.type === 'DROP_ANIMATE' || action.type === 'FLUSH'; |
|
}; |
|
|
|
var scrollListener = (function (store) { |
|
var listener = getScrollListener({ |
|
onWindowScroll: function onWindowScroll(newScroll) { |
|
store.dispatch(moveByWindowScroll({ |
|
newScroll: newScroll |
|
})); |
|
} |
|
}); |
|
return function (next) { |
|
return function (action) { |
|
if (!listener.isActive() && action.type === 'INITIAL_PUBLISH') { |
|
listener.start(); |
|
} |
|
|
|
if (listener.isActive() && shouldEnd(action)) { |
|
listener.stop(); |
|
} |
|
|
|
next(action); |
|
}; |
|
}; |
|
}); |
|
|
|
var getExpiringAnnounce = (function (announce) { |
|
var wasCalled = false; |
|
var isExpired = false; |
|
var timeoutId = setTimeout(function () { |
|
isExpired = true; |
|
}); |
|
|
|
var result = function result(message) { |
|
if (wasCalled) { |
|
process.env.NODE_ENV !== "production" ? warning('Announcement already made. Not making a second announcement') : void 0; |
|
return; |
|
} |
|
|
|
if (isExpired) { |
|
process.env.NODE_ENV !== "production" ? warning("\n Announcements cannot be made asynchronously.\n Default message has already been announced.\n ") : void 0; |
|
return; |
|
} |
|
|
|
wasCalled = true; |
|
announce(message); |
|
clearTimeout(timeoutId); |
|
}; |
|
|
|
result.wasCalled = function () { |
|
return wasCalled; |
|
}; |
|
|
|
return result; |
|
}); |
|
|
|
var getAsyncMarshal = (function () { |
|
var entries = []; |
|
|
|
var execute = function execute(timerId) { |
|
var index = findIndex(entries, function (item) { |
|
return item.timerId === timerId; |
|
}); |
|
!(index !== -1) ? process.env.NODE_ENV !== "production" ? invariant(false, 'Could not find timer') : invariant(false) : void 0; |
|
|
|
var _entries$splice = entries.splice(index, 1), |
|
entry = _entries$splice[0]; |
|
|
|
entry.callback(); |
|
}; |
|
|
|
var add = function add(fn) { |
|
var timerId = setTimeout(function () { |
|
return execute(timerId); |
|
}); |
|
var entry = { |
|
timerId: timerId, |
|
callback: fn |
|
}; |
|
entries.push(entry); |
|
}; |
|
|
|
var flush = function flush() { |
|
if (!entries.length) { |
|
return; |
|
} |
|
|
|
var shallow = [].concat(entries); |
|
entries.length = 0; |
|
shallow.forEach(function (entry) { |
|
clearTimeout(entry.timerId); |
|
entry.callback(); |
|
}); |
|
}; |
|
|
|
return { |
|
add: add, |
|
flush: flush |
|
}; |
|
}); |
|
|
|
var areLocationsEqual = function areLocationsEqual(first, second) { |
|
if (first == null && second == null) { |
|
return true; |
|
} |
|
|
|
if (first == null || second == null) { |
|
return false; |
|
} |
|
|
|
return first.droppableId === second.droppableId && first.index === second.index; |
|
}; |
|
var isCombineEqual = function isCombineEqual(first, second) { |
|
if (first == null && second == null) { |
|
return true; |
|
} |
|
|
|
if (first == null || second == null) { |
|
return false; |
|
} |
|
|
|
return first.draggableId === second.draggableId && first.droppableId === second.droppableId; |
|
}; |
|
var isCriticalEqual = function isCriticalEqual(first, second) { |
|
if (first === second) { |
|
return true; |
|
} |
|
|
|
var isDraggableEqual = first.draggable.id === second.draggable.id && first.draggable.droppableId === second.draggable.droppableId && first.draggable.type === second.draggable.type && first.draggable.index === second.draggable.index; |
|
var isDroppableEqual = first.droppable.id === second.droppable.id && first.droppable.type === second.droppable.type; |
|
return isDraggableEqual && isDroppableEqual; |
|
}; |
|
|
|
var withTimings = function withTimings(key, fn) { |
|
start(); |
|
fn(); |
|
finish(); |
|
}; |
|
|
|
var getDragStart = function getDragStart(critical, mode) { |
|
return { |
|
draggableId: critical.draggable.id, |
|
type: critical.droppable.type, |
|
source: { |
|
droppableId: critical.droppable.id, |
|
index: critical.draggable.index |
|
}, |
|
mode: mode |
|
}; |
|
}; |
|
|
|
var execute = function execute(responder, data, announce, getDefaultMessage) { |
|
if (!responder) { |
|
announce(getDefaultMessage(data)); |
|
return; |
|
} |
|
|
|
var willExpire = getExpiringAnnounce(announce); |
|
var provided = { |
|
announce: willExpire |
|
}; |
|
responder(data, provided); |
|
|
|
if (!willExpire.wasCalled()) { |
|
announce(getDefaultMessage(data)); |
|
} |
|
}; |
|
|
|
var getPublisher = (function (getResponders, announce) { |
|
var asyncMarshal = getAsyncMarshal(); |
|
var dragging = null; |
|
|
|
var beforeCapture = function beforeCapture(draggableId, mode) { |
|
!!dragging ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot fire onBeforeCapture as a drag start has already been published') : invariant(false) : void 0; |
|
withTimings('onBeforeCapture', function () { |
|
var fn = getResponders().onBeforeCapture; |
|
|
|
if (fn) { |
|
var before = { |
|
draggableId: draggableId, |
|
mode: mode |
|
}; |
|
fn(before); |
|
} |
|
}); |
|
}; |
|
|
|
var beforeStart = function beforeStart(critical, mode) { |
|
!!dragging ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot fire onBeforeDragStart as a drag start has already been published') : invariant(false) : void 0; |
|
withTimings('onBeforeDragStart', function () { |
|
var fn = getResponders().onBeforeDragStart; |
|
|
|
if (fn) { |
|
fn(getDragStart(critical, mode)); |
|
} |
|
}); |
|
}; |
|
|
|
var start = function start(critical, mode) { |
|
!!dragging ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot fire onBeforeDragStart as a drag start has already been published') : invariant(false) : void 0; |
|
var data = getDragStart(critical, mode); |
|
dragging = { |
|
mode: mode, |
|
lastCritical: critical, |
|
lastLocation: data.source, |
|
lastCombine: null |
|
}; |
|
asyncMarshal.add(function () { |
|
withTimings('onDragStart', function () { |
|
return execute(getResponders().onDragStart, data, announce, preset.onDragStart); |
|
}); |
|
}); |
|
}; |
|
|
|
var update = function update(critical, impact) { |
|
var location = tryGetDestination(impact); |
|
var combine = tryGetCombine(impact); |
|
!dragging ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot fire onDragMove when onDragStart has not been called') : invariant(false) : void 0; |
|
var hasCriticalChanged = !isCriticalEqual(critical, dragging.lastCritical); |
|
|
|
if (hasCriticalChanged) { |
|
dragging.lastCritical = critical; |
|
} |
|
|
|
var hasLocationChanged = !areLocationsEqual(dragging.lastLocation, location); |
|
|
|
if (hasLocationChanged) { |
|
dragging.lastLocation = location; |
|
} |
|
|
|
var hasGroupingChanged = !isCombineEqual(dragging.lastCombine, combine); |
|
|
|
if (hasGroupingChanged) { |
|
dragging.lastCombine = combine; |
|
} |
|
|
|
if (!hasCriticalChanged && !hasLocationChanged && !hasGroupingChanged) { |
|
return; |
|
} |
|
|
|
var data = _extends({}, getDragStart(critical, dragging.mode), { |
|
combine: combine, |
|
destination: location |
|
}); |
|
|
|
asyncMarshal.add(function () { |
|
withTimings('onDragUpdate', function () { |
|
return execute(getResponders().onDragUpdate, data, announce, preset.onDragUpdate); |
|
}); |
|
}); |
|
}; |
|
|
|
var flush = function flush() { |
|
!dragging ? process.env.NODE_ENV !== "production" ? invariant(false, 'Can only flush responders while dragging') : invariant(false) : void 0; |
|
asyncMarshal.flush(); |
|
}; |
|
|
|
var drop = function drop(result) { |
|
!dragging ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot fire onDragEnd when there is no matching onDragStart') : invariant(false) : void 0; |
|
dragging = null; |
|
withTimings('onDragEnd', function () { |
|
return execute(getResponders().onDragEnd, result, announce, preset.onDragEnd); |
|
}); |
|
}; |
|
|
|
var abort = function abort() { |
|
if (!dragging) { |
|
return; |
|
} |
|
|
|
var result = _extends({}, getDragStart(dragging.lastCritical, dragging.mode), { |
|
combine: null, |
|
destination: null, |
|
reason: 'CANCEL' |
|
}); |
|
|
|
drop(result); |
|
}; |
|
|
|
return { |
|
beforeCapture: beforeCapture, |
|
beforeStart: beforeStart, |
|
start: start, |
|
update: update, |
|
flush: flush, |
|
drop: drop, |
|
abort: abort |
|
}; |
|
}); |
|
|
|
var responders = (function (getResponders, announce) { |
|
var publisher = getPublisher(getResponders, announce); |
|
return function (store) { |
|
return function (next) { |
|
return function (action) { |
|
if (action.type === 'BEFORE_INITIAL_CAPTURE') { |
|
publisher.beforeCapture(action.payload.draggableId, action.payload.movementMode); |
|
return; |
|
} |
|
|
|
if (action.type === 'INITIAL_PUBLISH') { |
|
var critical = action.payload.critical; |
|
publisher.beforeStart(critical, action.payload.movementMode); |
|
next(action); |
|
publisher.start(critical, action.payload.movementMode); |
|
return; |
|
} |
|
|
|
if (action.type === 'DROP_COMPLETE') { |
|
var result = action.payload.completed.result; |
|
publisher.flush(); |
|
next(action); |
|
publisher.drop(result); |
|
return; |
|
} |
|
|
|
next(action); |
|
|
|
if (action.type === 'FLUSH') { |
|
publisher.abort(); |
|
return; |
|
} |
|
|
|
var state = store.getState(); |
|
|
|
if (state.phase === 'DRAGGING') { |
|
publisher.update(state.critical, state.impact); |
|
} |
|
}; |
|
}; |
|
}; |
|
}); |
|
|
|
var dropAnimationFinish = (function (store) { |
|
return function (next) { |
|
return function (action) { |
|
if (action.type !== 'DROP_ANIMATION_FINISHED') { |
|
next(action); |
|
return; |
|
} |
|
|
|
var state = store.getState(); |
|
!(state.phase === 'DROP_ANIMATING') ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot finish a drop animating when no drop is occurring') : invariant(false) : void 0; |
|
store.dispatch(completeDrop({ |
|
completed: state.completed |
|
})); |
|
}; |
|
}; |
|
}); |
|
|
|
var dropAnimationFlushOnScroll = (function (store) { |
|
var unbind = null; |
|
var frameId = null; |
|
|
|
function clear() { |
|
if (frameId) { |
|
cancelAnimationFrame(frameId); |
|
frameId = null; |
|
} |
|
|
|
if (unbind) { |
|
unbind(); |
|
unbind = null; |
|
} |
|
} |
|
|
|
return function (next) { |
|
return function (action) { |
|
if (action.type === 'FLUSH' || action.type === 'DROP_COMPLETE' || action.type === 'DROP_ANIMATION_FINISHED') { |
|
clear(); |
|
} |
|
|
|
next(action); |
|
|
|
if (action.type !== 'DROP_ANIMATE') { |
|
return; |
|
} |
|
|
|
var binding = { |
|
eventName: 'scroll', |
|
options: { |
|
capture: true, |
|
passive: false, |
|
once: true |
|
}, |
|
fn: function flushDropAnimation() { |
|
var state = store.getState(); |
|
|
|
if (state.phase === 'DROP_ANIMATING') { |
|
store.dispatch(dropAnimationFinished()); |
|
} |
|
} |
|
}; |
|
frameId = requestAnimationFrame(function () { |
|
frameId = null; |
|
unbind = bindEvents(window, [binding]); |
|
}); |
|
}; |
|
}; |
|
}); |
|
|
|
var dimensionMarshalStopper = (function (marshal) { |
|
return function () { |
|
return function (next) { |
|
return function (action) { |
|
if (action.type === 'DROP_COMPLETE' || action.type === 'FLUSH' || action.type === 'DROP_ANIMATE') { |
|
marshal.stopPublishing(); |
|
} |
|
|
|
next(action); |
|
}; |
|
}; |
|
}; |
|
}); |
|
|
|
var focus = (function (marshal) { |
|
var isWatching = false; |
|
return function () { |
|
return function (next) { |
|
return function (action) { |
|
if (action.type === 'INITIAL_PUBLISH') { |
|
isWatching = true; |
|
marshal.tryRecordFocus(action.payload.critical.draggable.id); |
|
next(action); |
|
marshal.tryRestoreFocusRecorded(); |
|
return; |
|
} |
|
|
|
next(action); |
|
|
|
if (!isWatching) { |
|
return; |
|
} |
|
|
|
if (action.type === 'FLUSH') { |
|
isWatching = false; |
|
marshal.tryRestoreFocusRecorded(); |
|
return; |
|
} |
|
|
|
if (action.type === 'DROP_COMPLETE') { |
|
isWatching = false; |
|
var result = action.payload.completed.result; |
|
|
|
if (result.combine) { |
|
marshal.tryShiftRecord(result.draggableId, result.combine.draggableId); |
|
} |
|
|
|
marshal.tryRestoreFocusRecorded(); |
|
} |
|
}; |
|
}; |
|
}; |
|
}); |
|
|
|
var shouldStop = function shouldStop(action) { |
|
return action.type === 'DROP_COMPLETE' || action.type === 'DROP_ANIMATE' || action.type === 'FLUSH'; |
|
}; |
|
|
|
var autoScroll = (function (autoScroller) { |
|
return function (store) { |
|
return function (next) { |
|
return function (action) { |
|
if (shouldStop(action)) { |
|
autoScroller.stop(); |
|
next(action); |
|
return; |
|
} |
|
|
|
if (action.type === 'INITIAL_PUBLISH') { |
|
next(action); |
|
var state = store.getState(); |
|
!(state.phase === 'DRAGGING') ? process.env.NODE_ENV !== "production" ? invariant(false, 'Expected phase to be DRAGGING after INITIAL_PUBLISH') : invariant(false) : void 0; |
|
autoScroller.start(state); |
|
return; |
|
} |
|
|
|
next(action); |
|
autoScroller.scroll(store.getState()); |
|
}; |
|
}; |
|
}; |
|
}); |
|
|
|
var pendingDrop = (function (store) { |
|
return function (next) { |
|
return function (action) { |
|
next(action); |
|
|
|
if (action.type !== 'PUBLISH_WHILE_DRAGGING') { |
|
return; |
|
} |
|
|
|
var postActionState = store.getState(); |
|
|
|
if (postActionState.phase !== 'DROP_PENDING') { |
|
return; |
|
} |
|
|
|
if (postActionState.isWaiting) { |
|
return; |
|
} |
|
|
|
store.dispatch(drop({ |
|
reason: postActionState.reason |
|
})); |
|
}; |
|
}; |
|
}); |
|
|
|
var composeEnhancers = process.env.NODE_ENV !== 'production' && typeof window !== 'undefined' && window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ ? window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__({ |
|
name: 'react-beautiful-dnd' |
|
}) : compose; |
|
var createStore = (function (_ref) { |
|
var dimensionMarshal = _ref.dimensionMarshal, |
|
focusMarshal = _ref.focusMarshal, |
|
styleMarshal = _ref.styleMarshal, |
|
getResponders = _ref.getResponders, |
|
announce = _ref.announce, |
|
autoScroller = _ref.autoScroller; |
|
return createStore$1(reducer, composeEnhancers(applyMiddleware(style(styleMarshal), dimensionMarshalStopper(dimensionMarshal), lift$1(dimensionMarshal), drop$1, dropAnimationFinish, dropAnimationFlushOnScroll, pendingDrop, autoScroll(autoScroller), scrollListener, focus(focusMarshal), responders(getResponders, announce)))); |
|
}); |
|
|
|
var clean$1 = function clean() { |
|
return { |
|
additions: {}, |
|
removals: {}, |
|
modified: {} |
|
}; |
|
}; |
|
function createPublisher(_ref) { |
|
var registry = _ref.registry, |
|
callbacks = _ref.callbacks; |
|
var staging = clean$1(); |
|
var frameId = null; |
|
|
|
var collect = function collect() { |
|
if (frameId) { |
|
return; |
|
} |
|
|
|
callbacks.collectionStarting(); |
|
frameId = requestAnimationFrame(function () { |
|
frameId = null; |
|
start(); |
|
var _staging = staging, |
|
additions = _staging.additions, |
|
removals = _staging.removals, |
|
modified = _staging.modified; |
|
var added = Object.keys(additions).map(function (id) { |
|
return registry.draggable.getById(id).getDimension(origin); |
|
}).sort(function (a, b) { |
|
return a.descriptor.index - b.descriptor.index; |
|
}); |
|
var updated = Object.keys(modified).map(function (id) { |
|
var entry = registry.droppable.getById(id); |
|
var scroll = entry.callbacks.getScrollWhileDragging(); |
|
return { |
|
droppableId: id, |
|
scroll: scroll |
|
}; |
|
}); |
|
var result = { |
|
additions: added, |
|
removals: Object.keys(removals), |
|
modified: updated |
|
}; |
|
staging = clean$1(); |
|
finish(); |
|
callbacks.publish(result); |
|
}); |
|
}; |
|
|
|
var add = function add(entry) { |
|
var id = entry.descriptor.id; |
|
staging.additions[id] = entry; |
|
staging.modified[entry.descriptor.droppableId] = true; |
|
|
|
if (staging.removals[id]) { |
|
delete staging.removals[id]; |
|
} |
|
|
|
collect(); |
|
}; |
|
|
|
var remove = function remove(entry) { |
|
var descriptor = entry.descriptor; |
|
staging.removals[descriptor.id] = true; |
|
staging.modified[descriptor.droppableId] = true; |
|
|
|
if (staging.additions[descriptor.id]) { |
|
delete staging.additions[descriptor.id]; |
|
} |
|
|
|
collect(); |
|
}; |
|
|
|
var stop = function stop() { |
|
if (!frameId) { |
|
return; |
|
} |
|
|
|
cancelAnimationFrame(frameId); |
|
frameId = null; |
|
staging = clean$1(); |
|
}; |
|
|
|
return { |
|
add: add, |
|
remove: remove, |
|
stop: stop |
|
}; |
|
} |
|
|
|
var getMaxScroll = (function (_ref) { |
|
var scrollHeight = _ref.scrollHeight, |
|
scrollWidth = _ref.scrollWidth, |
|
height = _ref.height, |
|
width = _ref.width; |
|
var maxScroll = subtract({ |
|
x: scrollWidth, |
|
y: scrollHeight |
|
}, { |
|
x: width, |
|
y: height |
|
}); |
|
var adjustedMaxScroll = { |
|
x: Math.max(0, maxScroll.x), |
|
y: Math.max(0, maxScroll.y) |
|
}; |
|
return adjustedMaxScroll; |
|
}); |
|
|
|
var getDocumentElement = (function () { |
|
var doc = document.documentElement; |
|
!doc ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot find document.documentElement') : invariant(false) : void 0; |
|
return doc; |
|
}); |
|
|
|
var getMaxWindowScroll = (function () { |
|
var doc = getDocumentElement(); |
|
var maxScroll = getMaxScroll({ |
|
scrollHeight: doc.scrollHeight, |
|
scrollWidth: doc.scrollWidth, |
|
width: doc.clientWidth, |
|
height: doc.clientHeight |
|
}); |
|
return maxScroll; |
|
}); |
|
|
|
var getViewport = (function () { |
|
var scroll = getWindowScroll(); |
|
var maxScroll = getMaxWindowScroll(); |
|
var top = scroll.y; |
|
var left = scroll.x; |
|
var doc = getDocumentElement(); |
|
var width = doc.clientWidth; |
|
var height = doc.clientHeight; |
|
var right = left + width; |
|
var bottom = top + height; |
|
var frame = getRect({ |
|
top: top, |
|
left: left, |
|
right: right, |
|
bottom: bottom |
|
}); |
|
var viewport = { |
|
frame: frame, |
|
scroll: { |
|
initial: scroll, |
|
current: scroll, |
|
max: maxScroll, |
|
diff: { |
|
value: origin, |
|
displacement: origin |
|
} |
|
} |
|
}; |
|
return viewport; |
|
}); |
|
|
|
var getInitialPublish = (function (_ref) { |
|
var critical = _ref.critical, |
|
scrollOptions = _ref.scrollOptions, |
|
registry = _ref.registry; |
|
start(); |
|
var viewport = getViewport(); |
|
var windowScroll = viewport.scroll.current; |
|
var home = critical.droppable; |
|
var droppables = registry.droppable.getAllByType(home.type).map(function (entry) { |
|
return entry.callbacks.getDimensionAndWatchScroll(windowScroll, scrollOptions); |
|
}); |
|
var draggables = registry.draggable.getAllByType(critical.draggable.type).map(function (entry) { |
|
return entry.getDimension(windowScroll); |
|
}); |
|
var dimensions = { |
|
draggables: toDraggableMap(draggables), |
|
droppables: toDroppableMap(droppables) |
|
}; |
|
finish(); |
|
var result = { |
|
dimensions: dimensions, |
|
critical: critical, |
|
viewport: viewport |
|
}; |
|
return result; |
|
}); |
|
|
|
function shouldPublishUpdate(registry, dragging, entry) { |
|
if (entry.descriptor.id === dragging.id) { |
|
return false; |
|
} |
|
|
|
if (entry.descriptor.type !== dragging.type) { |
|
return false; |
|
} |
|
|
|
var home = registry.droppable.getById(entry.descriptor.droppableId); |
|
|
|
if (home.descriptor.mode !== 'virtual') { |
|
process.env.NODE_ENV !== "production" ? warning("\n You are attempting to add or remove a Draggable [id: " + entry.descriptor.id + "]\n while a drag is occurring. This is only supported for virtual lists.\n\n See https://github.com/atlassian/react-beautiful-dnd/blob/master/docs/patterns/virtual-lists.md\n ") : void 0; |
|
return false; |
|
} |
|
|
|
return true; |
|
} |
|
|
|
var createDimensionMarshal = (function (registry, callbacks) { |
|
var collection = null; |
|
var publisher = createPublisher({ |
|
callbacks: { |
|
publish: callbacks.publishWhileDragging, |
|
collectionStarting: callbacks.collectionStarting |
|
}, |
|
registry: registry |
|
}); |
|
|
|
var updateDroppableIsEnabled = function updateDroppableIsEnabled(id, isEnabled) { |
|
!registry.droppable.exists(id) ? process.env.NODE_ENV !== "production" ? invariant(false, "Cannot update is enabled flag of Droppable " + id + " as it is not registered") : invariant(false) : void 0; |
|
|
|
if (!collection) { |
|
return; |
|
} |
|
|
|
callbacks.updateDroppableIsEnabled({ |
|
id: id, |
|
isEnabled: isEnabled |
|
}); |
|
}; |
|
|
|
var updateDroppableIsCombineEnabled = function updateDroppableIsCombineEnabled(id, isCombineEnabled) { |
|
if (!collection) { |
|
return; |
|
} |
|
|
|
!registry.droppable.exists(id) ? process.env.NODE_ENV !== "production" ? invariant(false, "Cannot update isCombineEnabled flag of Droppable " + id + " as it is not registered") : invariant(false) : void 0; |
|
callbacks.updateDroppableIsCombineEnabled({ |
|
id: id, |
|
isCombineEnabled: isCombineEnabled |
|
}); |
|
}; |
|
|
|
var updateDroppableScroll = function updateDroppableScroll(id, newScroll) { |
|
if (!collection) { |
|
return; |
|
} |
|
|
|
!registry.droppable.exists(id) ? process.env.NODE_ENV !== "production" ? invariant(false, "Cannot update the scroll on Droppable " + id + " as it is not registered") : invariant(false) : void 0; |
|
callbacks.updateDroppableScroll({ |
|
id: id, |
|
newScroll: newScroll |
|
}); |
|
}; |
|
|
|
var scrollDroppable = function scrollDroppable(id, change) { |
|
if (!collection) { |
|
return; |
|
} |
|
|
|
registry.droppable.getById(id).callbacks.scroll(change); |
|
}; |
|
|
|
var stopPublishing = function stopPublishing() { |
|
if (!collection) { |
|
return; |
|
} |
|
|
|
publisher.stop(); |
|
var home = collection.critical.droppable; |
|
registry.droppable.getAllByType(home.type).forEach(function (entry) { |
|
return entry.callbacks.dragStopped(); |
|
}); |
|
collection.unsubscribe(); |
|
collection = null; |
|
}; |
|
|
|
var subscriber = function subscriber(event) { |
|
!collection ? process.env.NODE_ENV !== "production" ? invariant(false, 'Should only be subscribed when a collection is occurring') : invariant(false) : void 0; |
|
var dragging = collection.critical.draggable; |
|
|
|
if (event.type === 'ADDITION') { |
|
if (shouldPublishUpdate(registry, dragging, event.value)) { |
|
publisher.add(event.value); |
|
} |
|
} |
|
|
|
if (event.type === 'REMOVAL') { |
|
if (shouldPublishUpdate(registry, dragging, event.value)) { |
|
publisher.remove(event.value); |
|
} |
|
} |
|
}; |
|
|
|
var startPublishing = function startPublishing(request) { |
|
!!collection ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot start capturing critical dimensions as there is already a collection') : invariant(false) : void 0; |
|
var entry = registry.draggable.getById(request.draggableId); |
|
var home = registry.droppable.getById(entry.descriptor.droppableId); |
|
var critical = { |
|
draggable: entry.descriptor, |
|
droppable: home.descriptor |
|
}; |
|
var unsubscribe = registry.subscribe(subscriber); |
|
collection = { |
|
critical: critical, |
|
unsubscribe: unsubscribe |
|
}; |
|
return getInitialPublish({ |
|
critical: critical, |
|
registry: registry, |
|
scrollOptions: request.scrollOptions |
|
}); |
|
}; |
|
|
|
var marshal = { |
|
updateDroppableIsEnabled: updateDroppableIsEnabled, |
|
updateDroppableIsCombineEnabled: updateDroppableIsCombineEnabled, |
|
scrollDroppable: scrollDroppable, |
|
updateDroppableScroll: updateDroppableScroll, |
|
startPublishing: startPublishing, |
|
stopPublishing: stopPublishing |
|
}; |
|
return marshal; |
|
}); |
|
|
|
var canStartDrag = (function (state, id) { |
|
if (state.phase === 'IDLE') { |
|
return true; |
|
} |
|
|
|
if (state.phase !== 'DROP_ANIMATING') { |
|
return false; |
|
} |
|
|
|
if (state.completed.result.draggableId === id) { |
|
return false; |
|
} |
|
|
|
return state.completed.result.reason === 'DROP'; |
|
}); |
|
|
|
var scrollWindow = (function (change) { |
|
window.scrollBy(change.x, change.y); |
|
}); |
|
|
|
var getScrollableDroppables = memoizeOne(function (droppables) { |
|
return toDroppableList(droppables).filter(function (droppable) { |
|
if (!droppable.isEnabled) { |
|
return false; |
|
} |
|
|
|
if (!droppable.frame) { |
|
return false; |
|
} |
|
|
|
return true; |
|
}); |
|
}); |
|
|
|
var getScrollableDroppableOver = function getScrollableDroppableOver(target, droppables) { |
|
var maybe = find(getScrollableDroppables(droppables), function (droppable) { |
|
!droppable.frame ? process.env.NODE_ENV !== "production" ? invariant(false, 'Invalid result') : invariant(false) : void 0; |
|
return isPositionInFrame(droppable.frame.pageMarginBox)(target); |
|
}); |
|
return maybe; |
|
}; |
|
|
|
var getBestScrollableDroppable = (function (_ref) { |
|
var center = _ref.center, |
|
destination = _ref.destination, |
|
droppables = _ref.droppables; |
|
|
|
if (destination) { |
|
var _dimension = droppables[destination]; |
|
|
|
if (!_dimension.frame) { |
|
return null; |
|
} |
|
|
|
return _dimension; |
|
} |
|
|
|
var dimension = getScrollableDroppableOver(center, droppables); |
|
return dimension; |
|
}); |
|
|
|
var config = { |
|
startFromPercentage: 0.25, |
|
maxScrollAtPercentage: 0.05, |
|
maxPixelScroll: 28, |
|
ease: function ease(percentage) { |
|
return Math.pow(percentage, 2); |
|
}, |
|
durationDampening: { |
|
stopDampeningAt: 1200, |
|
accelerateAt: 360 |
|
} |
|
}; |
|
|
|
var getDistanceThresholds = (function (container, axis) { |
|
var startScrollingFrom = container[axis.size] * config.startFromPercentage; |
|
var maxScrollValueAt = container[axis.size] * config.maxScrollAtPercentage; |
|
var thresholds = { |
|
startScrollingFrom: startScrollingFrom, |
|
maxScrollValueAt: maxScrollValueAt |
|
}; |
|
return thresholds; |
|
}); |
|
|
|
var getPercentage = (function (_ref) { |
|
var startOfRange = _ref.startOfRange, |
|
endOfRange = _ref.endOfRange, |
|
current = _ref.current; |
|
var range = endOfRange - startOfRange; |
|
|
|
if (range === 0) { |
|
process.env.NODE_ENV !== "production" ? warning("\n Detected distance range of 0 in the fluid auto scroller\n This is unexpected and would cause a divide by 0 issue.\n Not allowing an auto scroll\n ") : void 0; |
|
return 0; |
|
} |
|
|
|
var currentInRange = current - startOfRange; |
|
var percentage = currentInRange / range; |
|
return percentage; |
|
}); |
|
|
|
var minScroll = 1; |
|
|
|
var getValueFromDistance = (function (distanceToEdge, thresholds) { |
|
if (distanceToEdge > thresholds.startScrollingFrom) { |
|
return 0; |
|
} |
|
|
|
if (distanceToEdge <= thresholds.maxScrollValueAt) { |
|
return config.maxPixelScroll; |
|
} |
|
|
|
if (distanceToEdge === thresholds.startScrollingFrom) { |
|
return minScroll; |
|
} |
|
|
|
var percentageFromMaxScrollValueAt = getPercentage({ |
|
startOfRange: thresholds.maxScrollValueAt, |
|
endOfRange: thresholds.startScrollingFrom, |
|
current: distanceToEdge |
|
}); |
|
var percentageFromStartScrollingFrom = 1 - percentageFromMaxScrollValueAt; |
|
var scroll = config.maxPixelScroll * config.ease(percentageFromStartScrollingFrom); |
|
return Math.ceil(scroll); |
|
}); |
|
|
|
var accelerateAt = config.durationDampening.accelerateAt; |
|
var stopAt = config.durationDampening.stopDampeningAt; |
|
var dampenValueByTime = (function (proposedScroll, dragStartTime) { |
|
var startOfRange = dragStartTime; |
|
var endOfRange = stopAt; |
|
var now = Date.now(); |
|
var runTime = now - startOfRange; |
|
|
|
if (runTime >= stopAt) { |
|
return proposedScroll; |
|
} |
|
|
|
if (runTime < accelerateAt) { |
|
return minScroll; |
|
} |
|
|
|
var betweenAccelerateAtAndStopAtPercentage = getPercentage({ |
|
startOfRange: accelerateAt, |
|
endOfRange: endOfRange, |
|
current: runTime |
|
}); |
|
var scroll = proposedScroll * config.ease(betweenAccelerateAtAndStopAtPercentage); |
|
return Math.ceil(scroll); |
|
}); |
|
|
|
var getValue = (function (_ref) { |
|
var distanceToEdge = _ref.distanceToEdge, |
|
thresholds = _ref.thresholds, |
|
dragStartTime = _ref.dragStartTime, |
|
shouldUseTimeDampening = _ref.shouldUseTimeDampening; |
|
var scroll = getValueFromDistance(distanceToEdge, thresholds); |
|
|
|
if (scroll === 0) { |
|
return 0; |
|
} |
|
|
|
if (!shouldUseTimeDampening) { |
|
return scroll; |
|
} |
|
|
|
return Math.max(dampenValueByTime(scroll, dragStartTime), minScroll); |
|
}); |
|
|
|
var getScrollOnAxis = (function (_ref) { |
|
var container = _ref.container, |
|
distanceToEdges = _ref.distanceToEdges, |
|
dragStartTime = _ref.dragStartTime, |
|
axis = _ref.axis, |
|
shouldUseTimeDampening = _ref.shouldUseTimeDampening; |
|
var thresholds = getDistanceThresholds(container, axis); |
|
var isCloserToEnd = distanceToEdges[axis.end] < distanceToEdges[axis.start]; |
|
|
|
if (isCloserToEnd) { |
|
return getValue({ |
|
distanceToEdge: distanceToEdges[axis.end], |
|
thresholds: thresholds, |
|
dragStartTime: dragStartTime, |
|
shouldUseTimeDampening: shouldUseTimeDampening |
|
}); |
|
} |
|
|
|
return -1 * getValue({ |
|
distanceToEdge: distanceToEdges[axis.start], |
|
thresholds: thresholds, |
|
dragStartTime: dragStartTime, |
|
shouldUseTimeDampening: shouldUseTimeDampening |
|
}); |
|
}); |
|
|
|
var adjustForSizeLimits = (function (_ref) { |
|
var container = _ref.container, |
|
subject = _ref.subject, |
|
proposedScroll = _ref.proposedScroll; |
|
var isTooBigVertically = subject.height > container.height; |
|
var isTooBigHorizontally = subject.width > container.width; |
|
|
|
if (!isTooBigHorizontally && !isTooBigVertically) { |
|
return proposedScroll; |
|
} |
|
|
|
if (isTooBigHorizontally && isTooBigVertically) { |
|
return null; |
|
} |
|
|
|
return { |
|
x: isTooBigHorizontally ? 0 : proposedScroll.x, |
|
y: isTooBigVertically ? 0 : proposedScroll.y |
|
}; |
|
}); |
|
|
|
var clean$2 = apply(function (value) { |
|
return value === 0 ? 0 : value; |
|
}); |
|
var getScroll = (function (_ref) { |
|
var dragStartTime = _ref.dragStartTime, |
|
container = _ref.container, |
|
subject = _ref.subject, |
|
center = _ref.center, |
|
shouldUseTimeDampening = _ref.shouldUseTimeDampening; |
|
var distanceToEdges = { |
|
top: center.y - container.top, |
|
right: container.right - center.x, |
|
bottom: container.bottom - center.y, |
|
left: center.x - container.left |
|
}; |
|
var y = getScrollOnAxis({ |
|
container: container, |
|
distanceToEdges: distanceToEdges, |
|
dragStartTime: dragStartTime, |
|
axis: vertical, |
|
shouldUseTimeDampening: shouldUseTimeDampening |
|
}); |
|
var x = getScrollOnAxis({ |
|
container: container, |
|
distanceToEdges: distanceToEdges, |
|
dragStartTime: dragStartTime, |
|
axis: horizontal, |
|
shouldUseTimeDampening: shouldUseTimeDampening |
|
}); |
|
var required = clean$2({ |
|
x: x, |
|
y: y |
|
}); |
|
|
|
if (isEqual(required, origin)) { |
|
return null; |
|
} |
|
|
|
var limited = adjustForSizeLimits({ |
|
container: container, |
|
subject: subject, |
|
proposedScroll: required |
|
}); |
|
|
|
if (!limited) { |
|
return null; |
|
} |
|
|
|
return isEqual(limited, origin) ? null : limited; |
|
}); |
|
|
|
var smallestSigned = apply(function (value) { |
|
if (value === 0) { |
|
return 0; |
|
} |
|
|
|
return value > 0 ? 1 : -1; |
|
}); |
|
var getOverlap = function () { |
|
var getRemainder = function getRemainder(target, max) { |
|
if (target < 0) { |
|
return target; |
|
} |
|
|
|
if (target > max) { |
|
return target - max; |
|
} |
|
|
|
return 0; |
|
}; |
|
|
|
return function (_ref) { |
|
var current = _ref.current, |
|
max = _ref.max, |
|
change = _ref.change; |
|
var targetScroll = add(current, change); |
|
var overlap = { |
|
x: getRemainder(targetScroll.x, max.x), |
|
y: getRemainder(targetScroll.y, max.y) |
|
}; |
|
|
|
if (isEqual(overlap, origin)) { |
|
return null; |
|
} |
|
|
|
return overlap; |
|
}; |
|
}(); |
|
var canPartiallyScroll = function canPartiallyScroll(_ref2) { |
|
var rawMax = _ref2.max, |
|
current = _ref2.current, |
|
change = _ref2.change; |
|
var max = { |
|
x: Math.max(current.x, rawMax.x), |
|
y: Math.max(current.y, rawMax.y) |
|
}; |
|
var smallestChange = smallestSigned(change); |
|
var overlap = getOverlap({ |
|
max: max, |
|
current: current, |
|
change: smallestChange |
|
}); |
|
|
|
if (!overlap) { |
|
return true; |
|
} |
|
|
|
if (smallestChange.x !== 0 && overlap.x === 0) { |
|
return true; |
|
} |
|
|
|
if (smallestChange.y !== 0 && overlap.y === 0) { |
|
return true; |
|
} |
|
|
|
return false; |
|
}; |
|
var canScrollWindow = function canScrollWindow(viewport, change) { |
|
return canPartiallyScroll({ |
|
current: viewport.scroll.current, |
|
max: viewport.scroll.max, |
|
change: change |
|
}); |
|
}; |
|
var getWindowOverlap = function getWindowOverlap(viewport, change) { |
|
if (!canScrollWindow(viewport, change)) { |
|
return null; |
|
} |
|
|
|
var max = viewport.scroll.max; |
|
var current = viewport.scroll.current; |
|
return getOverlap({ |
|
current: current, |
|
max: max, |
|
change: change |
|
}); |
|
}; |
|
var canScrollDroppable = function canScrollDroppable(droppable, change) { |
|
var frame = droppable.frame; |
|
|
|
if (!frame) { |
|
return false; |
|
} |
|
|
|
return canPartiallyScroll({ |
|
current: frame.scroll.current, |
|
max: frame.scroll.max, |
|
change: change |
|
}); |
|
}; |
|
var getDroppableOverlap = function getDroppableOverlap(droppable, change) { |
|
var frame = droppable.frame; |
|
|
|
if (!frame) { |
|
return null; |
|
} |
|
|
|
if (!canScrollDroppable(droppable, change)) { |
|
return null; |
|
} |
|
|
|
return getOverlap({ |
|
current: frame.scroll.current, |
|
max: frame.scroll.max, |
|
change: change |
|
}); |
|
}; |
|
|
|
var getWindowScrollChange = (function (_ref) { |
|
var viewport = _ref.viewport, |
|
subject = _ref.subject, |
|
center = _ref.center, |
|
dragStartTime = _ref.dragStartTime, |
|
shouldUseTimeDampening = _ref.shouldUseTimeDampening; |
|
var scroll = getScroll({ |
|
dragStartTime: dragStartTime, |
|
container: viewport.frame, |
|
subject: subject, |
|
center: center, |
|
shouldUseTimeDampening: shouldUseTimeDampening |
|
}); |
|
return scroll && canScrollWindow(viewport, scroll) ? scroll : null; |
|
}); |
|
|
|
var getDroppableScrollChange = (function (_ref) { |
|
var droppable = _ref.droppable, |
|
subject = _ref.subject, |
|
center = _ref.center, |
|
dragStartTime = _ref.dragStartTime, |
|
shouldUseTimeDampening = _ref.shouldUseTimeDampening; |
|
var frame = droppable.frame; |
|
|
|
if (!frame) { |
|
return null; |
|
} |
|
|
|
var scroll = getScroll({ |
|
dragStartTime: dragStartTime, |
|
container: frame.pageMarginBox, |
|
subject: subject, |
|
center: center, |
|
shouldUseTimeDampening: shouldUseTimeDampening |
|
}); |
|
return scroll && canScrollDroppable(droppable, scroll) ? scroll : null; |
|
}); |
|
|
|
var scroll$1 = (function (_ref) { |
|
var state = _ref.state, |
|
dragStartTime = _ref.dragStartTime, |
|
shouldUseTimeDampening = _ref.shouldUseTimeDampening, |
|
scrollWindow = _ref.scrollWindow, |
|
scrollDroppable = _ref.scrollDroppable; |
|
var center = state.current.page.borderBoxCenter; |
|
var draggable = state.dimensions.draggables[state.critical.draggable.id]; |
|
var subject = draggable.page.marginBox; |
|
|
|
if (state.isWindowScrollAllowed) { |
|
var viewport = state.viewport; |
|
|
|
var _change = getWindowScrollChange({ |
|
dragStartTime: dragStartTime, |
|
viewport: viewport, |
|
subject: subject, |
|
center: center, |
|
shouldUseTimeDampening: shouldUseTimeDampening |
|
}); |
|
|
|
if (_change) { |
|
scrollWindow(_change); |
|
return; |
|
} |
|
} |
|
|
|
var droppable = getBestScrollableDroppable({ |
|
center: center, |
|
destination: whatIsDraggedOver(state.impact), |
|
droppables: state.dimensions.droppables |
|
}); |
|
|
|
if (!droppable) { |
|
return; |
|
} |
|
|
|
var change = getDroppableScrollChange({ |
|
dragStartTime: dragStartTime, |
|
droppable: droppable, |
|
subject: subject, |
|
center: center, |
|
shouldUseTimeDampening: shouldUseTimeDampening |
|
}); |
|
|
|
if (change) { |
|
scrollDroppable(droppable.descriptor.id, change); |
|
} |
|
}); |
|
|
|
var createFluidScroller = (function (_ref) { |
|
var scrollWindow = _ref.scrollWindow, |
|
scrollDroppable = _ref.scrollDroppable; |
|
var scheduleWindowScroll = rafSchd(scrollWindow); |
|
var scheduleDroppableScroll = rafSchd(scrollDroppable); |
|
var dragging = null; |
|
|
|
var tryScroll = function tryScroll(state) { |
|
!dragging ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot fluid scroll if not dragging') : invariant(false) : void 0; |
|
var _dragging = dragging, |
|
shouldUseTimeDampening = _dragging.shouldUseTimeDampening, |
|
dragStartTime = _dragging.dragStartTime; |
|
scroll$1({ |
|
state: state, |
|
scrollWindow: scheduleWindowScroll, |
|
scrollDroppable: scheduleDroppableScroll, |
|
dragStartTime: dragStartTime, |
|
shouldUseTimeDampening: shouldUseTimeDampening |
|
}); |
|
}; |
|
|
|
var start$1 = function start$1(state) { |
|
start(); |
|
!!dragging ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot start auto scrolling when already started') : invariant(false) : void 0; |
|
var dragStartTime = Date.now(); |
|
var wasScrollNeeded = false; |
|
|
|
var fakeScrollCallback = function fakeScrollCallback() { |
|
wasScrollNeeded = true; |
|
}; |
|
|
|
scroll$1({ |
|
state: state, |
|
dragStartTime: 0, |
|
shouldUseTimeDampening: false, |
|
scrollWindow: fakeScrollCallback, |
|
scrollDroppable: fakeScrollCallback |
|
}); |
|
dragging = { |
|
dragStartTime: dragStartTime, |
|
shouldUseTimeDampening: wasScrollNeeded |
|
}; |
|
finish(); |
|
|
|
if (wasScrollNeeded) { |
|
tryScroll(state); |
|
} |
|
}; |
|
|
|
var stop = function stop() { |
|
if (!dragging) { |
|
return; |
|
} |
|
|
|
scheduleWindowScroll.cancel(); |
|
scheduleDroppableScroll.cancel(); |
|
dragging = null; |
|
}; |
|
|
|
return { |
|
start: start$1, |
|
stop: stop, |
|
scroll: tryScroll |
|
}; |
|
}); |
|
|
|
var createJumpScroller = (function (_ref) { |
|
var move = _ref.move, |
|
scrollDroppable = _ref.scrollDroppable, |
|
scrollWindow = _ref.scrollWindow; |
|
|
|
var moveByOffset = function moveByOffset(state, offset) { |
|
var client = add(state.current.client.selection, offset); |
|
move({ |
|
client: client |
|
}); |
|
}; |
|
|
|
var scrollDroppableAsMuchAsItCan = function scrollDroppableAsMuchAsItCan(droppable, change) { |
|
if (!canScrollDroppable(droppable, change)) { |
|
return change; |
|
} |
|
|
|
var overlap = getDroppableOverlap(droppable, change); |
|
|
|
if (!overlap) { |
|
scrollDroppable(droppable.descriptor.id, change); |
|
return null; |
|
} |
|
|
|
var whatTheDroppableCanScroll = subtract(change, overlap); |
|
scrollDroppable(droppable.descriptor.id, whatTheDroppableCanScroll); |
|
var remainder = subtract(change, whatTheDroppableCanScroll); |
|
return remainder; |
|
}; |
|
|
|
var scrollWindowAsMuchAsItCan = function scrollWindowAsMuchAsItCan(isWindowScrollAllowed, viewport, change) { |
|
if (!isWindowScrollAllowed) { |
|
return change; |
|
} |
|
|
|
if (!canScrollWindow(viewport, change)) { |
|
return change; |
|
} |
|
|
|
var overlap = getWindowOverlap(viewport, change); |
|
|
|
if (!overlap) { |
|
scrollWindow(change); |
|
return null; |
|
} |
|
|
|
var whatTheWindowCanScroll = subtract(change, overlap); |
|
scrollWindow(whatTheWindowCanScroll); |
|
var remainder = subtract(change, whatTheWindowCanScroll); |
|
return remainder; |
|
}; |
|
|
|
var jumpScroller = function jumpScroller(state) { |
|
var request = state.scrollJumpRequest; |
|
|
|
if (!request) { |
|
return; |
|
} |
|
|
|
var destination = whatIsDraggedOver(state.impact); |
|
!destination ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot perform a jump scroll when there is no destination') : invariant(false) : void 0; |
|
var droppableRemainder = scrollDroppableAsMuchAsItCan(state.dimensions.droppables[destination], request); |
|
|
|
if (!droppableRemainder) { |
|
return; |
|
} |
|
|
|
var viewport = state.viewport; |
|
var windowRemainder = scrollWindowAsMuchAsItCan(state.isWindowScrollAllowed, viewport, droppableRemainder); |
|
|
|
if (!windowRemainder) { |
|
return; |
|
} |
|
|
|
moveByOffset(state, windowRemainder); |
|
}; |
|
|
|
return jumpScroller; |
|
}); |
|
|
|
var createAutoScroller = (function (_ref) { |
|
var scrollDroppable = _ref.scrollDroppable, |
|
scrollWindow = _ref.scrollWindow, |
|
move = _ref.move; |
|
var fluidScroller = createFluidScroller({ |
|
scrollWindow: scrollWindow, |
|
scrollDroppable: scrollDroppable |
|
}); |
|
var jumpScroll = createJumpScroller({ |
|
move: move, |
|
scrollWindow: scrollWindow, |
|
scrollDroppable: scrollDroppable |
|
}); |
|
|
|
var scroll = function scroll(state) { |
|
if (state.phase !== 'DRAGGING') { |
|
return; |
|
} |
|
|
|
if (state.movementMode === 'FLUID') { |
|
fluidScroller.scroll(state); |
|
return; |
|
} |
|
|
|
if (!state.scrollJumpRequest) { |
|
return; |
|
} |
|
|
|
jumpScroll(state); |
|
}; |
|
|
|
var scroller = { |
|
scroll: scroll, |
|
start: fluidScroller.start, |
|
stop: fluidScroller.stop |
|
}; |
|
return scroller; |
|
}); |
|
|
|
var prefix$1 = 'data-rbd'; |
|
var dragHandle = function () { |
|
var base = prefix$1 + "-drag-handle"; |
|
return { |
|
base: base, |
|
draggableId: base + "-draggable-id", |
|
contextId: base + "-context-id" |
|
}; |
|
}(); |
|
var draggable = function () { |
|
var base = prefix$1 + "-draggable"; |
|
return { |
|
base: base, |
|
contextId: base + "-context-id", |
|
id: base + "-id" |
|
}; |
|
}(); |
|
var droppable = function () { |
|
var base = prefix$1 + "-droppable"; |
|
return { |
|
base: base, |
|
contextId: base + "-context-id", |
|
id: base + "-id" |
|
}; |
|
}(); |
|
var scrollContainer = { |
|
contextId: prefix$1 + "-scroll-container-context-id" |
|
}; |
|
|
|
var makeGetSelector = function makeGetSelector(context) { |
|
return function (attribute) { |
|
return "[" + attribute + "=\"" + context + "\"]"; |
|
}; |
|
}; |
|
|
|
var getStyles = function getStyles(rules, property) { |
|
return rules.map(function (rule) { |
|
var value = rule.styles[property]; |
|
|
|
if (!value) { |
|
return ''; |
|
} |
|
|
|
return rule.selector + " { " + value + " }"; |
|
}).join(' '); |
|
}; |
|
|
|
var noPointerEvents = 'pointer-events: none;'; |
|
var getStyles$1 = (function (contextId) { |
|
var getSelector = makeGetSelector(contextId); |
|
|
|
var dragHandle$1 = function () { |
|
var grabCursor = "\n cursor: -webkit-grab;\n cursor: grab;\n "; |
|
return { |
|
selector: getSelector(dragHandle.contextId), |
|
styles: { |
|
always: "\n -webkit-touch-callout: none;\n -webkit-tap-highlight-color: rgba(0,0,0,0);\n touch-action: manipulation;\n ", |
|
resting: grabCursor, |
|
dragging: noPointerEvents, |
|
dropAnimating: grabCursor |
|
} |
|
}; |
|
}(); |
|
|
|
var draggable$1 = function () { |
|
var transition = "\n transition: " + transitions.outOfTheWay + ";\n "; |
|
return { |
|
selector: getSelector(draggable.contextId), |
|
styles: { |
|
dragging: transition, |
|
dropAnimating: transition, |
|
userCancel: transition |
|
} |
|
}; |
|
}(); |
|
|
|
var droppable$1 = { |
|
selector: getSelector(droppable.contextId), |
|
styles: { |
|
always: "overflow-anchor: none;" |
|
} |
|
}; |
|
var body = { |
|
selector: 'body', |
|
styles: { |
|
dragging: "\n cursor: grabbing;\n cursor: -webkit-grabbing;\n user-select: none;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n overflow-anchor: none;\n " |
|
} |
|
}; |
|
var rules = [draggable$1, dragHandle$1, droppable$1, body]; |
|
return { |
|
always: getStyles(rules, 'always'), |
|
resting: getStyles(rules, 'resting'), |
|
dragging: getStyles(rules, 'dragging'), |
|
dropAnimating: getStyles(rules, 'dropAnimating'), |
|
userCancel: getStyles(rules, 'userCancel') |
|
}; |
|
}); |
|
|
|
var useIsomorphicLayoutEffect = typeof window !== 'undefined' && typeof window.document !== 'undefined' && typeof window.document.createElement !== 'undefined' ? useLayoutEffect : useEffect; |
|
|
|
var getHead = function getHead() { |
|
var head = document.querySelector('head'); |
|
!head ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot find the head to append a style to') : invariant(false) : void 0; |
|
return head; |
|
}; |
|
|
|
var createStyleEl = function createStyleEl(nonce) { |
|
var el = document.createElement('style'); |
|
|
|
if (nonce) { |
|
el.setAttribute('nonce', nonce); |
|
} |
|
|
|
el.type = 'text/css'; |
|
return el; |
|
}; |
|
|
|
function useStyleMarshal(contextId, nonce) { |
|
var styles = useMemo(function () { |
|
return getStyles$1(contextId); |
|
}, [contextId]); |
|
var alwaysRef = useRef(null); |
|
var dynamicRef = useRef(null); |
|
var setDynamicStyle = useCallback(memoizeOne(function (proposed) { |
|
var el = dynamicRef.current; |
|
!el ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot set dynamic style element if it is not set') : invariant(false) : void 0; |
|
el.textContent = proposed; |
|
}), []); |
|
var setAlwaysStyle = useCallback(function (proposed) { |
|
var el = alwaysRef.current; |
|
!el ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot set dynamic style element if it is not set') : invariant(false) : void 0; |
|
el.textContent = proposed; |
|
}, []); |
|
useIsomorphicLayoutEffect(function () { |
|
!(!alwaysRef.current && !dynamicRef.current) ? process.env.NODE_ENV !== "production" ? invariant(false, 'style elements already mounted') : invariant(false) : void 0; |
|
var always = createStyleEl(nonce); |
|
var dynamic = createStyleEl(nonce); |
|
alwaysRef.current = always; |
|
dynamicRef.current = dynamic; |
|
always.setAttribute(prefix$1 + "-always", contextId); |
|
dynamic.setAttribute(prefix$1 + "-dynamic", contextId); |
|
getHead().appendChild(always); |
|
getHead().appendChild(dynamic); |
|
setAlwaysStyle(styles.always); |
|
setDynamicStyle(styles.resting); |
|
return function () { |
|
var remove = function remove(ref) { |
|
var current = ref.current; |
|
!current ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot unmount ref as it is not set') : invariant(false) : void 0; |
|
getHead().removeChild(current); |
|
ref.current = null; |
|
}; |
|
|
|
remove(alwaysRef); |
|
remove(dynamicRef); |
|
}; |
|
}, [nonce, setAlwaysStyle, setDynamicStyle, styles.always, styles.resting, contextId]); |
|
var dragging = useCallback(function () { |
|
return setDynamicStyle(styles.dragging); |
|
}, [setDynamicStyle, styles.dragging]); |
|
var dropping = useCallback(function (reason) { |
|
if (reason === 'DROP') { |
|
setDynamicStyle(styles.dropAnimating); |
|
return; |
|
} |
|
|
|
setDynamicStyle(styles.userCancel); |
|
}, [setDynamicStyle, styles.dropAnimating, styles.userCancel]); |
|
var resting = useCallback(function () { |
|
if (!dynamicRef.current) { |
|
return; |
|
} |
|
|
|
setDynamicStyle(styles.resting); |
|
}, [setDynamicStyle, styles.resting]); |
|
var marshal = useMemo(function () { |
|
return { |
|
dragging: dragging, |
|
dropping: dropping, |
|
resting: resting |
|
}; |
|
}, [dragging, dropping, resting]); |
|
return marshal; |
|
} |
|
|
|
var getWindowFromEl = (function (el) { |
|
return el && el.ownerDocument ? el.ownerDocument.defaultView : window; |
|
}); |
|
|
|
function isHtmlElement(el) { |
|
return el instanceof getWindowFromEl(el).HTMLElement; |
|
} |
|
|
|
function findDragHandle(contextId, draggableId) { |
|
var selector = "[" + dragHandle.contextId + "=\"" + contextId + "\"]"; |
|
var possible = toArray(document.querySelectorAll(selector)); |
|
|
|
if (!possible.length) { |
|
process.env.NODE_ENV !== "production" ? warning("Unable to find any drag handles in the context \"" + contextId + "\"") : void 0; |
|
return null; |
|
} |
|
|
|
var handle = find(possible, function (el) { |
|
return el.getAttribute(dragHandle.draggableId) === draggableId; |
|
}); |
|
|
|
if (!handle) { |
|
process.env.NODE_ENV !== "production" ? warning("Unable to find drag handle with id \"" + draggableId + "\" as no handle with a matching id was found") : void 0; |
|
return null; |
|
} |
|
|
|
if (!isHtmlElement(handle)) { |
|
process.env.NODE_ENV !== "production" ? warning('drag handle needs to be a HTMLElement') : void 0; |
|
return null; |
|
} |
|
|
|
return handle; |
|
} |
|
|
|
function useFocusMarshal(contextId) { |
|
var entriesRef = useRef({}); |
|
var recordRef = useRef(null); |
|
var restoreFocusFrameRef = useRef(null); |
|
var isMountedRef = useRef(false); |
|
var register = useCallback(function register(id, focus) { |
|
var entry = { |
|
id: id, |
|
focus: focus |
|
}; |
|
entriesRef.current[id] = entry; |
|
return function unregister() { |
|
var entries = entriesRef.current; |
|
var current = entries[id]; |
|
|
|
if (current !== entry) { |
|
delete entries[id]; |
|
} |
|
}; |
|
}, []); |
|
var tryGiveFocus = useCallback(function tryGiveFocus(tryGiveFocusTo) { |
|
var handle = findDragHandle(contextId, tryGiveFocusTo); |
|
|
|
if (handle && handle !== document.activeElement) { |
|
handle.focus(); |
|
} |
|
}, [contextId]); |
|
var tryShiftRecord = useCallback(function tryShiftRecord(previous, redirectTo) { |
|
if (recordRef.current === previous) { |
|
recordRef.current = redirectTo; |
|
} |
|
}, []); |
|
var tryRestoreFocusRecorded = useCallback(function tryRestoreFocusRecorded() { |
|
if (restoreFocusFrameRef.current) { |
|
return; |
|
} |
|
|
|
if (!isMountedRef.current) { |
|
return; |
|
} |
|
|
|
restoreFocusFrameRef.current = requestAnimationFrame(function () { |
|
restoreFocusFrameRef.current = null; |
|
var record = recordRef.current; |
|
|
|
if (record) { |
|
tryGiveFocus(record); |
|
} |
|
}); |
|
}, [tryGiveFocus]); |
|
var tryRecordFocus = useCallback(function tryRecordFocus(id) { |
|
recordRef.current = null; |
|
var focused = document.activeElement; |
|
|
|
if (!focused) { |
|
return; |
|
} |
|
|
|
if (focused.getAttribute(dragHandle.draggableId) !== id) { |
|
return; |
|
} |
|
|
|
recordRef.current = id; |
|
}, []); |
|
useIsomorphicLayoutEffect(function () { |
|
isMountedRef.current = true; |
|
return function clearFrameOnUnmount() { |
|
isMountedRef.current = false; |
|
var frameId = restoreFocusFrameRef.current; |
|
|
|
if (frameId) { |
|
cancelAnimationFrame(frameId); |
|
} |
|
}; |
|
}, []); |
|
var marshal = useMemo(function () { |
|
return { |
|
register: register, |
|
tryRecordFocus: tryRecordFocus, |
|
tryRestoreFocusRecorded: tryRestoreFocusRecorded, |
|
tryShiftRecord: tryShiftRecord |
|
}; |
|
}, [register, tryRecordFocus, tryRestoreFocusRecorded, tryShiftRecord]); |
|
return marshal; |
|
} |
|
|
|
function createRegistry() { |
|
var entries = { |
|
draggables: {}, |
|
droppables: {} |
|
}; |
|
var subscribers = []; |
|
|
|
function subscribe(cb) { |
|
subscribers.push(cb); |
|
return function unsubscribe() { |
|
var index = subscribers.indexOf(cb); |
|
|
|
if (index === -1) { |
|
return; |
|
} |
|
|
|
subscribers.splice(index, 1); |
|
}; |
|
} |
|
|
|
function notify(event) { |
|
if (subscribers.length) { |
|
subscribers.forEach(function (cb) { |
|
return cb(event); |
|
}); |
|
} |
|
} |
|
|
|
function findDraggableById(id) { |
|
return entries.draggables[id] || null; |
|
} |
|
|
|
function getDraggableById(id) { |
|
var entry = findDraggableById(id); |
|
!entry ? process.env.NODE_ENV !== "production" ? invariant(false, "Cannot find draggable entry with id [" + id + "]") : invariant(false) : void 0; |
|
return entry; |
|
} |
|
|
|
var draggableAPI = { |
|
register: function register(entry) { |
|
entries.draggables[entry.descriptor.id] = entry; |
|
notify({ |
|
type: 'ADDITION', |
|
value: entry |
|
}); |
|
}, |
|
update: function update(entry, last) { |
|
var current = entries.draggables[last.descriptor.id]; |
|
|
|
if (!current) { |
|
return; |
|
} |
|
|
|
if (current.uniqueId !== entry.uniqueId) { |
|
return; |
|
} |
|
|
|
delete entries.draggables[last.descriptor.id]; |
|
entries.draggables[entry.descriptor.id] = entry; |
|
}, |
|
unregister: function unregister(entry) { |
|
var draggableId = entry.descriptor.id; |
|
var current = findDraggableById(draggableId); |
|
|
|
if (!current) { |
|
return; |
|
} |
|
|
|
if (entry.uniqueId !== current.uniqueId) { |
|
return; |
|
} |
|
|
|
delete entries.draggables[draggableId]; |
|
notify({ |
|
type: 'REMOVAL', |
|
value: entry |
|
}); |
|
}, |
|
getById: getDraggableById, |
|
findById: findDraggableById, |
|
exists: function exists(id) { |
|
return Boolean(findDraggableById(id)); |
|
}, |
|
getAllByType: function getAllByType(type) { |
|
return values(entries.draggables).filter(function (entry) { |
|
return entry.descriptor.type === type; |
|
}); |
|
} |
|
}; |
|
|
|
function findDroppableById(id) { |
|
return entries.droppables[id] || null; |
|
} |
|
|
|
function getDroppableById(id) { |
|
var entry = findDroppableById(id); |
|
!entry ? process.env.NODE_ENV !== "production" ? invariant(false, "Cannot find droppable entry with id [" + id + "]") : invariant(false) : void 0; |
|
return entry; |
|
} |
|
|
|
var droppableAPI = { |
|
register: function register(entry) { |
|
entries.droppables[entry.descriptor.id] = entry; |
|
}, |
|
unregister: function unregister(entry) { |
|
var current = findDroppableById(entry.descriptor.id); |
|
|
|
if (!current) { |
|
return; |
|
} |
|
|
|
if (entry.uniqueId !== current.uniqueId) { |
|
return; |
|
} |
|
|
|
delete entries.droppables[entry.descriptor.id]; |
|
}, |
|
getById: getDroppableById, |
|
findById: findDroppableById, |
|
exists: function exists(id) { |
|
return Boolean(findDroppableById(id)); |
|
}, |
|
getAllByType: function getAllByType(type) { |
|
return values(entries.droppables).filter(function (entry) { |
|
return entry.descriptor.type === type; |
|
}); |
|
} |
|
}; |
|
|
|
function clean() { |
|
entries.draggables = {}; |
|
entries.droppables = {}; |
|
subscribers.length = 0; |
|
} |
|
|
|
return { |
|
draggable: draggableAPI, |
|
droppable: droppableAPI, |
|
subscribe: subscribe, |
|
clean: clean |
|
}; |
|
} |
|
|
|
function useRegistry() { |
|
var registry = useMemo(createRegistry, []); |
|
useEffect(function () { |
|
return function unmount() { |
|
requestAnimationFrame(registry.clean); |
|
}; |
|
}, [registry]); |
|
return registry; |
|
} |
|
|
|
var StoreContext = React.createContext(null); |
|
|
|
var getBodyElement = (function () { |
|
var body = document.body; |
|
!body ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot find document.body') : invariant(false) : void 0; |
|
return body; |
|
}); |
|
|
|
var visuallyHidden = { |
|
position: 'absolute', |
|
width: '1px', |
|
height: '1px', |
|
margin: '-1px', |
|
border: '0', |
|
padding: '0', |
|
overflow: 'hidden', |
|
clip: 'rect(0 0 0 0)', |
|
'clip-path': 'inset(100%)' |
|
}; |
|
|
|
var getId = function getId(contextId) { |
|
return "rbd-announcement-" + contextId; |
|
}; |
|
function useAnnouncer(contextId) { |
|
var id = useMemo(function () { |
|
return getId(contextId); |
|
}, [contextId]); |
|
var ref = useRef(null); |
|
useEffect(function setup() { |
|
var el = document.createElement('div'); |
|
ref.current = el; |
|
el.id = id; |
|
el.setAttribute('aria-live', 'assertive'); |
|
el.setAttribute('aria-atomic', 'true'); |
|
|
|
_extends(el.style, visuallyHidden); |
|
|
|
getBodyElement().appendChild(el); |
|
return function cleanup() { |
|
setTimeout(function remove() { |
|
var body = getBodyElement(); |
|
|
|
if (body.contains(el)) { |
|
body.removeChild(el); |
|
} |
|
|
|
if (el === ref.current) { |
|
ref.current = null; |
|
} |
|
}); |
|
}; |
|
}, [id]); |
|
var announce = useCallback(function (message) { |
|
var el = ref.current; |
|
|
|
if (el) { |
|
el.textContent = message; |
|
return; |
|
} |
|
|
|
process.env.NODE_ENV !== "production" ? warning("\n A screen reader message was trying to be announced but it was unable to do so.\n This can occur if you unmount your <DragDropContext /> in your onDragEnd.\n Consider calling provided.announce() before the unmount so that the instruction will\n not be lost for users relying on a screen reader.\n\n Message not passed to screen reader:\n\n \"" + message + "\"\n ") : void 0; |
|
}, []); |
|
return announce; |
|
} |
|
|
|
var count = 0; |
|
var defaults = { |
|
separator: '::' |
|
}; |
|
function reset() { |
|
count = 0; |
|
} |
|
function useUniqueId(prefix, options) { |
|
if (options === void 0) { |
|
options = defaults; |
|
} |
|
|
|
return useMemo(function () { |
|
return "" + prefix + options.separator + count++; |
|
}, [options.separator, prefix]); |
|
} |
|
|
|
function getElementId(_ref) { |
|
var contextId = _ref.contextId, |
|
uniqueId = _ref.uniqueId; |
|
return "rbd-hidden-text-" + contextId + "-" + uniqueId; |
|
} |
|
function useHiddenTextElement(_ref2) { |
|
var contextId = _ref2.contextId, |
|
text = _ref2.text; |
|
var uniqueId = useUniqueId('hidden-text', { |
|
separator: '-' |
|
}); |
|
var id = useMemo(function () { |
|
return getElementId({ |
|
contextId: contextId, |
|
uniqueId: uniqueId |
|
}); |
|
}, [uniqueId, contextId]); |
|
useEffect(function mount() { |
|
var el = document.createElement('div'); |
|
el.id = id; |
|
el.textContent = text; |
|
el.style.display = 'none'; |
|
getBodyElement().appendChild(el); |
|
return function unmount() { |
|
var body = getBodyElement(); |
|
|
|
if (body.contains(el)) { |
|
body.removeChild(el); |
|
} |
|
}; |
|
}, [id, text]); |
|
return id; |
|
} |
|
|
|
var AppContext = React.createContext(null); |
|
|
|
var peerDependencies = { |
|
react: "^16.8.5 || ^17.0.0", |
|
"react-dom": "^16.8.5 || ^17.0.0" |
|
}; |
|
|
|
var semver = /(\d+)\.(\d+)\.(\d+)/; |
|
|
|
var getVersion = function getVersion(value) { |
|
var result = semver.exec(value); |
|
!(result != null) ? process.env.NODE_ENV !== "production" ? invariant(false, "Unable to parse React version " + value) : invariant(false) : void 0; |
|
var major = Number(result[1]); |
|
var minor = Number(result[2]); |
|
var patch = Number(result[3]); |
|
return { |
|
major: major, |
|
minor: minor, |
|
patch: patch, |
|
raw: value |
|
}; |
|
}; |
|
|
|
var isSatisfied = function isSatisfied(expected, actual) { |
|
if (actual.major > expected.major) { |
|
return true; |
|
} |
|
|
|
if (actual.major < expected.major) { |
|
return false; |
|
} |
|
|
|
if (actual.minor > expected.minor) { |
|
return true; |
|
} |
|
|
|
if (actual.minor < expected.minor) { |
|
return false; |
|
} |
|
|
|
return actual.patch >= expected.patch; |
|
}; |
|
|
|
var checkReactVersion = (function (peerDepValue, actualValue) { |
|
var peerDep = getVersion(peerDepValue); |
|
var actual = getVersion(actualValue); |
|
|
|
if (isSatisfied(peerDep, actual)) { |
|
return; |
|
} |
|
|
|
process.env.NODE_ENV !== "production" ? warning("\n React version: [" + actual.raw + "]\n does not satisfy expected peer dependency version: [" + peerDep.raw + "]\n\n This can result in run time bugs, and even fatal crashes\n ") : void 0; |
|
}); |
|
|
|
var suffix = "\n We expect a html5 doctype: <!doctype html>\n This is to ensure consistent browser layout and measurement\n\n More information: https://github.com/atlassian/react-beautiful-dnd/blob/master/docs/guides/doctype.md\n"; |
|
var checkDoctype = (function (doc) { |
|
var doctype = doc.doctype; |
|
|
|
if (!doctype) { |
|
process.env.NODE_ENV !== "production" ? warning("\n No <!doctype html> found.\n\n " + suffix + "\n ") : void 0; |
|
return; |
|
} |
|
|
|
if (doctype.name.toLowerCase() !== 'html') { |
|
process.env.NODE_ENV !== "production" ? warning("\n Unexpected <!doctype> found: (" + doctype.name + ")\n\n " + suffix + "\n ") : void 0; |
|
} |
|
|
|
if (doctype.publicId !== '') { |
|
process.env.NODE_ENV !== "production" ? warning("\n Unexpected <!doctype> publicId found: (" + doctype.publicId + ")\n A html5 doctype does not have a publicId\n\n " + suffix + "\n ") : void 0; |
|
} |
|
}); |
|
|
|
function useDev(useHook) { |
|
if (process.env.NODE_ENV !== 'production') { |
|
useHook(); |
|
} |
|
} |
|
|
|
function useDevSetupWarning(fn, inputs) { |
|
useDev(function () { |
|
useEffect(function () { |
|
try { |
|
fn(); |
|
} catch (e) { |
|
error("\n A setup problem was encountered.\n\n > " + e.message + "\n "); |
|
} |
|
}, inputs); |
|
}); |
|
} |
|
|
|
function useStartupValidation() { |
|
useDevSetupWarning(function () { |
|
checkReactVersion(peerDependencies.react, React.version); |
|
checkDoctype(document); |
|
}, []); |
|
} |
|
|
|
function usePrevious(current) { |
|
var ref = useRef(current); |
|
useEffect(function () { |
|
ref.current = current; |
|
}); |
|
return ref; |
|
} |
|
|
|
function create() { |
|
var lock = null; |
|
|
|
function isClaimed() { |
|
return Boolean(lock); |
|
} |
|
|
|
function isActive(value) { |
|
return value === lock; |
|
} |
|
|
|
function claim(abandon) { |
|
!!lock ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot claim lock as it is already claimed') : invariant(false) : void 0; |
|
var newLock = { |
|
abandon: abandon |
|
}; |
|
lock = newLock; |
|
return newLock; |
|
} |
|
|
|
function release() { |
|
!lock ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot release lock when there is no lock') : invariant(false) : void 0; |
|
lock = null; |
|
} |
|
|
|
function tryAbandon() { |
|
if (lock) { |
|
lock.abandon(); |
|
release(); |
|
} |
|
} |
|
|
|
return { |
|
isClaimed: isClaimed, |
|
isActive: isActive, |
|
claim: claim, |
|
release: release, |
|
tryAbandon: tryAbandon |
|
}; |
|
} |
|
|
|
var tab = 9; |
|
var enter = 13; |
|
var escape = 27; |
|
var space = 32; |
|
var pageUp = 33; |
|
var pageDown = 34; |
|
var end = 35; |
|
var home = 36; |
|
var arrowLeft = 37; |
|
var arrowUp = 38; |
|
var arrowRight = 39; |
|
var arrowDown = 40; |
|
|
|
var _preventedKeys; |
|
var preventedKeys = (_preventedKeys = {}, _preventedKeys[enter] = true, _preventedKeys[tab] = true, _preventedKeys); |
|
var preventStandardKeyEvents = (function (event) { |
|
if (preventedKeys[event.keyCode]) { |
|
event.preventDefault(); |
|
} |
|
}); |
|
|
|
var supportedEventName = function () { |
|
var base = 'visibilitychange'; |
|
|
|
if (typeof document === 'undefined') { |
|
return base; |
|
} |
|
|
|
var candidates = [base, "ms" + base, "webkit" + base, "moz" + base, "o" + base]; |
|
var supported = find(candidates, function (eventName) { |
|
return "on" + eventName in document; |
|
}); |
|
return supported || base; |
|
}(); |
|
|
|
var primaryButton = 0; |
|
var sloppyClickThreshold = 5; |
|
|
|
function isSloppyClickThresholdExceeded(original, current) { |
|
return Math.abs(current.x - original.x) >= sloppyClickThreshold || Math.abs(current.y - original.y) >= sloppyClickThreshold; |
|
} |
|
|
|
var idle$1 = { |
|
type: 'IDLE' |
|
}; |
|
|
|
function getCaptureBindings(_ref) { |
|
var cancel = _ref.cancel, |
|
completed = _ref.completed, |
|
getPhase = _ref.getPhase, |
|
setPhase = _ref.setPhase; |
|
return [{ |
|
eventName: 'mousemove', |
|
fn: function fn(event) { |
|
var button = event.button, |
|
clientX = event.clientX, |
|
clientY = event.clientY; |
|
|
|
if (button !== primaryButton) { |
|
return; |
|
} |
|
|
|
var point = { |
|
x: clientX, |
|
y: clientY |
|
}; |
|
var phase = getPhase(); |
|
|
|
if (phase.type === 'DRAGGING') { |
|
event.preventDefault(); |
|
phase.actions.move(point); |
|
return; |
|
} |
|
|
|
!(phase.type === 'PENDING') ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot be IDLE') : invariant(false) : void 0; |
|
var pending = phase.point; |
|
|
|
if (!isSloppyClickThresholdExceeded(pending, point)) { |
|
return; |
|
} |
|
|
|
event.preventDefault(); |
|
var actions = phase.actions.fluidLift(point); |
|
setPhase({ |
|
type: 'DRAGGING', |
|
actions: actions |
|
}); |
|
} |
|
}, { |
|
eventName: 'mouseup', |
|
fn: function fn(event) { |
|
var phase = getPhase(); |
|
|
|
if (phase.type !== 'DRAGGING') { |
|
cancel(); |
|
return; |
|
} |
|
|
|
event.preventDefault(); |
|
phase.actions.drop({ |
|
shouldBlockNextClick: true |
|
}); |
|
completed(); |
|
} |
|
}, { |
|
eventName: 'mousedown', |
|
fn: function fn(event) { |
|
if (getPhase().type === 'DRAGGING') { |
|
event.preventDefault(); |
|
} |
|
|
|
cancel(); |
|
} |
|
}, { |
|
eventName: 'keydown', |
|
fn: function fn(event) { |
|
var phase = getPhase(); |
|
|
|
if (phase.type === 'PENDING') { |
|
cancel(); |
|
return; |
|
} |
|
|
|
if (event.keyCode === escape) { |
|
event.preventDefault(); |
|
cancel(); |
|
return; |
|
} |
|
|
|
preventStandardKeyEvents(event); |
|
} |
|
}, { |
|
eventName: 'resize', |
|
fn: cancel |
|
}, { |
|
eventName: 'scroll', |
|
options: { |
|
passive: true, |
|
capture: false |
|
}, |
|
fn: function fn() { |
|
if (getPhase().type === 'PENDING') { |
|
cancel(); |
|
} |
|
} |
|
}, { |
|
eventName: 'webkitmouseforcedown', |
|
fn: function fn(event) { |
|
var phase = getPhase(); |
|
!(phase.type !== 'IDLE') ? process.env.NODE_ENV !== "production" ? invariant(false, 'Unexpected phase') : invariant(false) : void 0; |
|
|
|
if (phase.actions.shouldRespectForcePress()) { |
|
cancel(); |
|
return; |
|
} |
|
|
|
event.preventDefault(); |
|
} |
|
}, { |
|
eventName: supportedEventName, |
|
fn: cancel |
|
}]; |
|
} |
|
|
|
function useMouseSensor(api) { |
|
var phaseRef = useRef(idle$1); |
|
var unbindEventsRef = useRef(noop); |
|
var startCaptureBinding = useMemo(function () { |
|
return { |
|
eventName: 'mousedown', |
|
fn: function onMouseDown(event) { |
|
if (event.defaultPrevented) { |
|
return; |
|
} |
|
|
|
if (event.button !== primaryButton) { |
|
return; |
|
} |
|
|
|
if (event.ctrlKey || event.metaKey || event.shiftKey || event.altKey) { |
|
return; |
|
} |
|
|
|
var draggableId = api.findClosestDraggableId(event); |
|
|
|
if (!draggableId) { |
|
return; |
|
} |
|
|
|
var actions = api.tryGetLock(draggableId, stop, { |
|
sourceEvent: event |
|
}); |
|
|
|
if (!actions) { |
|
return; |
|
} |
|
|
|
event.preventDefault(); |
|
var point = { |
|
x: event.clientX, |
|
y: event.clientY |
|
}; |
|
unbindEventsRef.current(); |
|
startPendingDrag(actions, point); |
|
} |
|
}; |
|
}, [api]); |
|
var preventForcePressBinding = useMemo(function () { |
|
return { |
|
eventName: 'webkitmouseforcewillbegin', |
|
fn: function fn(event) { |
|
if (event.defaultPrevented) { |
|
return; |
|
} |
|
|
|
var id = api.findClosestDraggableId(event); |
|
|
|
if (!id) { |
|
return; |
|
} |
|
|
|
var options = api.findOptionsForDraggable(id); |
|
|
|
if (!options) { |
|
return; |
|
} |
|
|
|
if (options.shouldRespectForcePress) { |
|
return; |
|
} |
|
|
|
if (!api.canGetLock(id)) { |
|
return; |
|
} |
|
|
|
event.preventDefault(); |
|
} |
|
}; |
|
}, [api]); |
|
var listenForCapture = useCallback(function listenForCapture() { |
|
var options = { |
|
passive: false, |
|
capture: true |
|
}; |
|
unbindEventsRef.current = bindEvents(window, [preventForcePressBinding, startCaptureBinding], options); |
|
}, [preventForcePressBinding, startCaptureBinding]); |
|
var stop = useCallback(function () { |
|
var current = phaseRef.current; |
|
|
|
if (current.type === 'IDLE') { |
|
return; |
|
} |
|
|
|
phaseRef.current = idle$1; |
|
unbindEventsRef.current(); |
|
listenForCapture(); |
|
}, [listenForCapture]); |
|
var cancel = useCallback(function () { |
|
var phase = phaseRef.current; |
|
stop(); |
|
|
|
if (phase.type === 'DRAGGING') { |
|
phase.actions.cancel({ |
|
shouldBlockNextClick: true |
|
}); |
|
} |
|
|
|
if (phase.type === 'PENDING') { |
|
phase.actions.abort(); |
|
} |
|
}, [stop]); |
|
var bindCapturingEvents = useCallback(function bindCapturingEvents() { |
|
var options = { |
|
capture: true, |
|
passive: false |
|
}; |
|
var bindings = getCaptureBindings({ |
|
cancel: cancel, |
|
completed: stop, |
|
getPhase: function getPhase() { |
|
return phaseRef.current; |
|
}, |
|
setPhase: function setPhase(phase) { |
|
phaseRef.current = phase; |
|
} |
|
}); |
|
unbindEventsRef.current = bindEvents(window, bindings, options); |
|
}, [cancel, stop]); |
|
var startPendingDrag = useCallback(function startPendingDrag(actions, point) { |
|
!(phaseRef.current.type === 'IDLE') ? process.env.NODE_ENV !== "production" ? invariant(false, 'Expected to move from IDLE to PENDING drag') : invariant(false) : void 0; |
|
phaseRef.current = { |
|
type: 'PENDING', |
|
point: point, |
|
actions: actions |
|
}; |
|
bindCapturingEvents(); |
|
}, [bindCapturingEvents]); |
|
useIsomorphicLayoutEffect(function mount() { |
|
listenForCapture(); |
|
return function unmount() { |
|
unbindEventsRef.current(); |
|
}; |
|
}, [listenForCapture]); |
|
} |
|
|
|
var _scrollJumpKeys; |
|
|
|
function noop$1() {} |
|
|
|
var scrollJumpKeys = (_scrollJumpKeys = {}, _scrollJumpKeys[pageDown] = true, _scrollJumpKeys[pageUp] = true, _scrollJumpKeys[home] = true, _scrollJumpKeys[end] = true, _scrollJumpKeys); |
|
|
|
function getDraggingBindings(actions, stop) { |
|
function cancel() { |
|
stop(); |
|
actions.cancel(); |
|
} |
|
|
|
function drop() { |
|
stop(); |
|
actions.drop(); |
|
} |
|
|
|
return [{ |
|
eventName: 'keydown', |
|
fn: function fn(event) { |
|
if (event.keyCode === escape) { |
|
event.preventDefault(); |
|
cancel(); |
|
return; |
|
} |
|
|
|
if (event.keyCode === space) { |
|
event.preventDefault(); |
|
drop(); |
|
return; |
|
} |
|
|
|
if (event.keyCode === arrowDown) { |
|
event.preventDefault(); |
|
actions.moveDown(); |
|
return; |
|
} |
|
|
|
if (event.keyCode === arrowUp) { |
|
event.preventDefault(); |
|
actions.moveUp(); |
|
return; |
|
} |
|
|
|
if (event.keyCode === arrowRight) { |
|
event.preventDefault(); |
|
actions.moveRight(); |
|
return; |
|
} |
|
|
|
if (event.keyCode === arrowLeft) { |
|
event.preventDefault(); |
|
actions.moveLeft(); |
|
return; |
|
} |
|
|
|
if (scrollJumpKeys[event.keyCode]) { |
|
event.preventDefault(); |
|
return; |
|
} |
|
|
|
preventStandardKeyEvents(event); |
|
} |
|
}, { |
|
eventName: 'mousedown', |
|
fn: cancel |
|
}, { |
|
eventName: 'mouseup', |
|
fn: cancel |
|
}, { |
|
eventName: 'click', |
|
fn: cancel |
|
}, { |
|
eventName: 'touchstart', |
|
fn: cancel |
|
}, { |
|
eventName: 'resize', |
|
fn: cancel |
|
}, { |
|
eventName: 'wheel', |
|
fn: cancel, |
|
options: { |
|
passive: true |
|
} |
|
}, { |
|
eventName: supportedEventName, |
|
fn: cancel |
|
}]; |
|
} |
|
|
|
function useKeyboardSensor(api) { |
|
var unbindEventsRef = useRef(noop$1); |
|
var startCaptureBinding = useMemo(function () { |
|
return { |
|
eventName: 'keydown', |
|
fn: function onKeyDown(event) { |
|
if (event.defaultPrevented) { |
|
return; |
|
} |
|
|
|
if (event.keyCode !== space) { |
|
return; |
|
} |
|
|
|
var draggableId = api.findClosestDraggableId(event); |
|
|
|
if (!draggableId) { |
|
return; |
|
} |
|
|
|
var preDrag = api.tryGetLock(draggableId, stop, { |
|
sourceEvent: event |
|
}); |
|
|
|
if (!preDrag) { |
|
return; |
|
} |
|
|
|
event.preventDefault(); |
|
var isCapturing = true; |
|
var actions = preDrag.snapLift(); |
|
unbindEventsRef.current(); |
|
|
|
function stop() { |
|
!isCapturing ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot stop capturing a keyboard drag when not capturing') : invariant(false) : void 0; |
|
isCapturing = false; |
|
unbindEventsRef.current(); |
|
listenForCapture(); |
|
} |
|
|
|
unbindEventsRef.current = bindEvents(window, getDraggingBindings(actions, stop), { |
|
capture: true, |
|
passive: false |
|
}); |
|
} |
|
}; |
|
}, [api]); |
|
var listenForCapture = useCallback(function tryStartCapture() { |
|
var options = { |
|
passive: false, |
|
capture: true |
|
}; |
|
unbindEventsRef.current = bindEvents(window, [startCaptureBinding], options); |
|
}, [startCaptureBinding]); |
|
useIsomorphicLayoutEffect(function mount() { |
|
listenForCapture(); |
|
return function unmount() { |
|
unbindEventsRef.current(); |
|
}; |
|
}, [listenForCapture]); |
|
} |
|
|
|
var idle$2 = { |
|
type: 'IDLE' |
|
}; |
|
var timeForLongPress = 120; |
|
var forcePressThreshold = 0.15; |
|
|
|
function getWindowBindings(_ref) { |
|
var cancel = _ref.cancel, |
|
getPhase = _ref.getPhase; |
|
return [{ |
|
eventName: 'orientationchange', |
|
fn: cancel |
|
}, { |
|
eventName: 'resize', |
|
fn: cancel |
|
}, { |
|
eventName: 'contextmenu', |
|
fn: function fn(event) { |
|
event.preventDefault(); |
|
} |
|
}, { |
|
eventName: 'keydown', |
|
fn: function fn(event) { |
|
if (getPhase().type !== 'DRAGGING') { |
|
cancel(); |
|
return; |
|
} |
|
|
|
if (event.keyCode === escape) { |
|
event.preventDefault(); |
|
} |
|
|
|
cancel(); |
|
} |
|
}, { |
|
eventName: supportedEventName, |
|
fn: cancel |
|
}]; |
|
} |
|
|
|
function getHandleBindings(_ref2) { |
|
var cancel = _ref2.cancel, |
|
completed = _ref2.completed, |
|
getPhase = _ref2.getPhase; |
|
return [{ |
|
eventName: 'touchmove', |
|
options: { |
|
capture: false |
|
}, |
|
fn: function fn(event) { |
|
var phase = getPhase(); |
|
|
|
if (phase.type !== 'DRAGGING') { |
|
cancel(); |
|
return; |
|
} |
|
|
|
phase.hasMoved = true; |
|
var _event$touches$ = event.touches[0], |
|
clientX = _event$touches$.clientX, |
|
clientY = _event$touches$.clientY; |
|
var point = { |
|
x: clientX, |
|
y: clientY |
|
}; |
|
event.preventDefault(); |
|
phase.actions.move(point); |
|
} |
|
}, { |
|
eventName: 'touchend', |
|
fn: function fn(event) { |
|
var phase = getPhase(); |
|
|
|
if (phase.type !== 'DRAGGING') { |
|
cancel(); |
|
return; |
|
} |
|
|
|
event.preventDefault(); |
|
phase.actions.drop({ |
|
shouldBlockNextClick: true |
|
}); |
|
completed(); |
|
} |
|
}, { |
|
eventName: 'touchcancel', |
|
fn: function fn(event) { |
|
if (getPhase().type !== 'DRAGGING') { |
|
cancel(); |
|
return; |
|
} |
|
|
|
event.preventDefault(); |
|
cancel(); |
|
} |
|
}, { |
|
eventName: 'touchforcechange', |
|
fn: function fn(event) { |
|
var phase = getPhase(); |
|
!(phase.type !== 'IDLE') ? process.env.NODE_ENV !== "production" ? invariant(false) : invariant(false) : void 0; |
|
var touch = event.touches[0]; |
|
|
|
if (!touch) { |
|
return; |
|
} |
|
|
|
var isForcePress = touch.force >= forcePressThreshold; |
|
|
|
if (!isForcePress) { |
|
return; |
|
} |
|
|
|
var shouldRespect = phase.actions.shouldRespectForcePress(); |
|
|
|
if (phase.type === 'PENDING') { |
|
if (shouldRespect) { |
|
cancel(); |
|
} |
|
|
|
return; |
|
} |
|
|
|
if (shouldRespect) { |
|
if (phase.hasMoved) { |
|
event.preventDefault(); |
|
return; |
|
} |
|
|
|
cancel(); |
|
return; |
|
} |
|
|
|
event.preventDefault(); |
|
} |
|
}, { |
|
eventName: supportedEventName, |
|
fn: cancel |
|
}]; |
|
} |
|
|
|
function useTouchSensor(api) { |
|
var phaseRef = useRef(idle$2); |
|
var unbindEventsRef = useRef(noop); |
|
var getPhase = useCallback(function getPhase() { |
|
return phaseRef.current; |
|
}, []); |
|
var setPhase = useCallback(function setPhase(phase) { |
|
phaseRef.current = phase; |
|
}, []); |
|
var startCaptureBinding = useMemo(function () { |
|
return { |
|
eventName: 'touchstart', |
|
fn: function onTouchStart(event) { |
|
if (event.defaultPrevented) { |
|
return; |
|
} |
|
|
|
var draggableId = api.findClosestDraggableId(event); |
|
|
|
if (!draggableId) { |
|
return; |
|
} |
|
|
|
var actions = api.tryGetLock(draggableId, stop, { |
|
sourceEvent: event |
|
}); |
|
|
|
if (!actions) { |
|
return; |
|
} |
|
|
|
var touch = event.touches[0]; |
|
var clientX = touch.clientX, |
|
clientY = touch.clientY; |
|
var point = { |
|
x: clientX, |
|
y: clientY |
|
}; |
|
unbindEventsRef.current(); |
|
startPendingDrag(actions, point); |
|
} |
|
}; |
|
}, [api]); |
|
var listenForCapture = useCallback(function listenForCapture() { |
|
var options = { |
|
capture: true, |
|
passive: false |
|
}; |
|
unbindEventsRef.current = bindEvents(window, [startCaptureBinding], options); |
|
}, [startCaptureBinding]); |
|
var stop = useCallback(function () { |
|
var current = phaseRef.current; |
|
|
|
if (current.type === 'IDLE') { |
|
return; |
|
} |
|
|
|
if (current.type === 'PENDING') { |
|
clearTimeout(current.longPressTimerId); |
|
} |
|
|
|
setPhase(idle$2); |
|
unbindEventsRef.current(); |
|
listenForCapture(); |
|
}, [listenForCapture, setPhase]); |
|
var cancel = useCallback(function () { |
|
var phase = phaseRef.current; |
|
stop(); |
|
|
|
if (phase.type === 'DRAGGING') { |
|
phase.actions.cancel({ |
|
shouldBlockNextClick: true |
|
}); |
|
} |
|
|
|
if (phase.type === 'PENDING') { |
|
phase.actions.abort(); |
|
} |
|
}, [stop]); |
|
var bindCapturingEvents = useCallback(function bindCapturingEvents() { |
|
var options = { |
|
capture: true, |
|
passive: false |
|
}; |
|
var args = { |
|
cancel: cancel, |
|
completed: stop, |
|
getPhase: getPhase |
|
}; |
|
var unbindTarget = bindEvents(window, getHandleBindings(args), options); |
|
var unbindWindow = bindEvents(window, getWindowBindings(args), options); |
|
|
|
unbindEventsRef.current = function unbindAll() { |
|
unbindTarget(); |
|
unbindWindow(); |
|
}; |
|
}, [cancel, getPhase, stop]); |
|
var startDragging = useCallback(function startDragging() { |
|
var phase = getPhase(); |
|
!(phase.type === 'PENDING') ? process.env.NODE_ENV !== "production" ? invariant(false, "Cannot start dragging from phase " + phase.type) : invariant(false) : void 0; |
|
var actions = phase.actions.fluidLift(phase.point); |
|
setPhase({ |
|
type: 'DRAGGING', |
|
actions: actions, |
|
hasMoved: false |
|
}); |
|
}, [getPhase, setPhase]); |
|
var startPendingDrag = useCallback(function startPendingDrag(actions, point) { |
|
!(getPhase().type === 'IDLE') ? process.env.NODE_ENV !== "production" ? invariant(false, 'Expected to move from IDLE to PENDING drag') : invariant(false) : void 0; |
|
var longPressTimerId = setTimeout(startDragging, timeForLongPress); |
|
setPhase({ |
|
type: 'PENDING', |
|
point: point, |
|
actions: actions, |
|
longPressTimerId: longPressTimerId |
|
}); |
|
bindCapturingEvents(); |
|
}, [bindCapturingEvents, getPhase, setPhase, startDragging]); |
|
useIsomorphicLayoutEffect(function mount() { |
|
listenForCapture(); |
|
return function unmount() { |
|
unbindEventsRef.current(); |
|
var phase = getPhase(); |
|
|
|
if (phase.type === 'PENDING') { |
|
clearTimeout(phase.longPressTimerId); |
|
setPhase(idle$2); |
|
} |
|
}; |
|
}, [getPhase, listenForCapture, setPhase]); |
|
useIsomorphicLayoutEffect(function webkitHack() { |
|
var unbind = bindEvents(window, [{ |
|
eventName: 'touchmove', |
|
fn: function fn() {}, |
|
options: { |
|
capture: false, |
|
passive: false |
|
} |
|
}]); |
|
return unbind; |
|
}, []); |
|
} |
|
|
|
function useValidateSensorHooks(sensorHooks) { |
|
useDev(function () { |
|
var previousRef = usePrevious(sensorHooks); |
|
useDevSetupWarning(function () { |
|
!(previousRef.current.length === sensorHooks.length) ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot change the amount of sensor hooks after mounting') : invariant(false) : void 0; |
|
}); |
|
}); |
|
} |
|
|
|
var interactiveTagNames = { |
|
input: true, |
|
button: true, |
|
textarea: true, |
|
select: true, |
|
option: true, |
|
optgroup: true, |
|
video: true, |
|
audio: true |
|
}; |
|
|
|
function isAnInteractiveElement(parent, current) { |
|
if (current == null) { |
|
return false; |
|
} |
|
|
|
var hasAnInteractiveTag = Boolean(interactiveTagNames[current.tagName.toLowerCase()]); |
|
|
|
if (hasAnInteractiveTag) { |
|
return true; |
|
} |
|
|
|
var attribute = current.getAttribute('contenteditable'); |
|
|
|
if (attribute === 'true' || attribute === '') { |
|
return true; |
|
} |
|
|
|
if (current === parent) { |
|
return false; |
|
} |
|
|
|
return isAnInteractiveElement(parent, current.parentElement); |
|
} |
|
|
|
function isEventInInteractiveElement(draggable, event) { |
|
var target = event.target; |
|
|
|
if (!isHtmlElement(target)) { |
|
return false; |
|
} |
|
|
|
return isAnInteractiveElement(draggable, target); |
|
} |
|
|
|
var getBorderBoxCenterPosition = (function (el) { |
|
return getRect(el.getBoundingClientRect()).center; |
|
}); |
|
|
|
function isElement(el) { |
|
return el instanceof getWindowFromEl(el).Element; |
|
} |
|
|
|
var supportedMatchesName = function () { |
|
var base = 'matches'; |
|
|
|
if (typeof document === 'undefined') { |
|
return base; |
|
} |
|
|
|
var candidates = [base, 'msMatchesSelector', 'webkitMatchesSelector']; |
|
var value = find(candidates, function (name) { |
|
return name in Element.prototype; |
|
}); |
|
return value || base; |
|
}(); |
|
|
|
function closestPonyfill(el, selector) { |
|
if (el == null) { |
|
return null; |
|
} |
|
|
|
if (el[supportedMatchesName](selector)) { |
|
return el; |
|
} |
|
|
|
return closestPonyfill(el.parentElement, selector); |
|
} |
|
|
|
function closest$1(el, selector) { |
|
if (el.closest) { |
|
return el.closest(selector); |
|
} |
|
|
|
return closestPonyfill(el, selector); |
|
} |
|
|
|
function getSelector(contextId) { |
|
return "[" + dragHandle.contextId + "=\"" + contextId + "\"]"; |
|
} |
|
|
|
function findClosestDragHandleFromEvent(contextId, event) { |
|
var target = event.target; |
|
|
|
if (!isElement(target)) { |
|
process.env.NODE_ENV !== "production" ? warning('event.target must be a Element') : void 0; |
|
return null; |
|
} |
|
|
|
var selector = getSelector(contextId); |
|
var handle = closest$1(target, selector); |
|
|
|
if (!handle) { |
|
return null; |
|
} |
|
|
|
if (!isHtmlElement(handle)) { |
|
process.env.NODE_ENV !== "production" ? warning('drag handle must be a HTMLElement') : void 0; |
|
return null; |
|
} |
|
|
|
return handle; |
|
} |
|
|
|
function tryGetClosestDraggableIdFromEvent(contextId, event) { |
|
var handle = findClosestDragHandleFromEvent(contextId, event); |
|
|
|
if (!handle) { |
|
return null; |
|
} |
|
|
|
return handle.getAttribute(dragHandle.draggableId); |
|
} |
|
|
|
function findDraggable(contextId, draggableId) { |
|
var selector = "[" + draggable.contextId + "=\"" + contextId + "\"]"; |
|
var possible = toArray(document.querySelectorAll(selector)); |
|
var draggable$1 = find(possible, function (el) { |
|
return el.getAttribute(draggable.id) === draggableId; |
|
}); |
|
|
|
if (!draggable$1) { |
|
return null; |
|
} |
|
|
|
if (!isHtmlElement(draggable$1)) { |
|
process.env.NODE_ENV !== "production" ? warning('Draggable element is not a HTMLElement') : void 0; |
|
return null; |
|
} |
|
|
|
return draggable$1; |
|
} |
|
|
|
function preventDefault(event) { |
|
event.preventDefault(); |
|
} |
|
|
|
function _isActive(_ref) { |
|
var expected = _ref.expected, |
|
phase = _ref.phase, |
|
isLockActive = _ref.isLockActive, |
|
shouldWarn = _ref.shouldWarn; |
|
|
|
if (!isLockActive()) { |
|
if (shouldWarn) { |
|
process.env.NODE_ENV !== "production" ? warning("\n Cannot perform action.\n The sensor no longer has an action lock.\n\n Tips:\n\n - Throw away your action handlers when forceStop() is called\n - Check actions.isActive() if you really need to\n ") : void 0; |
|
} |
|
|
|
return false; |
|
} |
|
|
|
if (expected !== phase) { |
|
if (shouldWarn) { |
|
process.env.NODE_ENV !== "production" ? warning("\n Cannot perform action.\n The actions you used belong to an outdated phase\n\n Current phase: " + expected + "\n You called an action from outdated phase: " + phase + "\n\n Tips:\n\n - Do not use preDragActions actions after calling preDragActions.lift()\n ") : void 0; |
|
} |
|
|
|
return false; |
|
} |
|
|
|
return true; |
|
} |
|
|
|
function canStart(_ref2) { |
|
var lockAPI = _ref2.lockAPI, |
|
store = _ref2.store, |
|
registry = _ref2.registry, |
|
draggableId = _ref2.draggableId; |
|
|
|
if (lockAPI.isClaimed()) { |
|
return false; |
|
} |
|
|
|
var entry = registry.draggable.findById(draggableId); |
|
|
|
if (!entry) { |
|
process.env.NODE_ENV !== "production" ? warning("Unable to find draggable with id: " + draggableId) : void 0; |
|
return false; |
|
} |
|
|
|
if (!entry.options.isEnabled) { |
|
return false; |
|
} |
|
|
|
if (!canStartDrag(store.getState(), draggableId)) { |
|
return false; |
|
} |
|
|
|
return true; |
|
} |
|
|
|
function tryStart(_ref3) { |
|
var lockAPI = _ref3.lockAPI, |
|
contextId = _ref3.contextId, |
|
store = _ref3.store, |
|
registry = _ref3.registry, |
|
draggableId = _ref3.draggableId, |
|
forceSensorStop = _ref3.forceSensorStop, |
|
sourceEvent = _ref3.sourceEvent; |
|
var shouldStart = canStart({ |
|
lockAPI: lockAPI, |
|
store: store, |
|
registry: registry, |
|
draggableId: draggableId |
|
}); |
|
|
|
if (!shouldStart) { |
|
return null; |
|
} |
|
|
|
var entry = registry.draggable.getById(draggableId); |
|
var el = findDraggable(contextId, entry.descriptor.id); |
|
|
|
if (!el) { |
|
process.env.NODE_ENV !== "production" ? warning("Unable to find draggable element with id: " + draggableId) : void 0; |
|
return null; |
|
} |
|
|
|
if (sourceEvent && !entry.options.canDragInteractiveElements && isEventInInteractiveElement(el, sourceEvent)) { |
|
return null; |
|
} |
|
|
|
var lock = lockAPI.claim(forceSensorStop || noop); |
|
var phase = 'PRE_DRAG'; |
|
|
|
function getShouldRespectForcePress() { |
|
return entry.options.shouldRespectForcePress; |
|
} |
|
|
|
function isLockActive() { |
|
return lockAPI.isActive(lock); |
|
} |
|
|
|
function tryDispatch(expected, getAction) { |
|
if (_isActive({ |
|
expected: expected, |
|
phase: phase, |
|
isLockActive: isLockActive, |
|
shouldWarn: true |
|
})) { |
|
store.dispatch(getAction()); |
|
} |
|
} |
|
|
|
var tryDispatchWhenDragging = tryDispatch.bind(null, 'DRAGGING'); |
|
|
|
function lift$1(args) { |
|
function completed() { |
|
lockAPI.release(); |
|
phase = 'COMPLETED'; |
|
} |
|
|
|
if (phase !== 'PRE_DRAG') { |
|
completed(); |
|
!(phase === 'PRE_DRAG') ? process.env.NODE_ENV !== "production" ? invariant(false, "Cannot lift in phase " + phase) : invariant(false) : void 0; |
|
} |
|
|
|
store.dispatch(lift(args.liftActionArgs)); |
|
phase = 'DRAGGING'; |
|
|
|
function finish(reason, options) { |
|
if (options === void 0) { |
|
options = { |
|
shouldBlockNextClick: false |
|
}; |
|
} |
|
|
|
args.cleanup(); |
|
|
|
if (options.shouldBlockNextClick) { |
|
var unbind = bindEvents(window, [{ |
|
eventName: 'click', |
|
fn: preventDefault, |
|
options: { |
|
once: true, |
|
passive: false, |
|
capture: true |
|
} |
|
}]); |
|
setTimeout(unbind); |
|
} |
|
|
|
completed(); |
|
store.dispatch(drop({ |
|
reason: reason |
|
})); |
|
} |
|
|
|
return _extends({ |
|
isActive: function isActive() { |
|
return _isActive({ |
|
expected: 'DRAGGING', |
|
phase: phase, |
|
isLockActive: isLockActive, |
|
shouldWarn: false |
|
}); |
|
}, |
|
shouldRespectForcePress: getShouldRespectForcePress, |
|
drop: function drop(options) { |
|
return finish('DROP', options); |
|
}, |
|
cancel: function cancel(options) { |
|
return finish('CANCEL', options); |
|
} |
|
}, args.actions); |
|
} |
|
|
|
function fluidLift(clientSelection) { |
|
var move$1 = rafSchd(function (client) { |
|
tryDispatchWhenDragging(function () { |
|
return move({ |
|
client: client |
|
}); |
|
}); |
|
}); |
|
var api = lift$1({ |
|
liftActionArgs: { |
|
id: draggableId, |
|
clientSelection: clientSelection, |
|
movementMode: 'FLUID' |
|
}, |
|
cleanup: function cleanup() { |
|
return move$1.cancel(); |
|
}, |
|
actions: { |
|
move: move$1 |
|
} |
|
}); |
|
return _extends({}, api, { |
|
move: move$1 |
|
}); |
|
} |
|
|
|
function snapLift() { |
|
var actions = { |
|
moveUp: function moveUp$1() { |
|
return tryDispatchWhenDragging(moveUp); |
|
}, |
|
moveRight: function moveRight$1() { |
|
return tryDispatchWhenDragging(moveRight); |
|
}, |
|
moveDown: function moveDown$1() { |
|
return tryDispatchWhenDragging(moveDown); |
|
}, |
|
moveLeft: function moveLeft$1() { |
|
return tryDispatchWhenDragging(moveLeft); |
|
} |
|
}; |
|
return lift$1({ |
|
liftActionArgs: { |
|
id: draggableId, |
|
clientSelection: getBorderBoxCenterPosition(el), |
|
movementMode: 'SNAP' |
|
}, |
|
cleanup: noop, |
|
actions: actions |
|
}); |
|
} |
|
|
|
function abortPreDrag() { |
|
var shouldRelease = _isActive({ |
|
expected: 'PRE_DRAG', |
|
phase: phase, |
|
isLockActive: isLockActive, |
|
shouldWarn: true |
|
}); |
|
|
|
if (shouldRelease) { |
|
lockAPI.release(); |
|
} |
|
} |
|
|
|
var preDrag = { |
|
isActive: function isActive() { |
|
return _isActive({ |
|
expected: 'PRE_DRAG', |
|
phase: phase, |
|
isLockActive: isLockActive, |
|
shouldWarn: false |
|
}); |
|
}, |
|
shouldRespectForcePress: getShouldRespectForcePress, |
|
fluidLift: fluidLift, |
|
snapLift: snapLift, |
|
abort: abortPreDrag |
|
}; |
|
return preDrag; |
|
} |
|
|
|
var defaultSensors = [useMouseSensor, useKeyboardSensor, useTouchSensor]; |
|
function useSensorMarshal(_ref4) { |
|
var contextId = _ref4.contextId, |
|
store = _ref4.store, |
|
registry = _ref4.registry, |
|
customSensors = _ref4.customSensors, |
|
enableDefaultSensors = _ref4.enableDefaultSensors; |
|
var useSensors = [].concat(enableDefaultSensors ? defaultSensors : [], customSensors || []); |
|
var lockAPI = useState(function () { |
|
return create(); |
|
})[0]; |
|
var tryAbandonLock = useCallback(function tryAbandonLock(previous, current) { |
|
if (previous.isDragging && !current.isDragging) { |
|
lockAPI.tryAbandon(); |
|
} |
|
}, [lockAPI]); |
|
useIsomorphicLayoutEffect(function listenToStore() { |
|
var previous = store.getState(); |
|
var unsubscribe = store.subscribe(function () { |
|
var current = store.getState(); |
|
tryAbandonLock(previous, current); |
|
previous = current; |
|
}); |
|
return unsubscribe; |
|
}, [lockAPI, store, tryAbandonLock]); |
|
useIsomorphicLayoutEffect(function () { |
|
return lockAPI.tryAbandon; |
|
}, [lockAPI.tryAbandon]); |
|
var canGetLock = useCallback(function (draggableId) { |
|
return canStart({ |
|
lockAPI: lockAPI, |
|
registry: registry, |
|
store: store, |
|
draggableId: draggableId |
|
}); |
|
}, [lockAPI, registry, store]); |
|
var tryGetLock = useCallback(function (draggableId, forceStop, options) { |
|
return tryStart({ |
|
lockAPI: lockAPI, |
|
registry: registry, |
|
contextId: contextId, |
|
store: store, |
|
draggableId: draggableId, |
|
forceSensorStop: forceStop, |
|
sourceEvent: options && options.sourceEvent ? options.sourceEvent : null |
|
}); |
|
}, [contextId, lockAPI, registry, store]); |
|
var findClosestDraggableId = useCallback(function (event) { |
|
return tryGetClosestDraggableIdFromEvent(contextId, event); |
|
}, [contextId]); |
|
var findOptionsForDraggable = useCallback(function (id) { |
|
var entry = registry.draggable.findById(id); |
|
return entry ? entry.options : null; |
|
}, [registry.draggable]); |
|
var tryReleaseLock = useCallback(function tryReleaseLock() { |
|
if (!lockAPI.isClaimed()) { |
|
return; |
|
} |
|
|
|
lockAPI.tryAbandon(); |
|
|
|
if (store.getState().phase !== 'IDLE') { |
|
store.dispatch(flush()); |
|
} |
|
}, [lockAPI, store]); |
|
var isLockClaimed = useCallback(lockAPI.isClaimed, [lockAPI]); |
|
var api = useMemo(function () { |
|
return { |
|
canGetLock: canGetLock, |
|
tryGetLock: tryGetLock, |
|
findClosestDraggableId: findClosestDraggableId, |
|
findOptionsForDraggable: findOptionsForDraggable, |
|
tryReleaseLock: tryReleaseLock, |
|
isLockClaimed: isLockClaimed |
|
}; |
|
}, [canGetLock, tryGetLock, findClosestDraggableId, findOptionsForDraggable, tryReleaseLock, isLockClaimed]); |
|
useValidateSensorHooks(useSensors); |
|
|
|
for (var i = 0; i < useSensors.length; i++) { |
|
useSensors[i](api); |
|
} |
|
} |
|
|
|
var createResponders = function createResponders(props) { |
|
return { |
|
onBeforeCapture: props.onBeforeCapture, |
|
onBeforeDragStart: props.onBeforeDragStart, |
|
onDragStart: props.onDragStart, |
|
onDragEnd: props.onDragEnd, |
|
onDragUpdate: props.onDragUpdate |
|
}; |
|
}; |
|
|
|
function getStore(lazyRef) { |
|
!lazyRef.current ? process.env.NODE_ENV !== "production" ? invariant(false, 'Could not find store from lazy ref') : invariant(false) : void 0; |
|
return lazyRef.current; |
|
} |
|
|
|
function App(props) { |
|
var contextId = props.contextId, |
|
setCallbacks = props.setCallbacks, |
|
sensors = props.sensors, |
|
nonce = props.nonce, |
|
dragHandleUsageInstructions = props.dragHandleUsageInstructions; |
|
var lazyStoreRef = useRef(null); |
|
useStartupValidation(); |
|
var lastPropsRef = usePrevious(props); |
|
var getResponders = useCallback(function () { |
|
return createResponders(lastPropsRef.current); |
|
}, [lastPropsRef]); |
|
var announce = useAnnouncer(contextId); |
|
var dragHandleUsageInstructionsId = useHiddenTextElement({ |
|
contextId: contextId, |
|
text: dragHandleUsageInstructions |
|
}); |
|
var styleMarshal = useStyleMarshal(contextId, nonce); |
|
var lazyDispatch = useCallback(function (action) { |
|
getStore(lazyStoreRef).dispatch(action); |
|
}, []); |
|
var marshalCallbacks = useMemo(function () { |
|
return bindActionCreators({ |
|
publishWhileDragging: publishWhileDragging, |
|
updateDroppableScroll: updateDroppableScroll, |
|
updateDroppableIsEnabled: updateDroppableIsEnabled, |
|
updateDroppableIsCombineEnabled: updateDroppableIsCombineEnabled, |
|
collectionStarting: collectionStarting |
|
}, lazyDispatch); |
|
}, [lazyDispatch]); |
|
var registry = useRegistry(); |
|
var dimensionMarshal = useMemo(function () { |
|
return createDimensionMarshal(registry, marshalCallbacks); |
|
}, [registry, marshalCallbacks]); |
|
var autoScroller = useMemo(function () { |
|
return createAutoScroller(_extends({ |
|
scrollWindow: scrollWindow, |
|
scrollDroppable: dimensionMarshal.scrollDroppable |
|
}, bindActionCreators({ |
|
move: move |
|
}, lazyDispatch))); |
|
}, [dimensionMarshal.scrollDroppable, lazyDispatch]); |
|
var focusMarshal = useFocusMarshal(contextId); |
|
var store = useMemo(function () { |
|
return createStore({ |
|
announce: announce, |
|
autoScroller: autoScroller, |
|
dimensionMarshal: dimensionMarshal, |
|
focusMarshal: focusMarshal, |
|
getResponders: getResponders, |
|
styleMarshal: styleMarshal |
|
}); |
|
}, [announce, autoScroller, dimensionMarshal, focusMarshal, getResponders, styleMarshal]); |
|
|
|
if (process.env.NODE_ENV !== 'production') { |
|
if (lazyStoreRef.current && lazyStoreRef.current !== store) { |
|
process.env.NODE_ENV !== "production" ? warning('unexpected store change') : void 0; |
|
} |
|
} |
|
|
|
lazyStoreRef.current = store; |
|
var tryResetStore = useCallback(function () { |
|
var current = getStore(lazyStoreRef); |
|
var state = current.getState(); |
|
|
|
if (state.phase !== 'IDLE') { |
|
current.dispatch(flush()); |
|
} |
|
}, []); |
|
var isDragging = useCallback(function () { |
|
var state = getStore(lazyStoreRef).getState(); |
|
return state.isDragging || state.phase === 'DROP_ANIMATING'; |
|
}, []); |
|
var appCallbacks = useMemo(function () { |
|
return { |
|
isDragging: isDragging, |
|
tryAbort: tryResetStore |
|
}; |
|
}, [isDragging, tryResetStore]); |
|
setCallbacks(appCallbacks); |
|
var getCanLift = useCallback(function (id) { |
|
return canStartDrag(getStore(lazyStoreRef).getState(), id); |
|
}, []); |
|
var getIsMovementAllowed = useCallback(function () { |
|
return isMovementAllowed(getStore(lazyStoreRef).getState()); |
|
}, []); |
|
var appContext = useMemo(function () { |
|
return { |
|
marshal: dimensionMarshal, |
|
focus: focusMarshal, |
|
contextId: contextId, |
|
canLift: getCanLift, |
|
isMovementAllowed: getIsMovementAllowed, |
|
dragHandleUsageInstructionsId: dragHandleUsageInstructionsId, |
|
registry: registry |
|
}; |
|
}, [contextId, dimensionMarshal, dragHandleUsageInstructionsId, focusMarshal, getCanLift, getIsMovementAllowed, registry]); |
|
useSensorMarshal({ |
|
contextId: contextId, |
|
store: store, |
|
registry: registry, |
|
customSensors: sensors, |
|
enableDefaultSensors: props.enableDefaultSensors !== false |
|
}); |
|
useEffect(function () { |
|
return tryResetStore; |
|
}, [tryResetStore]); |
|
return React.createElement(AppContext.Provider, { |
|
value: appContext |
|
}, React.createElement(Provider, { |
|
context: StoreContext, |
|
store: store |
|
}, props.children)); |
|
} |
|
|
|
var count$1 = 0; |
|
function reset$1() { |
|
count$1 = 0; |
|
} |
|
function useInstanceCount() { |
|
return useMemo(function () { |
|
return "" + count$1++; |
|
}, []); |
|
} |
|
|
|
function resetServerContext() { |
|
reset$1(); |
|
reset(); |
|
} |
|
function DragDropContext(props) { |
|
var contextId = useInstanceCount(); |
|
var dragHandleUsageInstructions = props.dragHandleUsageInstructions || preset.dragHandleUsageInstructions; |
|
return React.createElement(ErrorBoundary, null, function (setCallbacks) { |
|
return React.createElement(App, { |
|
nonce: props.nonce, |
|
contextId: contextId, |
|
setCallbacks: setCallbacks, |
|
dragHandleUsageInstructions: dragHandleUsageInstructions, |
|
enableDefaultSensors: props.enableDefaultSensors, |
|
sensors: props.sensors, |
|
onBeforeCapture: props.onBeforeCapture, |
|
onBeforeDragStart: props.onBeforeDragStart, |
|
onDragStart: props.onDragStart, |
|
onDragUpdate: props.onDragUpdate, |
|
onDragEnd: props.onDragEnd |
|
}, props.children); |
|
}); |
|
} |
|
|
|
var isEqual$1 = function isEqual(base) { |
|
return function (value) { |
|
return base === value; |
|
}; |
|
}; |
|
|
|
var isScroll = isEqual$1('scroll'); |
|
var isAuto = isEqual$1('auto'); |
|
var isVisible$1 = isEqual$1('visible'); |
|
|
|
var isEither = function isEither(overflow, fn) { |
|
return fn(overflow.overflowX) || fn(overflow.overflowY); |
|
}; |
|
|
|
var isBoth = function isBoth(overflow, fn) { |
|
return fn(overflow.overflowX) && fn(overflow.overflowY); |
|
}; |
|
|
|
var isElementScrollable = function isElementScrollable(el) { |
|
var style = window.getComputedStyle(el); |
|
var overflow = { |
|
overflowX: style.overflowX, |
|
overflowY: style.overflowY |
|
}; |
|
return isEither(overflow, isScroll) || isEither(overflow, isAuto); |
|
}; |
|
|
|
var isBodyScrollable = function isBodyScrollable() { |
|
if (process.env.NODE_ENV === 'production') { |
|
return false; |
|
} |
|
|
|
var body = getBodyElement(); |
|
var html = document.documentElement; |
|
!html ? process.env.NODE_ENV !== "production" ? invariant(false) : invariant(false) : void 0; |
|
|
|
if (!isElementScrollable(body)) { |
|
return false; |
|
} |
|
|
|
var htmlStyle = window.getComputedStyle(html); |
|
var htmlOverflow = { |
|
overflowX: htmlStyle.overflowX, |
|
overflowY: htmlStyle.overflowY |
|
}; |
|
|
|
if (isBoth(htmlOverflow, isVisible$1)) { |
|
return false; |
|
} |
|
|
|
process.env.NODE_ENV !== "production" ? warning("\n We have detected that your <body> element might be a scroll container.\n We have found no reliable way of detecting whether the <body> element is a scroll container.\n Under most circumstances a <body> scroll bar will be on the <html> element (document.documentElement)\n\n Because we cannot determine if the <body> is a scroll container, and generally it is not one,\n we will be treating the <body> as *not* a scroll container\n\n More information: https://github.com/atlassian/react-beautiful-dnd/blob/master/docs/guides/how-we-detect-scroll-containers.md\n ") : void 0; |
|
return false; |
|
}; |
|
|
|
var getClosestScrollable = function getClosestScrollable(el) { |
|
if (el == null) { |
|
return null; |
|
} |
|
|
|
if (el === document.body) { |
|
return isBodyScrollable() ? el : null; |
|
} |
|
|
|
if (el === document.documentElement) { |
|
return null; |
|
} |
|
|
|
if (!isElementScrollable(el)) { |
|
return getClosestScrollable(el.parentElement); |
|
} |
|
|
|
return el; |
|
}; |
|
|
|
var checkForNestedScrollContainers = (function (scrollable) { |
|
if (!scrollable) { |
|
return; |
|
} |
|
|
|
var anotherScrollParent = getClosestScrollable(scrollable.parentElement); |
|
|
|
if (!anotherScrollParent) { |
|
return; |
|
} |
|
|
|
process.env.NODE_ENV !== "production" ? warning("\n Droppable: unsupported nested scroll container detected.\n A Droppable can only have one scroll parent (which can be itself)\n Nested scroll containers are currently not supported.\n\n We hope to support nested scroll containers soon: https://github.com/atlassian/react-beautiful-dnd/issues/131\n ") : void 0; |
|
}); |
|
|
|
var getScroll$1 = (function (el) { |
|
return { |
|
x: el.scrollLeft, |
|
y: el.scrollTop |
|
}; |
|
}); |
|
|
|
var getIsFixed = function getIsFixed(el) { |
|
if (!el) { |
|
return false; |
|
} |
|
|
|
var style = window.getComputedStyle(el); |
|
|
|
if (style.position === 'fixed') { |
|
return true; |
|
} |
|
|
|
return getIsFixed(el.parentElement); |
|
}; |
|
|
|
var getEnv = (function (start) { |
|
var closestScrollable = getClosestScrollable(start); |
|
var isFixedOnPage = getIsFixed(start); |
|
return { |
|
closestScrollable: closestScrollable, |
|
isFixedOnPage: isFixedOnPage |
|
}; |
|
}); |
|
|
|
var getDroppableDimension = (function (_ref) { |
|
var descriptor = _ref.descriptor, |
|
isEnabled = _ref.isEnabled, |
|
isCombineEnabled = _ref.isCombineEnabled, |
|
isFixedOnPage = _ref.isFixedOnPage, |
|
direction = _ref.direction, |
|
client = _ref.client, |
|
page = _ref.page, |
|
closest = _ref.closest; |
|
|
|
var frame = function () { |
|
if (!closest) { |
|
return null; |
|
} |
|
|
|
var scrollSize = closest.scrollSize, |
|
frameClient = closest.client; |
|
var maxScroll = getMaxScroll({ |
|
scrollHeight: scrollSize.scrollHeight, |
|
scrollWidth: scrollSize.scrollWidth, |
|
height: frameClient.paddingBox.height, |
|
width: frameClient.paddingBox.width |
|
}); |
|
return { |
|
pageMarginBox: closest.page.marginBox, |
|
frameClient: frameClient, |
|
scrollSize: scrollSize, |
|
shouldClipSubject: closest.shouldClipSubject, |
|
scroll: { |
|
initial: closest.scroll, |
|
current: closest.scroll, |
|
max: maxScroll, |
|
diff: { |
|
value: origin, |
|
displacement: origin |
|
} |
|
} |
|
}; |
|
}(); |
|
|
|
var axis = direction === 'vertical' ? vertical : horizontal; |
|
var subject = getSubject({ |
|
page: page, |
|
withPlaceholder: null, |
|
axis: axis, |
|
frame: frame |
|
}); |
|
var dimension = { |
|
descriptor: descriptor, |
|
isCombineEnabled: isCombineEnabled, |
|
isFixedOnPage: isFixedOnPage, |
|
axis: axis, |
|
isEnabled: isEnabled, |
|
client: client, |
|
page: page, |
|
frame: frame, |
|
subject: subject |
|
}; |
|
return dimension; |
|
}); |
|
|
|
var getClient = function getClient(targetRef, closestScrollable) { |
|
var base = getBox(targetRef); |
|
|
|
if (!closestScrollable) { |
|
return base; |
|
} |
|
|
|
if (targetRef !== closestScrollable) { |
|
return base; |
|
} |
|
|
|
var top = base.paddingBox.top - closestScrollable.scrollTop; |
|
var left = base.paddingBox.left - closestScrollable.scrollLeft; |
|
var bottom = top + closestScrollable.scrollHeight; |
|
var right = left + closestScrollable.scrollWidth; |
|
var paddingBox = { |
|
top: top, |
|
right: right, |
|
bottom: bottom, |
|
left: left |
|
}; |
|
var borderBox = expand(paddingBox, base.border); |
|
var client = createBox({ |
|
borderBox: borderBox, |
|
margin: base.margin, |
|
border: base.border, |
|
padding: base.padding |
|
}); |
|
return client; |
|
}; |
|
|
|
var getDimension = (function (_ref) { |
|
var ref = _ref.ref, |
|
descriptor = _ref.descriptor, |
|
env = _ref.env, |
|
windowScroll = _ref.windowScroll, |
|
direction = _ref.direction, |
|
isDropDisabled = _ref.isDropDisabled, |
|
isCombineEnabled = _ref.isCombineEnabled, |
|
shouldClipSubject = _ref.shouldClipSubject; |
|
var closestScrollable = env.closestScrollable; |
|
var client = getClient(ref, closestScrollable); |
|
var page = withScroll(client, windowScroll); |
|
|
|
var closest = function () { |
|
if (!closestScrollable) { |
|
return null; |
|
} |
|
|
|
var frameClient = getBox(closestScrollable); |
|
var scrollSize = { |
|
scrollHeight: closestScrollable.scrollHeight, |
|
scrollWidth: closestScrollable.scrollWidth |
|
}; |
|
return { |
|
client: frameClient, |
|
page: withScroll(frameClient, windowScroll), |
|
scroll: getScroll$1(closestScrollable), |
|
scrollSize: scrollSize, |
|
shouldClipSubject: shouldClipSubject |
|
}; |
|
}(); |
|
|
|
var dimension = getDroppableDimension({ |
|
descriptor: descriptor, |
|
isEnabled: !isDropDisabled, |
|
isCombineEnabled: isCombineEnabled, |
|
isFixedOnPage: env.isFixedOnPage, |
|
direction: direction, |
|
client: client, |
|
page: page, |
|
closest: closest |
|
}); |
|
return dimension; |
|
}); |
|
|
|
var immediate = { |
|
passive: false |
|
}; |
|
var delayed = { |
|
passive: true |
|
}; |
|
var getListenerOptions = (function (options) { |
|
return options.shouldPublishImmediately ? immediate : delayed; |
|
}); |
|
|
|
function useRequiredContext(Context) { |
|
var result = useContext(Context); |
|
!result ? process.env.NODE_ENV !== "production" ? invariant(false, 'Could not find required context') : invariant(false) : void 0; |
|
return result; |
|
} |
|
|
|
var getClosestScrollableFromDrag = function getClosestScrollableFromDrag(dragging) { |
|
return dragging && dragging.env.closestScrollable || null; |
|
}; |
|
|
|
function useDroppablePublisher(args) { |
|
var whileDraggingRef = useRef(null); |
|
var appContext = useRequiredContext(AppContext); |
|
var uniqueId = useUniqueId('droppable'); |
|
var registry = appContext.registry, |
|
marshal = appContext.marshal; |
|
var previousRef = usePrevious(args); |
|
var descriptor = useMemo(function () { |
|
return { |
|
id: args.droppableId, |
|
type: args.type, |
|
mode: args.mode |
|
}; |
|
}, [args.droppableId, args.mode, args.type]); |
|
var publishedDescriptorRef = useRef(descriptor); |
|
var memoizedUpdateScroll = useMemo(function () { |
|
return memoizeOne(function (x, y) { |
|
!whileDraggingRef.current ? process.env.NODE_ENV !== "production" ? invariant(false, 'Can only update scroll when dragging') : invariant(false) : void 0; |
|
var scroll = { |
|
x: x, |
|
y: y |
|
}; |
|
marshal.updateDroppableScroll(descriptor.id, scroll); |
|
}); |
|
}, [descriptor.id, marshal]); |
|
var getClosestScroll = useCallback(function () { |
|
var dragging = whileDraggingRef.current; |
|
|
|
if (!dragging || !dragging.env.closestScrollable) { |
|
return origin; |
|
} |
|
|
|
return getScroll$1(dragging.env.closestScrollable); |
|
}, []); |
|
var updateScroll = useCallback(function () { |
|
var scroll = getClosestScroll(); |
|
memoizedUpdateScroll(scroll.x, scroll.y); |
|
}, [getClosestScroll, memoizedUpdateScroll]); |
|
var scheduleScrollUpdate = useMemo(function () { |
|
return rafSchd(updateScroll); |
|
}, [updateScroll]); |
|
var onClosestScroll = useCallback(function () { |
|
var dragging = whileDraggingRef.current; |
|
var closest = getClosestScrollableFromDrag(dragging); |
|
!(dragging && closest) ? process.env.NODE_ENV !== "production" ? invariant(false, 'Could not find scroll options while scrolling') : invariant(false) : void 0; |
|
var options = dragging.scrollOptions; |
|
|
|
if (options.shouldPublishImmediately) { |
|
updateScroll(); |
|
return; |
|
} |
|
|
|
scheduleScrollUpdate(); |
|
}, [scheduleScrollUpdate, updateScroll]); |
|
var getDimensionAndWatchScroll = useCallback(function (windowScroll, options) { |
|
!!whileDraggingRef.current ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot collect a droppable while a drag is occurring') : invariant(false) : void 0; |
|
var previous = previousRef.current; |
|
var ref = previous.getDroppableRef(); |
|
!ref ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot collect without a droppable ref') : invariant(false) : void 0; |
|
var env = getEnv(ref); |
|
var dragging = { |
|
ref: ref, |
|
descriptor: descriptor, |
|
env: env, |
|
scrollOptions: options |
|
}; |
|
whileDraggingRef.current = dragging; |
|
var dimension = getDimension({ |
|
ref: ref, |
|
descriptor: descriptor, |
|
env: env, |
|
windowScroll: windowScroll, |
|
direction: previous.direction, |
|
isDropDisabled: previous.isDropDisabled, |
|
isCombineEnabled: previous.isCombineEnabled, |
|
shouldClipSubject: !previous.ignoreContainerClipping |
|
}); |
|
var scrollable = env.closestScrollable; |
|
|
|
if (scrollable) { |
|
scrollable.setAttribute(scrollContainer.contextId, appContext.contextId); |
|
scrollable.addEventListener('scroll', onClosestScroll, getListenerOptions(dragging.scrollOptions)); |
|
|
|
if (process.env.NODE_ENV !== 'production') { |
|
checkForNestedScrollContainers(scrollable); |
|
} |
|
} |
|
|
|
return dimension; |
|
}, [appContext.contextId, descriptor, onClosestScroll, previousRef]); |
|
var getScrollWhileDragging = useCallback(function () { |
|
var dragging = whileDraggingRef.current; |
|
var closest = getClosestScrollableFromDrag(dragging); |
|
!(dragging && closest) ? process.env.NODE_ENV !== "production" ? invariant(false, 'Can only recollect Droppable client for Droppables that have a scroll container') : invariant(false) : void 0; |
|
return getScroll$1(closest); |
|
}, []); |
|
var dragStopped = useCallback(function () { |
|
var dragging = whileDraggingRef.current; |
|
!dragging ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot stop drag when no active drag') : invariant(false) : void 0; |
|
var closest = getClosestScrollableFromDrag(dragging); |
|
whileDraggingRef.current = null; |
|
|
|
if (!closest) { |
|
return; |
|
} |
|
|
|
scheduleScrollUpdate.cancel(); |
|
closest.removeAttribute(scrollContainer.contextId); |
|
closest.removeEventListener('scroll', onClosestScroll, getListenerOptions(dragging.scrollOptions)); |
|
}, [onClosestScroll, scheduleScrollUpdate]); |
|
var scroll = useCallback(function (change) { |
|
var dragging = whileDraggingRef.current; |
|
!dragging ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot scroll when there is no drag') : invariant(false) : void 0; |
|
var closest = getClosestScrollableFromDrag(dragging); |
|
!closest ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot scroll a droppable with no closest scrollable') : invariant(false) : void 0; |
|
closest.scrollTop += change.y; |
|
closest.scrollLeft += change.x; |
|
}, []); |
|
var callbacks = useMemo(function () { |
|
return { |
|
getDimensionAndWatchScroll: getDimensionAndWatchScroll, |
|
getScrollWhileDragging: getScrollWhileDragging, |
|
dragStopped: dragStopped, |
|
scroll: scroll |
|
}; |
|
}, [dragStopped, getDimensionAndWatchScroll, getScrollWhileDragging, scroll]); |
|
var entry = useMemo(function () { |
|
return { |
|
uniqueId: uniqueId, |
|
descriptor: descriptor, |
|
callbacks: callbacks |
|
}; |
|
}, [callbacks, descriptor, uniqueId]); |
|
useIsomorphicLayoutEffect(function () { |
|
publishedDescriptorRef.current = entry.descriptor; |
|
registry.droppable.register(entry); |
|
return function () { |
|
if (whileDraggingRef.current) { |
|
process.env.NODE_ENV !== "production" ? warning('Unsupported: changing the droppableId or type of a Droppable during a drag') : void 0; |
|
dragStopped(); |
|
} |
|
|
|
registry.droppable.unregister(entry); |
|
}; |
|
}, [callbacks, descriptor, dragStopped, entry, marshal, registry.droppable]); |
|
useIsomorphicLayoutEffect(function () { |
|
if (!whileDraggingRef.current) { |
|
return; |
|
} |
|
|
|
marshal.updateDroppableIsEnabled(publishedDescriptorRef.current.id, !args.isDropDisabled); |
|
}, [args.isDropDisabled, marshal]); |
|
useIsomorphicLayoutEffect(function () { |
|
if (!whileDraggingRef.current) { |
|
return; |
|
} |
|
|
|
marshal.updateDroppableIsCombineEnabled(publishedDescriptorRef.current.id, args.isCombineEnabled); |
|
}, [args.isCombineEnabled, marshal]); |
|
} |
|
|
|
function noop$2() {} |
|
|
|
var empty = { |
|
width: 0, |
|
height: 0, |
|
margin: noSpacing |
|
}; |
|
|
|
var getSize = function getSize(_ref) { |
|
var isAnimatingOpenOnMount = _ref.isAnimatingOpenOnMount, |
|
placeholder = _ref.placeholder, |
|
animate = _ref.animate; |
|
|
|
if (isAnimatingOpenOnMount) { |
|
return empty; |
|
} |
|
|
|
if (animate === 'close') { |
|
return empty; |
|
} |
|
|
|
return { |
|
height: placeholder.client.borderBox.height, |
|
width: placeholder.client.borderBox.width, |
|
margin: placeholder.client.margin |
|
}; |
|
}; |
|
|
|
var getStyle = function getStyle(_ref2) { |
|
var isAnimatingOpenOnMount = _ref2.isAnimatingOpenOnMount, |
|
placeholder = _ref2.placeholder, |
|
animate = _ref2.animate; |
|
var size = getSize({ |
|
isAnimatingOpenOnMount: isAnimatingOpenOnMount, |
|
placeholder: placeholder, |
|
animate: animate |
|
}); |
|
return { |
|
display: placeholder.display, |
|
boxSizing: 'border-box', |
|
width: size.width, |
|
height: size.height, |
|
marginTop: size.margin.top, |
|
marginRight: size.margin.right, |
|
marginBottom: size.margin.bottom, |
|
marginLeft: size.margin.left, |
|
flexShrink: '0', |
|
flexGrow: '0', |
|
pointerEvents: 'none', |
|
transition: animate !== 'none' ? transitions.placeholder : null |
|
}; |
|
}; |
|
|
|
function Placeholder(props) { |
|
var animateOpenTimerRef = useRef(null); |
|
var tryClearAnimateOpenTimer = useCallback(function () { |
|
if (!animateOpenTimerRef.current) { |
|
return; |
|
} |
|
|
|
clearTimeout(animateOpenTimerRef.current); |
|
animateOpenTimerRef.current = null; |
|
}, []); |
|
var animate = props.animate, |
|
onTransitionEnd = props.onTransitionEnd, |
|
onClose = props.onClose, |
|
contextId = props.contextId; |
|
|
|
var _useState = useState(props.animate === 'open'), |
|
isAnimatingOpenOnMount = _useState[0], |
|
setIsAnimatingOpenOnMount = _useState[1]; |
|
|
|
useEffect(function () { |
|
if (!isAnimatingOpenOnMount) { |
|
return noop$2; |
|
} |
|
|
|
if (animate !== 'open') { |
|
tryClearAnimateOpenTimer(); |
|
setIsAnimatingOpenOnMount(false); |
|
return noop$2; |
|
} |
|
|
|
if (animateOpenTimerRef.current) { |
|
return noop$2; |
|
} |
|
|
|
animateOpenTimerRef.current = setTimeout(function () { |
|
animateOpenTimerRef.current = null; |
|
setIsAnimatingOpenOnMount(false); |
|
}); |
|
return tryClearAnimateOpenTimer; |
|
}, [animate, isAnimatingOpenOnMount, tryClearAnimateOpenTimer]); |
|
var onSizeChangeEnd = useCallback(function (event) { |
|
if (event.propertyName !== 'height') { |
|
return; |
|
} |
|
|
|
onTransitionEnd(); |
|
|
|
if (animate === 'close') { |
|
onClose(); |
|
} |
|
}, [animate, onClose, onTransitionEnd]); |
|
var style = getStyle({ |
|
isAnimatingOpenOnMount: isAnimatingOpenOnMount, |
|
animate: props.animate, |
|
placeholder: props.placeholder |
|
}); |
|
return React.createElement(props.placeholder.tagName, { |
|
style: style, |
|
'data-rbd-placeholder-context-id': contextId, |
|
onTransitionEnd: onSizeChangeEnd, |
|
ref: props.innerRef |
|
}); |
|
} |
|
|
|
var Placeholder$1 = React.memo(Placeholder); |
|
|
|
var DroppableContext = React.createContext(null); |
|
|
|
function checkIsValidInnerRef(el) { |
|
!(el && isHtmlElement(el)) ? process.env.NODE_ENV !== "production" ? invariant(false, "\n provided.innerRef has not been provided with a HTMLElement.\n\n You can find a guide on using the innerRef callback functions at:\n https://github.com/atlassian/react-beautiful-dnd/blob/master/docs/guides/using-inner-ref.md\n ") : invariant(false) : void 0; |
|
} |
|
|
|
function isBoolean(value) { |
|
return typeof value === 'boolean'; |
|
} |
|
|
|
function runChecks(args, checks) { |
|
checks.forEach(function (check) { |
|
return check(args); |
|
}); |
|
} |
|
|
|
var shared = [function required(_ref) { |
|
var props = _ref.props; |
|
!props.droppableId ? process.env.NODE_ENV !== "production" ? invariant(false, 'A Droppable requires a droppableId prop') : invariant(false) : void 0; |
|
!(typeof props.droppableId === 'string') ? process.env.NODE_ENV !== "production" ? invariant(false, "A Droppable requires a [string] droppableId. Provided: [" + typeof props.droppableId + "]") : invariant(false) : void 0; |
|
}, function _boolean(_ref2) { |
|
var props = _ref2.props; |
|
!isBoolean(props.isDropDisabled) ? process.env.NODE_ENV !== "production" ? invariant(false, 'isDropDisabled must be a boolean') : invariant(false) : void 0; |
|
!isBoolean(props.isCombineEnabled) ? process.env.NODE_ENV !== "production" ? invariant(false, 'isCombineEnabled must be a boolean') : invariant(false) : void 0; |
|
!isBoolean(props.ignoreContainerClipping) ? process.env.NODE_ENV !== "production" ? invariant(false, 'ignoreContainerClipping must be a boolean') : invariant(false) : void 0; |
|
}, function ref(_ref3) { |
|
var getDroppableRef = _ref3.getDroppableRef; |
|
checkIsValidInnerRef(getDroppableRef()); |
|
}]; |
|
var standard = [function placeholder(_ref4) { |
|
var props = _ref4.props, |
|
getPlaceholderRef = _ref4.getPlaceholderRef; |
|
|
|
if (!props.placeholder) { |
|
return; |
|
} |
|
|
|
var ref = getPlaceholderRef(); |
|
|
|
if (ref) { |
|
return; |
|
} |
|
|
|
process.env.NODE_ENV !== "production" ? warning("\n Droppable setup issue [droppableId: \"" + props.droppableId + "\"]:\n DroppableProvided > placeholder could not be found.\n\n Please be sure to add the {provided.placeholder} React Node as a child of your Droppable.\n More information: https://github.com/atlassian/react-beautiful-dnd/blob/master/docs/api/droppable.md\n ") : void 0; |
|
}]; |
|
var virtual = [function hasClone(_ref5) { |
|
var props = _ref5.props; |
|
!props.renderClone ? process.env.NODE_ENV !== "production" ? invariant(false, 'Must provide a clone render function (renderClone) for virtual lists') : invariant(false) : void 0; |
|
}, function hasNoPlaceholder(_ref6) { |
|
var getPlaceholderRef = _ref6.getPlaceholderRef; |
|
!!getPlaceholderRef() ? process.env.NODE_ENV !== "production" ? invariant(false, 'Expected virtual list to not have a placeholder') : invariant(false) : void 0; |
|
}]; |
|
function useValidation(args) { |
|
useDevSetupWarning(function () { |
|
runChecks(args, shared); |
|
|
|
if (args.props.mode === 'standard') { |
|
runChecks(args, standard); |
|
} |
|
|
|
if (args.props.mode === 'virtual') { |
|
runChecks(args, virtual); |
|
} |
|
}); |
|
} |
|
|
|
var AnimateInOut = function (_React$PureComponent) { |
|
_inheritsLoose(AnimateInOut, _React$PureComponent); |
|
|
|
function AnimateInOut() { |
|
var _this; |
|
|
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { |
|
args[_key] = arguments[_key]; |
|
} |
|
|
|
_this = _React$PureComponent.call.apply(_React$PureComponent, [this].concat(args)) || this; |
|
_this.state = { |
|
isVisible: Boolean(_this.props.on), |
|
data: _this.props.on, |
|
animate: _this.props.shouldAnimate && _this.props.on ? 'open' : 'none' |
|
}; |
|
|
|
_this.onClose = function () { |
|
if (_this.state.animate !== 'close') { |
|
return; |
|
} |
|
|
|
_this.setState({ |
|
isVisible: false |
|
}); |
|
}; |
|
|
|
return _this; |
|
} |
|
|
|
AnimateInOut.getDerivedStateFromProps = function getDerivedStateFromProps(props, state) { |
|
if (!props.shouldAnimate) { |
|
return { |
|
isVisible: Boolean(props.on), |
|
data: props.on, |
|
animate: 'none' |
|
}; |
|
} |
|
|
|
if (props.on) { |
|
return { |
|
isVisible: true, |
|
data: props.on, |
|
animate: 'open' |
|
}; |
|
} |
|
|
|
if (state.isVisible) { |
|
return { |
|
isVisible: true, |
|
data: state.data, |
|
animate: 'close' |
|
}; |
|
} |
|
|
|
return { |
|
isVisible: false, |
|
animate: 'close', |
|
data: null |
|
}; |
|
}; |
|
|
|
var _proto = AnimateInOut.prototype; |
|
|
|
_proto.render = function render() { |
|
if (!this.state.isVisible) { |
|
return null; |
|
} |
|
|
|
var provided = { |
|
onClose: this.onClose, |
|
data: this.state.data, |
|
animate: this.state.animate |
|
}; |
|
return this.props.children(provided); |
|
}; |
|
|
|
return AnimateInOut; |
|
}(React.PureComponent); |
|
|
|
var zIndexOptions = { |
|
dragging: 5000, |
|
dropAnimating: 4500 |
|
}; |
|
|
|
var getDraggingTransition = function getDraggingTransition(shouldAnimateDragMovement, dropping) { |
|
if (dropping) { |
|
return transitions.drop(dropping.duration); |
|
} |
|
|
|
if (shouldAnimateDragMovement) { |
|
return transitions.snap; |
|
} |
|
|
|
return transitions.fluid; |
|
}; |
|
|
|
var getDraggingOpacity = function getDraggingOpacity(isCombining, isDropAnimating) { |
|
if (!isCombining) { |
|
return null; |
|
} |
|
|
|
return isDropAnimating ? combine.opacity.drop : combine.opacity.combining; |
|
}; |
|
|
|
var getShouldDraggingAnimate = function getShouldDraggingAnimate(dragging) { |
|
if (dragging.forceShouldAnimate != null) { |
|
return dragging.forceShouldAnimate; |
|
} |
|
|
|
return dragging.mode === 'SNAP'; |
|
}; |
|
|
|
function getDraggingStyle(dragging) { |
|
var dimension = dragging.dimension; |
|
var box = dimension.client; |
|
var offset = dragging.offset, |
|
combineWith = dragging.combineWith, |
|
dropping = dragging.dropping; |
|
var isCombining = Boolean(combineWith); |
|
var shouldAnimate = getShouldDraggingAnimate(dragging); |
|
var isDropAnimating = Boolean(dropping); |
|
var transform = isDropAnimating ? transforms.drop(offset, isCombining) : transforms.moveTo(offset); |
|
var style = { |
|
position: 'fixed', |
|
top: box.marginBox.top, |
|
left: box.marginBox.left, |
|
boxSizing: 'border-box', |
|
width: box.borderBox.width, |
|
height: box.borderBox.height, |
|
transition: getDraggingTransition(shouldAnimate, dropping), |
|
transform: transform, |
|
opacity: getDraggingOpacity(isCombining, isDropAnimating), |
|
zIndex: isDropAnimating ? zIndexOptions.dropAnimating : zIndexOptions.dragging, |
|
pointerEvents: 'none' |
|
}; |
|
return style; |
|
} |
|
|
|
function getSecondaryStyle(secondary) { |
|
return { |
|
transform: transforms.moveTo(secondary.offset), |
|
transition: secondary.shouldAnimateDisplacement ? null : 'none' |
|
}; |
|
} |
|
|
|
function getStyle$1(mapped) { |
|
return mapped.type === 'DRAGGING' ? getDraggingStyle(mapped) : getSecondaryStyle(mapped); |
|
} |
|
|
|
function getDimension$1(descriptor, el, windowScroll) { |
|
if (windowScroll === void 0) { |
|
windowScroll = origin; |
|
} |
|
|
|
var computedStyles = window.getComputedStyle(el); |
|
var borderBox = el.getBoundingClientRect(); |
|
var client = calculateBox(borderBox, computedStyles); |
|
var page = withScroll(client, windowScroll); |
|
var placeholder = { |
|
client: client, |
|
tagName: el.tagName.toLowerCase(), |
|
display: computedStyles.display |
|
}; |
|
var displaceBy = { |
|
x: client.marginBox.width, |
|
y: client.marginBox.height |
|
}; |
|
var dimension = { |
|
descriptor: descriptor, |
|
placeholder: placeholder, |
|
displaceBy: displaceBy, |
|
client: client, |
|
page: page |
|
}; |
|
return dimension; |
|
} |
|
|
|
function useDraggablePublisher(args) { |
|
var uniqueId = useUniqueId('draggable'); |
|
var descriptor = args.descriptor, |
|
registry = args.registry, |
|
getDraggableRef = args.getDraggableRef, |
|
canDragInteractiveElements = args.canDragInteractiveElements, |
|
shouldRespectForcePress = args.shouldRespectForcePress, |
|
isEnabled = args.isEnabled; |
|
var options = useMemo(function () { |
|
return { |
|
canDragInteractiveElements: canDragInteractiveElements, |
|
shouldRespectForcePress: shouldRespectForcePress, |
|
isEnabled: isEnabled |
|
}; |
|
}, [canDragInteractiveElements, isEnabled, shouldRespectForcePress]); |
|
var getDimension = useCallback(function (windowScroll) { |
|
var el = getDraggableRef(); |
|
!el ? process.env.NODE_ENV !== "production" ? invariant(false, 'Cannot get dimension when no ref is set') : invariant(false) : void 0; |
|
return getDimension$1(descriptor, el, windowScroll); |
|
}, [descriptor, getDraggableRef]); |
|
var entry = useMemo(function () { |
|
return { |
|
uniqueId: uniqueId, |
|
descriptor: descriptor, |
|
options: options, |
|
getDimension: getDimension |
|
}; |
|
}, [descriptor, getDimension, options, uniqueId]); |
|
var publishedRef = useRef(entry); |
|
var isFirstPublishRef = useRef(true); |
|
useIsomorphicLayoutEffect(function () { |
|
registry.draggable.register(publishedRef.current); |
|
return function () { |
|
return registry.draggable.unregister(publishedRef.current); |
|
}; |
|
}, [registry.draggable]); |
|
useIsomorphicLayoutEffect(function () { |
|
if (isFirstPublishRef.current) { |
|
isFirstPublishRef.current = false; |
|
return; |
|
} |
|
|
|
var last = publishedRef.current; |
|
publishedRef.current = entry; |
|
registry.draggable.update(entry, last); |
|
}, [entry, registry.draggable]); |
|
} |
|
|
|
function useValidation$1(props, contextId, getRef) { |
|
useDevSetupWarning(function () { |
|
function prefix(id) { |
|
return "Draggable[id: " + id + "]: "; |
|
} |
|
|
|
var id = props.draggableId; |
|
!id ? process.env.NODE_ENV !== "production" ? invariant(false, 'Draggable requires a draggableId') : invariant(false) : void 0; |
|
!(typeof id === 'string') ? process.env.NODE_ENV !== "production" ? invariant(false, "Draggable requires a [string] draggableId.\n Provided: [type: " + typeof id + "] (value: " + id + ")") : invariant(false) : void 0; |
|
!isInteger(props.index) ? process.env.NODE_ENV !== "production" ? invariant(false, prefix(id) + " requires an integer index prop") : invariant(false) : void 0; |
|
|
|
if (props.mapped.type === 'DRAGGING') { |
|
return; |
|
} |
|
|
|
checkIsValidInnerRef(getRef()); |
|
|
|
if (props.isEnabled) { |
|
!findDragHandle(contextId, id) ? process.env.NODE_ENV !== "production" ? invariant(false, prefix(id) + " Unable to find drag handle") : invariant(false) : void 0; |
|
} |
|
}); |
|
} |
|
function useClonePropValidation(isClone) { |
|
useDev(function () { |
|
var initialRef = useRef(isClone); |
|
useDevSetupWarning(function () { |
|
!(isClone === initialRef.current) ? process.env.NODE_ENV !== "production" ? invariant(false, 'Draggable isClone prop value changed during component life') : invariant(false) : void 0; |
|
}, [isClone]); |
|
}); |
|
} |
|
|
|
function preventHtml5Dnd(event) { |
|
event.preventDefault(); |
|
} |
|
|
|
function Draggable(props) { |
|
var ref = useRef(null); |
|
var setRef = useCallback(function (el) { |
|
ref.current = el; |
|
}, []); |
|
var getRef = useCallback(function () { |
|
return ref.current; |
|
}, []); |
|
|
|
var _useRequiredContext = useRequiredContext(AppContext), |
|
contextId = _useRequiredContext.contextId, |
|
dragHandleUsageInstructionsId = _useRequiredContext.dragHandleUsageInstructionsId, |
|
registry = _useRequiredContext.registry; |
|
|
|
var _useRequiredContext2 = useRequiredContext(DroppableContext), |
|
type = _useRequiredContext2.type, |
|
droppableId = _useRequiredContext2.droppableId; |
|
|
|
var descriptor = useMemo(function () { |
|
return { |
|
id: props.draggableId, |
|
index: props.index, |
|
type: type, |
|
droppableId: droppableId |
|
}; |
|
}, [props.draggableId, props.index, type, droppableId]); |
|
var children = props.children, |
|
draggableId = props.draggableId, |
|
isEnabled = props.isEnabled, |
|
shouldRespectForcePress = props.shouldRespectForcePress, |
|
canDragInteractiveElements = props.canDragInteractiveElements, |
|
isClone = props.isClone, |
|
mapped = props.mapped, |
|
dropAnimationFinishedAction = props.dropAnimationFinished; |
|
useValidation$1(props, contextId, getRef); |
|
useClonePropValidation(isClone); |
|
|
|
if (!isClone) { |
|
var forPublisher = useMemo(function () { |
|
return { |
|
descriptor: descriptor, |
|
registry: registry, |
|
getDraggableRef: getRef, |
|
canDragInteractiveElements: canDragInteractiveElements, |
|
shouldRespectForcePress: shouldRespectForcePress, |
|
isEnabled: isEnabled |
|
}; |
|
}, [descriptor, registry, getRef, canDragInteractiveElements, shouldRespectForcePress, isEnabled]); |
|
useDraggablePublisher(forPublisher); |
|
} |
|
|
|
var dragHandleProps = useMemo(function () { |
|
return isEnabled ? { |
|
tabIndex: 0, |
|
role: 'button', |
|
'aria-describedby': dragHandleUsageInstructionsId, |
|
'data-rbd-drag-handle-draggable-id': draggableId, |
|
'data-rbd-drag-handle-context-id': contextId, |
|
draggable: false, |
|
onDragStart: preventHtml5Dnd |
|
} : null; |
|
}, [contextId, dragHandleUsageInstructionsId, draggableId, isEnabled]); |
|
var onMoveEnd = useCallback(function (event) { |
|
if (mapped.type !== 'DRAGGING') { |
|
return; |
|
} |
|
|
|
if (!mapped.dropping) { |
|
return; |
|
} |
|
|
|
if (event.propertyName !== 'transform') { |
|
return; |
|
} |
|
|
|
dropAnimationFinishedAction(); |
|
}, [dropAnimationFinishedAction, mapped]); |
|
var provided = useMemo(function () { |
|
var style = getStyle$1(mapped); |
|
var onTransitionEnd = mapped.type === 'DRAGGING' && mapped.dropping ? onMoveEnd : null; |
|
var result = { |
|
innerRef: setRef, |
|
draggableProps: { |
|
'data-rbd-draggable-context-id': contextId, |
|
'data-rbd-draggable-id': draggableId, |
|
style: style, |
|
onTransitionEnd: onTransitionEnd |
|
}, |
|
dragHandleProps: dragHandleProps |
|
}; |
|
return result; |
|
}, [contextId, dragHandleProps, draggableId, mapped, onMoveEnd, setRef]); |
|
var rubric = useMemo(function () { |
|
return { |
|
draggableId: descriptor.id, |
|
type: descriptor.type, |
|
source: { |
|
index: descriptor.index, |
|
droppableId: descriptor.droppableId |
|
} |
|
}; |
|
}, [descriptor.droppableId, descriptor.id, descriptor.index, descriptor.type]); |
|
return children(provided, mapped.snapshot, rubric); |
|
} |
|
|
|
var isStrictEqual = (function (a, b) { |
|
return a === b; |
|
}); |
|
|
|
var whatIsDraggedOverFromResult = (function (result) { |
|
var combine = result.combine, |
|
destination = result.destination; |
|
|
|
if (destination) { |
|
return destination.droppableId; |
|
} |
|
|
|
if (combine) { |
|
return combine.droppableId; |
|
} |
|
|
|
return null; |
|
}); |
|
|
|
var getCombineWithFromResult = function getCombineWithFromResult(result) { |
|
return result.combine ? result.combine.draggableId : null; |
|
}; |
|
|
|
var getCombineWithFromImpact = function getCombineWithFromImpact(impact) { |
|
return impact.at && impact.at.type === 'COMBINE' ? impact.at.combine.draggableId : null; |
|
}; |
|
|
|
function getDraggableSelector() { |
|
var memoizedOffset = memoizeOne(function (x, y) { |
|
return { |
|
x: x, |
|
y: y |
|
}; |
|
}); |
|
var getMemoizedSnapshot = memoizeOne(function (mode, isClone, draggingOver, combineWith, dropping) { |
|
return { |
|
isDragging: true, |
|
isClone: isClone, |
|
isDropAnimating: Boolean(dropping), |
|
dropAnimation: dropping, |
|
mode: mode, |
|
draggingOver: draggingOver, |
|
combineWith: combineWith, |
|
combineTargetFor: null |
|
}; |
|
}); |
|
var getMemoizedProps = memoizeOne(function (offset, mode, dimension, isClone, draggingOver, combineWith, forceShouldAnimate) { |
|
return { |
|
mapped: { |
|
type: 'DRAGGING', |
|
dropping: null, |
|
draggingOver: draggingOver, |
|
combineWith: combineWith, |
|
mode: mode, |
|
offset: offset, |
|
dimension: dimension, |
|
forceShouldAnimate: forceShouldAnimate, |
|
snapshot: getMemoizedSnapshot(mode, isClone, draggingOver, combineWith, null) |
|
} |
|
}; |
|
}); |
|
|
|
var selector = function selector(state, ownProps) { |
|
if (state.isDragging) { |
|
if (state.critical.draggable.id !== ownProps.draggableId) { |
|
return null; |
|
} |
|
|
|
var offset = state.current.client.offset; |
|
var dimension = state.dimensions.draggables[ownProps.draggableId]; |
|
var draggingOver = whatIsDraggedOver(state.impact); |
|
var combineWith = getCombineWithFromImpact(state.impact); |
|
var forceShouldAnimate = state.forceShouldAnimate; |
|
return getMemoizedProps(memoizedOffset(offset.x, offset.y), state.movementMode, dimension, ownProps.isClone, draggingOver, combineWith, forceShouldAnimate); |
|
} |
|
|
|
if (state.phase === 'DROP_ANIMATING') { |
|
var completed = state.completed; |
|
|
|
if (completed.result.draggableId !== ownProps.draggableId) { |
|
return null; |
|
} |
|
|
|
var isClone = ownProps.isClone; |
|
var _dimension = state.dimensions.draggables[ownProps.draggableId]; |
|
var result = completed.result; |
|
var mode = result.mode; |
|
|
|
var _draggingOver = whatIsDraggedOverFromResult(result); |
|
|
|
var _combineWith = getCombineWithFromResult(result); |
|
|
|
var duration = state.dropDuration; |
|
var dropping = { |
|
duration: duration, |
|
curve: curves.drop, |
|
moveTo: state.newHomeClientOffset, |
|
opacity: _combineWith ? combine.opacity.drop : null, |
|
scale: _combineWith ? combine.scale.drop : null |
|
}; |
|
return { |
|
mapped: { |
|
type: 'DRAGGING', |
|
offset: state.newHomeClientOffset, |
|
dimension: _dimension, |
|
dropping: dropping, |
|
draggingOver: _draggingOver, |
|
combineWith: _combineWith, |
|
mode: mode, |
|
forceShouldAnimate: null, |
|
snapshot: getMemoizedSnapshot(mode, isClone, _draggingOver, _combineWith, dropping) |
|
} |
|
}; |
|
} |
|
|
|
return null; |
|
}; |
|
|
|
return selector; |
|
} |
|
|
|
function getSecondarySnapshot(combineTargetFor) { |
|
return { |
|
isDragging: false, |
|
isDropAnimating: false, |
|
isClone: false, |
|
dropAnimation: null, |
|
mode: null, |
|
draggingOver: null, |
|
combineTargetFor: combineTargetFor, |
|
combineWith: null |
|
}; |
|
} |
|
|
|
var atRest = { |
|
mapped: { |
|
type: 'SECONDARY', |
|
offset: origin, |
|
combineTargetFor: null, |
|
shouldAnimateDisplacement: true, |
|
snapshot: getSecondarySnapshot(null) |
|
} |
|
}; |
|
|
|
function getSecondarySelector() { |
|
var memoizedOffset = memoizeOne(function (x, y) { |
|
return { |
|
x: x, |
|
y: y |
|
}; |
|
}); |
|
var getMemoizedSnapshot = memoizeOne(getSecondarySnapshot); |
|
var getMemoizedProps = memoizeOne(function (offset, combineTargetFor, shouldAnimateDisplacement) { |
|
if (combineTargetFor === void 0) { |
|
combineTargetFor = null; |
|
} |
|
|
|
return { |
|
mapped: { |
|
type: 'SECONDARY', |
|
offset: offset, |
|
combineTargetFor: combineTargetFor, |
|
shouldAnimateDisplacement: shouldAnimateDisplacement, |
|
snapshot: getMemoizedSnapshot(combineTargetFor) |
|
} |
|
}; |
|
}); |
|
|
|
var getFallback = function getFallback(combineTargetFor) { |
|
return combineTargetFor ? getMemoizedProps(origin, combineTargetFor, true) : null; |
|
}; |
|
|
|
var getProps = function getProps(ownId, draggingId, impact, afterCritical) { |
|
var visualDisplacement = impact.displaced.visible[ownId]; |
|
var isAfterCriticalInVirtualList = Boolean(afterCritical.inVirtualList && afterCritical.effected[ownId]); |
|
var combine = tryGetCombine(impact); |
|
var combineTargetFor = combine && combine.draggableId === ownId ? draggingId : null; |
|
|
|
if (!visualDisplacement) { |
|
if (!isAfterCriticalInVirtualList) { |
|
return getFallback(combineTargetFor); |
|
} |
|
|
|
if (impact.displaced.invisible[ownId]) { |
|
return null; |
|
} |
|
|
|
var change = negate(afterCritical.displacedBy.point); |
|
|
|
var _offset = memoizedOffset(change.x, change.y); |
|
|
|
return getMemoizedProps(_offset, combineTargetFor, true); |
|
} |
|
|
|
if (isAfterCriticalInVirtualList) { |
|
return getFallback(combineTargetFor); |
|
} |
|
|
|
var displaceBy = impact.displacedBy.point; |
|
var offset = memoizedOffset(displaceBy.x, displaceBy.y); |
|
return getMemoizedProps(offset, combineTargetFor, visualDisplacement.shouldAnimate); |
|
}; |
|
|
|
var selector = function selector(state, ownProps) { |
|
if (state.isDragging) { |
|
if (state.critical.draggable.id === ownProps.draggableId) { |
|
return null; |
|
} |
|
|
|
return getProps(ownProps.draggableId, state.critical.draggable.id, state.impact, state.afterCritical); |
|
} |
|
|
|
if (state.phase === 'DROP_ANIMATING') { |
|
var completed = state.completed; |
|
|
|
if (completed.result.draggableId === ownProps.draggableId) { |
|
return null; |
|
} |
|
|
|
return getProps(ownProps.draggableId, completed.result.draggableId, completed.impact, completed.afterCritical); |
|
} |
|
|
|
return null; |
|
}; |
|
|
|
return selector; |
|
} |
|
|
|
var makeMapStateToProps = function makeMapStateToProps() { |
|
var draggingSelector = getDraggableSelector(); |
|
var secondarySelector = getSecondarySelector(); |
|
|
|
var selector = function selector(state, ownProps) { |
|
return draggingSelector(state, ownProps) || secondarySelector(state, ownProps) || atRest; |
|
}; |
|
|
|
return selector; |
|
}; |
|
var mapDispatchToProps = { |
|
dropAnimationFinished: dropAnimationFinished |
|
}; |
|
var ConnectedDraggable = connect(makeMapStateToProps, mapDispatchToProps, null, { |
|
context: StoreContext, |
|
pure: true, |
|
areStatePropsEqual: isStrictEqual |
|
})(Draggable); |
|
|
|
function PrivateDraggable(props) { |
|
var droppableContext = useRequiredContext(DroppableContext); |
|
var isUsingCloneFor = droppableContext.isUsingCloneFor; |
|
|
|
if (isUsingCloneFor === props.draggableId && !props.isClone) { |
|
return null; |
|
} |
|
|
|
return React.createElement(ConnectedDraggable, props); |
|
} |
|
function PublicDraggable(props) { |
|
var isEnabled = typeof props.isDragDisabled === 'boolean' ? !props.isDragDisabled : true; |
|
var canDragInteractiveElements = Boolean(props.disableInteractiveElementBlocking); |
|
var shouldRespectForcePress = Boolean(props.shouldRespectForcePress); |
|
return React.createElement(PrivateDraggable, _extends({}, props, { |
|
isClone: false, |
|
isEnabled: isEnabled, |
|
canDragInteractiveElements: canDragInteractiveElements, |
|
shouldRespectForcePress: shouldRespectForcePress |
|
})); |
|
} |
|
|
|
function Droppable(props) { |
|
var appContext = useContext(AppContext); |
|
!appContext ? process.env.NODE_ENV !== "production" ? invariant(false, 'Could not find app context') : invariant(false) : void 0; |
|
var contextId = appContext.contextId, |
|
isMovementAllowed = appContext.isMovementAllowed; |
|
var droppableRef = useRef(null); |
|
var placeholderRef = useRef(null); |
|
var children = props.children, |
|
droppableId = props.droppableId, |
|
type = props.type, |
|
mode = props.mode, |
|
direction = props.direction, |
|
ignoreContainerClipping = props.ignoreContainerClipping, |
|
isDropDisabled = props.isDropDisabled, |
|
isCombineEnabled = props.isCombineEnabled, |
|
snapshot = props.snapshot, |
|
useClone = props.useClone, |
|
updateViewportMaxScroll = props.updateViewportMaxScroll, |
|
getContainerForClone = props.getContainerForClone; |
|
var getDroppableRef = useCallback(function () { |
|
return droppableRef.current; |
|
}, []); |
|
var setDroppableRef = useCallback(function (value) { |
|
droppableRef.current = value; |
|
}, []); |
|
var getPlaceholderRef = useCallback(function () { |
|
return placeholderRef.current; |
|
}, []); |
|
var setPlaceholderRef = useCallback(function (value) { |
|
placeholderRef.current = value; |
|
}, []); |
|
useValidation({ |
|
props: props, |
|
getDroppableRef: getDroppableRef, |
|
getPlaceholderRef: getPlaceholderRef |
|
}); |
|
var onPlaceholderTransitionEnd = useCallback(function () { |
|
if (isMovementAllowed()) { |
|
updateViewportMaxScroll({ |
|
maxScroll: getMaxWindowScroll() |
|
}); |
|
} |
|
}, [isMovementAllowed, updateViewportMaxScroll]); |
|
useDroppablePublisher({ |
|
droppableId: droppableId, |
|
type: type, |
|
mode: mode, |
|
direction: direction, |
|
isDropDisabled: isDropDisabled, |
|
isCombineEnabled: isCombineEnabled, |
|
ignoreContainerClipping: ignoreContainerClipping, |
|
getDroppableRef: getDroppableRef |
|
}); |
|
var placeholder = React.createElement(AnimateInOut, { |
|
on: props.placeholder, |
|
shouldAnimate: props.shouldAnimatePlaceholder |
|
}, function (_ref) { |
|
var onClose = _ref.onClose, |
|
data = _ref.data, |
|
animate = _ref.animate; |
|
return React.createElement(Placeholder$1, { |
|
placeholder: data, |
|
onClose: onClose, |
|
innerRef: setPlaceholderRef, |
|
animate: animate, |
|
contextId: contextId, |
|
onTransitionEnd: onPlaceholderTransitionEnd |
|
}); |
|
}); |
|
var provided = useMemo(function () { |
|
return { |
|
innerRef: setDroppableRef, |
|
placeholder: placeholder, |
|
droppableProps: { |
|
'data-rbd-droppable-id': droppableId, |
|
'data-rbd-droppable-context-id': contextId |
|
} |
|
}; |
|
}, [contextId, droppableId, placeholder, setDroppableRef]); |
|
var isUsingCloneFor = useClone ? useClone.dragging.draggableId : null; |
|
var droppableContext = useMemo(function () { |
|
return { |
|
droppableId: droppableId, |
|
type: type, |
|
isUsingCloneFor: isUsingCloneFor |
|
}; |
|
}, [droppableId, isUsingCloneFor, type]); |
|
|
|
function getClone() { |
|
if (!useClone) { |
|
return null; |
|
} |
|
|
|
var dragging = useClone.dragging, |
|
render = useClone.render; |
|
var node = React.createElement(PrivateDraggable, { |
|
draggableId: dragging.draggableId, |
|
index: dragging.source.index, |
|
isClone: true, |
|
isEnabled: true, |
|
shouldRespectForcePress: false, |
|
canDragInteractiveElements: true |
|
}, function (draggableProvided, draggableSnapshot) { |
|
return render(draggableProvided, draggableSnapshot, dragging); |
|
}); |
|
return ReactDOM.createPortal(node, getContainerForClone()); |
|
} |
|
|
|
return React.createElement(DroppableContext.Provider, { |
|
value: droppableContext |
|
}, children(provided, snapshot), getClone()); |
|
} |
|
|
|
var isMatchingType = function isMatchingType(type, critical) { |
|
return type === critical.droppable.type; |
|
}; |
|
|
|
var getDraggable = function getDraggable(critical, dimensions) { |
|
return dimensions.draggables[critical.draggable.id]; |
|
}; |
|
|
|
var makeMapStateToProps$1 = function makeMapStateToProps() { |
|
var idleWithAnimation = { |
|
placeholder: null, |
|
shouldAnimatePlaceholder: true, |
|
snapshot: { |
|
isDraggingOver: false, |
|
draggingOverWith: null, |
|
draggingFromThisWith: null, |
|
isUsingPlaceholder: false |
|
}, |
|
useClone: null |
|
}; |
|
|
|
var idleWithoutAnimation = _extends({}, idleWithAnimation, { |
|
shouldAnimatePlaceholder: false |
|
}); |
|
|
|
var getDraggableRubric = memoizeOne(function (descriptor) { |
|
return { |
|
draggableId: descriptor.id, |
|
type: descriptor.type, |
|
source: { |
|
index: descriptor.index, |
|
droppableId: descriptor.droppableId |
|
} |
|
}; |
|
}); |
|
var getMapProps = memoizeOne(function (id, isEnabled, isDraggingOverForConsumer, isDraggingOverForImpact, dragging, renderClone) { |
|
var draggableId = dragging.descriptor.id; |
|
var isHome = dragging.descriptor.droppableId === id; |
|
|
|
if (isHome) { |
|
var useClone = renderClone ? { |
|
render: renderClone, |
|
dragging: getDraggableRubric(dragging.descriptor) |
|
} : null; |
|
var _snapshot = { |
|
isDraggingOver: isDraggingOverForConsumer, |
|
draggingOverWith: isDraggingOverForConsumer ? draggableId : null, |
|
draggingFromThisWith: draggableId, |
|
isUsingPlaceholder: true |
|
}; |
|
return { |
|
placeholder: dragging.placeholder, |
|
shouldAnimatePlaceholder: false, |
|
snapshot: _snapshot, |
|
useClone: useClone |
|
}; |
|
} |
|
|
|
if (!isEnabled) { |
|
return idleWithoutAnimation; |
|
} |
|
|
|
if (!isDraggingOverForImpact) { |
|
return idleWithAnimation; |
|
} |
|
|
|
var snapshot = { |
|
isDraggingOver: isDraggingOverForConsumer, |
|
draggingOverWith: draggableId, |
|
draggingFromThisWith: null, |
|
isUsingPlaceholder: true |
|
}; |
|
return { |
|
placeholder: dragging.placeholder, |
|
shouldAnimatePlaceholder: true, |
|
snapshot: snapshot, |
|
useClone: null |
|
}; |
|
}); |
|
|
|
var selector = function selector(state, ownProps) { |
|
var id = ownProps.droppableId; |
|
var type = ownProps.type; |
|
var isEnabled = !ownProps.isDropDisabled; |
|
var renderClone = ownProps.renderClone; |
|
|
|
if (state.isDragging) { |
|
var critical = state.critical; |
|
|
|
if (!isMatchingType(type, critical)) { |
|
return idleWithoutAnimation; |
|
} |
|
|
|
var dragging = getDraggable(critical, state.dimensions); |
|
var isDraggingOver = whatIsDraggedOver(state.impact) === id; |
|
return getMapProps(id, isEnabled, isDraggingOver, isDraggingOver, dragging, renderClone); |
|
} |
|
|
|
if (state.phase === 'DROP_ANIMATING') { |
|
var completed = state.completed; |
|
|
|
if (!isMatchingType(type, completed.critical)) { |
|
return idleWithoutAnimation; |
|
} |
|
|
|
var _dragging = getDraggable(completed.critical, state.dimensions); |
|
|
|
return getMapProps(id, isEnabled, whatIsDraggedOverFromResult(completed.result) === id, whatIsDraggedOver(completed.impact) === id, _dragging, renderClone); |
|
} |
|
|
|
if (state.phase === 'IDLE' && state.completed && !state.shouldFlush) { |
|
var _completed = state.completed; |
|
|
|
if (!isMatchingType(type, _completed.critical)) { |
|
return idleWithoutAnimation; |
|
} |
|
|
|
var wasOver = whatIsDraggedOver(_completed.impact) === id; |
|
var wasCombining = Boolean(_completed.impact.at && _completed.impact.at.type === 'COMBINE'); |
|
var isHome = _completed.critical.droppable.id === id; |
|
|
|
if (wasOver) { |
|
return wasCombining ? idleWithAnimation : idleWithoutAnimation; |
|
} |
|
|
|
if (isHome) { |
|
return idleWithAnimation; |
|
} |
|
|
|
return idleWithoutAnimation; |
|
} |
|
|
|
return idleWithoutAnimation; |
|
}; |
|
|
|
return selector; |
|
}; |
|
var mapDispatchToProps$1 = { |
|
updateViewportMaxScroll: updateViewportMaxScroll |
|
}; |
|
|
|
function getBody() { |
|
!document.body ? process.env.NODE_ENV !== "production" ? invariant(false, 'document.body is not ready') : invariant(false) : void 0; |
|
return document.body; |
|
} |
|
|
|
var defaultProps = { |
|
mode: 'standard', |
|
type: 'DEFAULT', |
|
direction: 'vertical', |
|
isDropDisabled: false, |
|
isCombineEnabled: false, |
|
ignoreContainerClipping: false, |
|
renderClone: null, |
|
getContainerForClone: getBody |
|
}; |
|
var ConnectedDroppable = connect(makeMapStateToProps$1, mapDispatchToProps$1, null, { |
|
context: StoreContext, |
|
pure: true, |
|
areStatePropsEqual: isStrictEqual |
|
})(Droppable); |
|
ConnectedDroppable.defaultProps = defaultProps; |
|
|
|
export { DragDropContext, PublicDraggable as Draggable, ConnectedDroppable as Droppable, resetServerContext, useKeyboardSensor, useMouseSensor, useTouchSensor };
|
|
|