123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- "use strict";
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.arrAdd = arrAdd;
- exports.arrDel = arrDel;
- exports.calcDropPosition = calcDropPosition;
- exports.calcSelectedKeys = calcSelectedKeys;
- exports.conductExpandParent = conductExpandParent;
- exports.convertDataToTree = convertDataToTree;
- exports.getDragChildrenKeys = getDragChildrenKeys;
- Object.defineProperty(exports, "getPosition", {
- enumerable: true,
- get: function get() {
- return _treeUtil.getPosition;
- }
- });
- exports.isFirstChild = isFirstChild;
- exports.isLastChild = isLastChild;
- Object.defineProperty(exports, "isTreeNode", {
- enumerable: true,
- get: function get() {
- return _treeUtil.isTreeNode;
- }
- });
- exports.parseCheckedKeys = parseCheckedKeys;
- exports.posToArr = posToArr;
- var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
- var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
- var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
- var _warning = _interopRequireDefault(require("rc-util/lib/warning"));
- var _react = _interopRequireDefault(require("react"));
- var _TreeNode = _interopRequireDefault(require("./TreeNode"));
- var _keyUtil = _interopRequireDefault(require("./utils/keyUtil"));
- var _treeUtil = require("./utils/treeUtil");
- var _excluded = ["children"];
- /* eslint-disable no-lonely-if */
- /**
- * Legacy code. Should avoid to use if you are new to import these code.
- */
- function arrDel(list, value) {
- if (!list) return [];
- var clone = list.slice();
- var index = clone.indexOf(value);
- if (index >= 0) {
- clone.splice(index, 1);
- }
- return clone;
- }
- function arrAdd(list, value) {
- var clone = (list || []).slice();
- if (clone.indexOf(value) === -1) {
- clone.push(value);
- }
- return clone;
- }
- function posToArr(pos) {
- return pos.split('-');
- }
- function getDragChildrenKeys(dragNodeKey, keyEntities) {
- // not contains self
- // self for left or right drag
- var dragChildrenKeys = [];
- var entity = (0, _keyUtil.default)(keyEntities, dragNodeKey);
- function dig() {
- var list = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
- list.forEach(function (_ref) {
- var key = _ref.key,
- children = _ref.children;
- dragChildrenKeys.push(key);
- dig(children);
- });
- }
- dig(entity.children);
- return dragChildrenKeys;
- }
- function isLastChild(treeNodeEntity) {
- if (treeNodeEntity.parent) {
- var posArr = posToArr(treeNodeEntity.pos);
- return Number(posArr[posArr.length - 1]) === treeNodeEntity.parent.children.length - 1;
- }
- return false;
- }
- function isFirstChild(treeNodeEntity) {
- var posArr = posToArr(treeNodeEntity.pos);
- return Number(posArr[posArr.length - 1]) === 0;
- }
- // Only used when drag, not affect SSR.
- function calcDropPosition(event, dragNodeProps, targetNodeProps, indent, startMousePosition, allowDrop, flattenedNodes, keyEntities, expandKeys, direction) {
- var _abstractDropNodeEnti;
- var clientX = event.clientX,
- clientY = event.clientY;
- var _getBoundingClientRec = event.target.getBoundingClientRect(),
- top = _getBoundingClientRec.top,
- height = _getBoundingClientRec.height;
- // optional chain for testing
- var horizontalMouseOffset = (direction === 'rtl' ? -1 : 1) * (((startMousePosition === null || startMousePosition === void 0 ? void 0 : startMousePosition.x) || 0) - clientX);
- var rawDropLevelOffset = (horizontalMouseOffset - 12) / indent;
- // Filter the expanded keys to exclude the node that not has children currently (like async nodes).
- var filteredExpandKeys = expandKeys.filter(function (key) {
- var _keyEntities$key;
- return (_keyEntities$key = keyEntities[key]) === null || _keyEntities$key === void 0 || (_keyEntities$key = _keyEntities$key.children) === null || _keyEntities$key === void 0 ? void 0 : _keyEntities$key.length;
- });
- // find abstract drop node by horizontal offset
- var abstractDropNodeEntity = (0, _keyUtil.default)(keyEntities, targetNodeProps.eventKey);
- if (clientY < top + height / 2) {
- // first half, set abstract drop node to previous node
- var nodeIndex = flattenedNodes.findIndex(function (flattenedNode) {
- return flattenedNode.key === abstractDropNodeEntity.key;
- });
- var prevNodeIndex = nodeIndex <= 0 ? 0 : nodeIndex - 1;
- var prevNodeKey = flattenedNodes[prevNodeIndex].key;
- abstractDropNodeEntity = (0, _keyUtil.default)(keyEntities, prevNodeKey);
- }
- var initialAbstractDropNodeKey = abstractDropNodeEntity.key;
- var abstractDragOverEntity = abstractDropNodeEntity;
- var dragOverNodeKey = abstractDropNodeEntity.key;
- var dropPosition = 0;
- var dropLevelOffset = 0;
- // Only allow cross level drop when dragging on a non-expanded node
- if (!filteredExpandKeys.includes(initialAbstractDropNodeKey)) {
- for (var i = 0; i < rawDropLevelOffset; i += 1) {
- if (isLastChild(abstractDropNodeEntity)) {
- abstractDropNodeEntity = abstractDropNodeEntity.parent;
- dropLevelOffset += 1;
- } else {
- break;
- }
- }
- }
- var abstractDragDataNode = dragNodeProps.data;
- var abstractDropDataNode = abstractDropNodeEntity.node;
- var dropAllowed = true;
- if (isFirstChild(abstractDropNodeEntity) && abstractDropNodeEntity.level === 0 && clientY < top + height / 2 && allowDrop({
- dragNode: abstractDragDataNode,
- dropNode: abstractDropDataNode,
- dropPosition: -1
- }) && abstractDropNodeEntity.key === targetNodeProps.eventKey) {
- // first half of first node in first level
- dropPosition = -1;
- } else if ((abstractDragOverEntity.children || []).length && filteredExpandKeys.includes(dragOverNodeKey)) {
- // drop on expanded node
- // only allow drop inside
- if (allowDrop({
- dragNode: abstractDragDataNode,
- dropNode: abstractDropDataNode,
- dropPosition: 0
- })) {
- dropPosition = 0;
- } else {
- dropAllowed = false;
- }
- } else if (dropLevelOffset === 0) {
- if (rawDropLevelOffset > -1.5) {
- // | Node | <- abstractDropNode
- // | -^-===== | <- mousePosition
- // 1. try drop after
- // 2. do not allow drop
- if (allowDrop({
- dragNode: abstractDragDataNode,
- dropNode: abstractDropDataNode,
- dropPosition: 1
- })) {
- dropPosition = 1;
- } else {
- dropAllowed = false;
- }
- } else {
- // | Node | <- abstractDropNode
- // | ---==^== | <- mousePosition
- // whether it has children or doesn't has children
- // always
- // 1. try drop inside
- // 2. try drop after
- // 3. do not allow drop
- if (allowDrop({
- dragNode: abstractDragDataNode,
- dropNode: abstractDropDataNode,
- dropPosition: 0
- })) {
- dropPosition = 0;
- } else if (allowDrop({
- dragNode: abstractDragDataNode,
- dropNode: abstractDropDataNode,
- dropPosition: 1
- })) {
- dropPosition = 1;
- } else {
- dropAllowed = false;
- }
- }
- } else {
- // | Node1 | <- abstractDropNode
- // | Node2 |
- // --^--|----=====| <- mousePosition
- // 1. try insert after Node1
- // 2. do not allow drop
- if (allowDrop({
- dragNode: abstractDragDataNode,
- dropNode: abstractDropDataNode,
- dropPosition: 1
- })) {
- dropPosition = 1;
- } else {
- dropAllowed = false;
- }
- }
- return {
- dropPosition: dropPosition,
- dropLevelOffset: dropLevelOffset,
- dropTargetKey: abstractDropNodeEntity.key,
- dropTargetPos: abstractDropNodeEntity.pos,
- dragOverNodeKey: dragOverNodeKey,
- dropContainerKey: dropPosition === 0 ? null : ((_abstractDropNodeEnti = abstractDropNodeEntity.parent) === null || _abstractDropNodeEnti === void 0 ? void 0 : _abstractDropNodeEnti.key) || null,
- dropAllowed: dropAllowed
- };
- }
- /**
- * Return selectedKeys according with multiple prop
- * @param selectedKeys
- * @param props
- * @returns [string]
- */
- function calcSelectedKeys(selectedKeys, props) {
- if (!selectedKeys) return undefined;
- var multiple = props.multiple;
- if (multiple) {
- return selectedKeys.slice();
- }
- if (selectedKeys.length) {
- return [selectedKeys[0]];
- }
- return selectedKeys;
- }
- var internalProcessProps = function internalProcessProps(props) {
- return props;
- };
- function convertDataToTree(treeData, processor) {
- if (!treeData) return [];
- var _ref2 = processor || {},
- _ref2$processProps = _ref2.processProps,
- processProps = _ref2$processProps === void 0 ? internalProcessProps : _ref2$processProps;
- var list = Array.isArray(treeData) ? treeData : [treeData];
- return list.map(function (_ref3) {
- var children = _ref3.children,
- props = (0, _objectWithoutProperties2.default)(_ref3, _excluded);
- var childrenNodes = convertDataToTree(children, processor);
- return /*#__PURE__*/_react.default.createElement(_TreeNode.default, (0, _extends2.default)({
- key: props.key
- }, processProps(props)), childrenNodes);
- });
- }
- /**
- * Parse `checkedKeys` to { checkedKeys, halfCheckedKeys } style
- */
- function parseCheckedKeys(keys) {
- if (!keys) {
- return null;
- }
- // Convert keys to object format
- var keyProps;
- if (Array.isArray(keys)) {
- // [Legacy] Follow the api doc
- keyProps = {
- checkedKeys: keys,
- halfCheckedKeys: undefined
- };
- } else if ((0, _typeof2.default)(keys) === 'object') {
- keyProps = {
- checkedKeys: keys.checked || undefined,
- halfCheckedKeys: keys.halfChecked || undefined
- };
- } else {
- (0, _warning.default)(false, '`checkedKeys` is not an array or an object');
- return null;
- }
- return keyProps;
- }
- /**
- * If user use `autoExpandParent` we should get the list of parent node
- * @param keyList
- * @param keyEntities
- */
- function conductExpandParent(keyList, keyEntities) {
- var expandedKeys = new Set();
- function conductUp(key) {
- if (expandedKeys.has(key)) return;
- var entity = (0, _keyUtil.default)(keyEntities, key);
- if (!entity) return;
- expandedKeys.add(key);
- var parent = entity.parent,
- node = entity.node;
- if (node.disabled) return;
- if (parent) {
- conductUp(parent.key);
- }
- }
- (keyList || []).forEach(function (key) {
- conductUp(key);
- });
- return (0, _toConsumableArray2.default)(expandedKeys);
- }
|