This commit is contained in:
16
node_modules/react-dnd/dist/cjs/core/DndContext.js
generated
vendored
Normal file
16
node_modules/react-dnd/dist/cjs/core/DndContext.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.DndContext = void 0;
|
||||
|
||||
var _react = require("react");
|
||||
|
||||
/**
|
||||
* Create the React Context
|
||||
*/
|
||||
var DndContext = (0, _react.createContext)({
|
||||
dragDropManager: undefined
|
||||
});
|
||||
exports.DndContext = DndContext;
|
||||
105
node_modules/react-dnd/dist/cjs/core/DndProvider.js
generated
vendored
Normal file
105
node_modules/react-dnd/dist/cjs/core/DndProvider.js
generated
vendored
Normal file
@@ -0,0 +1,105 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.DndProvider = void 0;
|
||||
|
||||
var _jsxRuntime = require("react/jsx-runtime");
|
||||
|
||||
var _react = require("react");
|
||||
|
||||
var _dndCore = require("dnd-core");
|
||||
|
||||
var _DndContext = require("./DndContext");
|
||||
|
||||
var _excluded = ["children"];
|
||||
|
||||
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
||||
|
||||
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
||||
|
||||
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
||||
|
||||
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
||||
|
||||
function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
||||
|
||||
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
||||
|
||||
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
||||
|
||||
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
||||
|
||||
var refCount = 0;
|
||||
var INSTANCE_SYM = Symbol.for('__REACT_DND_CONTEXT_INSTANCE__');
|
||||
/**
|
||||
* A React component that provides the React-DnD context
|
||||
*/
|
||||
|
||||
var DndProvider = (0, _react.memo)(function DndProvider(_ref) {
|
||||
var children = _ref.children,
|
||||
props = _objectWithoutProperties(_ref, _excluded);
|
||||
|
||||
var _getDndContextValue = getDndContextValue(props),
|
||||
_getDndContextValue2 = _slicedToArray(_getDndContextValue, 2),
|
||||
manager = _getDndContextValue2[0],
|
||||
isGlobalInstance = _getDndContextValue2[1]; // memoized from props
|
||||
|
||||
/**
|
||||
* If the global context was used to store the DND context
|
||||
* then where theres no more references to it we should
|
||||
* clean it up to avoid memory leaks
|
||||
*/
|
||||
|
||||
|
||||
(0, _react.useEffect)(function () {
|
||||
if (isGlobalInstance) {
|
||||
var context = getGlobalContext();
|
||||
++refCount;
|
||||
return function () {
|
||||
if (--refCount === 0) {
|
||||
context[INSTANCE_SYM] = null;
|
||||
}
|
||||
};
|
||||
}
|
||||
}, []);
|
||||
return (0, _jsxRuntime.jsx)(_DndContext.DndContext.Provider, Object.assign({
|
||||
value: manager
|
||||
}, {
|
||||
children: children
|
||||
}), void 0);
|
||||
});
|
||||
exports.DndProvider = DndProvider;
|
||||
|
||||
function getDndContextValue(props) {
|
||||
if ('manager' in props) {
|
||||
var _manager = {
|
||||
dragDropManager: props.manager
|
||||
};
|
||||
return [_manager, false];
|
||||
}
|
||||
|
||||
var manager = createSingletonDndContext(props.backend, props.context, props.options, props.debugMode);
|
||||
var isGlobalInstance = !props.context;
|
||||
return [manager, isGlobalInstance];
|
||||
}
|
||||
|
||||
function createSingletonDndContext(backend) {
|
||||
var context = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : getGlobalContext();
|
||||
var options = arguments.length > 2 ? arguments[2] : undefined;
|
||||
var debugMode = arguments.length > 3 ? arguments[3] : undefined;
|
||||
var ctx = context;
|
||||
|
||||
if (!ctx[INSTANCE_SYM]) {
|
||||
ctx[INSTANCE_SYM] = {
|
||||
dragDropManager: (0, _dndCore.createDragDropManager)(backend, context, options, debugMode)
|
||||
};
|
||||
}
|
||||
|
||||
return ctx[INSTANCE_SYM];
|
||||
}
|
||||
|
||||
function getGlobalContext() {
|
||||
return typeof global !== 'undefined' ? global : window;
|
||||
}
|
||||
35
node_modules/react-dnd/dist/cjs/core/DragPreviewImage.js
generated
vendored
Normal file
35
node_modules/react-dnd/dist/cjs/core/DragPreviewImage.js
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.DragPreviewImage = void 0;
|
||||
|
||||
var _react = require("react");
|
||||
|
||||
/**
|
||||
* A utility for rendering a drag preview image
|
||||
*/
|
||||
var DragPreviewImage = (0, _react.memo)(function DragPreviewImage(_ref) {
|
||||
var connect = _ref.connect,
|
||||
src = _ref.src;
|
||||
(0, _react.useEffect)(function () {
|
||||
if (typeof Image === 'undefined') return;
|
||||
var connected = false;
|
||||
var img = new Image();
|
||||
img.src = src;
|
||||
|
||||
img.onload = function () {
|
||||
connect(img);
|
||||
connected = true;
|
||||
};
|
||||
|
||||
return function () {
|
||||
if (connected) {
|
||||
connect(null);
|
||||
}
|
||||
};
|
||||
});
|
||||
return null;
|
||||
});
|
||||
exports.DragPreviewImage = DragPreviewImage;
|
||||
44
node_modules/react-dnd/dist/cjs/core/index.js
generated
vendored
Normal file
44
node_modules/react-dnd/dist/cjs/core/index.js
generated
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
|
||||
var _DndContext = require("./DndContext");
|
||||
|
||||
Object.keys(_DndContext).forEach(function (key) {
|
||||
if (key === "default" || key === "__esModule") return;
|
||||
if (key in exports && exports[key] === _DndContext[key]) return;
|
||||
Object.defineProperty(exports, key, {
|
||||
enumerable: true,
|
||||
get: function get() {
|
||||
return _DndContext[key];
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
var _DndProvider = require("./DndProvider");
|
||||
|
||||
Object.keys(_DndProvider).forEach(function (key) {
|
||||
if (key === "default" || key === "__esModule") return;
|
||||
if (key in exports && exports[key] === _DndProvider[key]) return;
|
||||
Object.defineProperty(exports, key, {
|
||||
enumerable: true,
|
||||
get: function get() {
|
||||
return _DndProvider[key];
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
var _DragPreviewImage = require("./DragPreviewImage");
|
||||
|
||||
Object.keys(_DragPreviewImage).forEach(function (key) {
|
||||
if (key === "default" || key === "__esModule") return;
|
||||
if (key in exports && exports[key] === _DragPreviewImage[key]) return;
|
||||
Object.defineProperty(exports, key, {
|
||||
enumerable: true,
|
||||
get: function get() {
|
||||
return _DragPreviewImage[key];
|
||||
}
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user