UNPKG

@wufengteam/inputs

Version:

平台提供的右侧属性编辑器,需要在主工程中注册

69 lines 3.59 kB
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(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } } function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } var __rest = this && this.__rest || function (s, e) { var t = {}; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p]; if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]]; } return t; }; import React, { useRef } from 'react'; import { useDrag, useDrop } from 'react-dnd'; var type = 'DraggableBodyRow'; var DraggableBodyRow = function DraggableBodyRow(_a) { var index = _a.index, moveRow = _a.moveRow, className = _a.className, style = _a.style, restProps = __rest(_a, ["index", "moveRow", "className", "style"]); var ref = useRef(null); var _useDrop = useDrop({ accept: type, collect: function collect(monitor) { var _ref = monitor.getItem() || {}, dragIndex = _ref.index; if (dragIndex === index) { return {}; } return { isOver: monitor.isOver(), dropClassName: dragIndex < index ? 'drop-over-downward' : 'drop-over-upward' }; }, drop: function drop(item) { moveRow(item.index, index); } }), _useDrop2 = _slicedToArray(_useDrop, 2), _useDrop2$ = _useDrop2[0], isOver = _useDrop2$.isOver, dropClassName = _useDrop2$.dropClassName, drop = _useDrop2[1]; var _useDrag = useDrag({ item: { type: type, index: index }, collect: function collect(monitor) { return { isDragging: monitor.isDragging() }; } }), _useDrag2 = _slicedToArray(_useDrag, 2), drag = _useDrag2[1]; drop(drag(ref)); return /*#__PURE__*/React.createElement("tr", Object.assign({ ref: ref, className: "".concat(className).concat(isOver ? dropClassName : ''), style: Object.assign({ cursor: 'move' }, style) }, restProps)); }; export default DraggableBodyRow;