linkmore-design 1.1.12 → 1.1.13-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +34 -0
- package/dist/LmEditTable/DndContainer.d.ts +4 -3
- package/dist/LmEditTable/EditTable.d.ts +2 -0
- package/dist/LmEditTable/components/DraggableContainer.d.ts +7 -0
- package/dist/LmEditTable/components/index.d.ts +11 -0
- package/dist/LmEditTable/sortableItem.d.ts +3 -2
- package/dist/LmEditTable/util.d.ts +2 -0
- package/dist/LmEditTable/virtual/VirtualRow.d.ts +6 -0
- package/dist/LmEditTable/virtual/VirtualRowBack.d.ts +6 -0
- package/dist/LmEditTable/virtual/VirtualTable.d.ts +3 -0
- package/dist/LmEditTable/virtual/VirtualWrapper.d.ts +3 -0
- package/dist/LmEditTable/virtual/context.d.ts +13 -0
- package/dist/LmEditTable/virtual/index.d.ts +4 -0
- package/dist/index.umd.js +471 -217
- package/dist/index.umd.min.js +5 -5
- package/dist/variables.css +29 -0
- package/es/IconFont/index.js +1 -1
- package/es/LmEditTable/DndContainer.d.ts +4 -3
- package/es/LmEditTable/DndContainer.js +2 -2
- package/es/LmEditTable/EditTable.d.ts +2 -0
- package/es/LmEditTable/EditTable.js +139 -150
- package/es/LmEditTable/components/DraggableContainer.d.ts +7 -0
- package/es/LmEditTable/components/DraggableContainer.js +32 -0
- package/es/LmEditTable/components/index.d.ts +11 -0
- package/es/LmEditTable/components/index.js +5 -0
- package/es/LmEditTable/sortableItem.d.ts +3 -2
- package/es/LmEditTable/sortableItem.js +15 -4
- package/es/LmEditTable/style/index.css +29 -0
- package/es/LmEditTable/style/variables.css +29 -0
- package/es/LmEditTable/util.d.ts +2 -0
- package/es/LmEditTable/util.js +37 -1
- package/es/LmEditTable/virtual/VirtualRow.d.ts +6 -0
- package/es/LmEditTable/virtual/VirtualRow.js +60 -0
- package/es/LmEditTable/virtual/VirtualRowBack.d.ts +6 -0
- package/es/LmEditTable/virtual/VirtualRowBack.js +102 -0
- package/es/LmEditTable/virtual/VirtualTable.d.ts +3 -0
- package/es/LmEditTable/virtual/VirtualTable.js +54 -0
- package/es/LmEditTable/virtual/VirtualWrapper.d.ts +3 -0
- package/es/LmEditTable/virtual/VirtualWrapper.js +60 -0
- package/es/LmEditTable/virtual/context.d.ts +13 -0
- package/es/LmEditTable/virtual/context.js +54 -0
- package/es/LmEditTable/virtual/index.d.ts +4 -0
- package/es/LmEditTable/virtual/index.js +4 -0
- package/es/hooks/useEvent/index.js +1 -1
- package/es/styles/variables.css +29 -0
- package/lib/IconFont/index.js +1 -1
- package/lib/LmEditTable/DndContainer.d.ts +4 -3
- package/lib/LmEditTable/DndContainer.js +4 -3
- package/lib/LmEditTable/EditTable.d.ts +2 -0
- package/lib/LmEditTable/EditTable.js +135 -146
- package/lib/LmEditTable/components/DraggableContainer.d.ts +7 -0
- package/lib/LmEditTable/components/DraggableContainer.js +45 -0
- package/lib/LmEditTable/components/index.d.ts +11 -0
- package/lib/LmEditTable/components/index.js +21 -0
- package/lib/LmEditTable/sortableItem.d.ts +3 -2
- package/lib/LmEditTable/sortableItem.js +18 -5
- package/lib/LmEditTable/style/index.css +29 -0
- package/lib/LmEditTable/style/variables.css +29 -0
- package/lib/LmEditTable/util.d.ts +2 -0
- package/lib/LmEditTable/util.js +40 -0
- package/lib/LmEditTable/virtual/VirtualRow.d.ts +6 -0
- package/lib/LmEditTable/virtual/VirtualRow.js +73 -0
- package/lib/LmEditTable/virtual/VirtualRowBack.d.ts +6 -0
- package/lib/LmEditTable/virtual/VirtualRowBack.js +115 -0
- package/lib/LmEditTable/virtual/VirtualTable.d.ts +3 -0
- package/lib/LmEditTable/virtual/VirtualTable.js +71 -0
- package/lib/LmEditTable/virtual/VirtualWrapper.d.ts +3 -0
- package/lib/LmEditTable/virtual/VirtualWrapper.js +73 -0
- package/lib/LmEditTable/virtual/context.d.ts +13 -0
- package/lib/LmEditTable/virtual/context.js +64 -0
- package/lib/LmEditTable/virtual/index.d.ts +4 -0
- package/lib/LmEditTable/virtual/index.js +31 -0
- package/lib/hooks/useEvent/index.js +1 -1
- package/lib/styles/variables.css +29 -0
- package/package.json +1 -1
package/dist/index.umd.js
CHANGED
|
@@ -68580,7 +68580,7 @@
|
|
|
68580
68580
|
});
|
|
68581
68581
|
|
|
68582
68582
|
var IconFont = create({
|
|
68583
|
-
scriptUrl: '//at.alicdn.com/t/c/
|
|
68583
|
+
scriptUrl: '//at.alicdn.com/t/c/font_2966019_neaxovtw4w.js' // 在 iconfont.cn 上生成
|
|
68584
68584
|
// scriptUrl: require('./font/iconfont.js'),
|
|
68585
68585
|
|
|
68586
68586
|
});
|
|
@@ -287098,7 +287098,12 @@
|
|
|
287098
287098
|
|
|
287099
287099
|
return React.useCallback(function () {
|
|
287100
287100
|
var fn = handlerRef.current;
|
|
287101
|
-
|
|
287101
|
+
|
|
287102
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
287103
|
+
args[_key] = arguments[_key];
|
|
287104
|
+
}
|
|
287105
|
+
|
|
287106
|
+
return fn === null || fn === void 0 ? void 0 : fn.apply(void 0, args);
|
|
287102
287107
|
}, []);
|
|
287103
287108
|
}
|
|
287104
287109
|
|
|
@@ -311953,31 +311958,220 @@
|
|
|
311953
311958
|
}, children);
|
|
311954
311959
|
};
|
|
311955
311960
|
|
|
311961
|
+
var DndContainer$2 = /*#__PURE__*/React.memo(DndContainer$1);
|
|
311962
|
+
|
|
311956
311963
|
var SortableBox$1 = function SortableBox(_ref) {
|
|
311957
311964
|
var items = _ref.items,
|
|
311958
311965
|
children = _ref.children;
|
|
311959
311966
|
return /*#__PURE__*/React__default['default'].createElement(SortableContext$1, {
|
|
311960
311967
|
items: items,
|
|
311961
|
-
strategy:
|
|
311968
|
+
strategy: horizontalListSortingStrategy
|
|
311962
311969
|
}, children);
|
|
311963
311970
|
};
|
|
311964
311971
|
|
|
311965
|
-
var
|
|
311966
|
-
|
|
311967
|
-
|
|
311968
|
-
|
|
311969
|
-
|
|
311970
|
-
|
|
311971
|
-
|
|
311972
|
+
var TableContext$2 = /*#__PURE__*/React.createContext({
|
|
311973
|
+
state: null,
|
|
311974
|
+
dispatch: null,
|
|
311975
|
+
instance: {}
|
|
311976
|
+
});
|
|
311977
|
+
|
|
311978
|
+
var useStore$1 = function useStore() {
|
|
311979
|
+
return React.useContext(TableContext$2);
|
|
311972
311980
|
};
|
|
311973
311981
|
|
|
311974
|
-
var
|
|
311982
|
+
var initialState$3 = {
|
|
311983
|
+
// 行高度
|
|
311984
|
+
rowHeight: 0,
|
|
311985
|
+
columnsLen: 0,
|
|
311986
|
+
// 总行数
|
|
311987
|
+
totalLen: 0
|
|
311988
|
+
};
|
|
311989
|
+
|
|
311990
|
+
var reducer$5 = function reducer(state, action) {
|
|
311991
|
+
var totalLen = action.totalLen,
|
|
311992
|
+
columnsLen = action.columnsLen,
|
|
311993
|
+
rowHeight = action.rowHeight;
|
|
311994
|
+
|
|
311995
|
+
switch (action.type) {
|
|
311996
|
+
// 数据数量
|
|
311997
|
+
case 'changeTotalLen':
|
|
311998
|
+
return _objectSpread(_objectSpread({}, state), {}, {
|
|
311999
|
+
totalLen: totalLen
|
|
312000
|
+
});
|
|
312001
|
+
// 列数量
|
|
312002
|
+
|
|
312003
|
+
case 'changeColumnsLen':
|
|
312004
|
+
return _objectSpread(_objectSpread({}, state), {}, {
|
|
312005
|
+
columnsLen: columnsLen
|
|
312006
|
+
});
|
|
312007
|
+
// 初始化行高度
|
|
312008
|
+
|
|
312009
|
+
case 'initHeight':
|
|
312010
|
+
return _objectSpread(_objectSpread({}, state), {}, {
|
|
312011
|
+
rowHeight: rowHeight
|
|
312012
|
+
});
|
|
312013
|
+
|
|
312014
|
+
default:
|
|
312015
|
+
throw new Error();
|
|
312016
|
+
}
|
|
312017
|
+
};
|
|
312018
|
+
|
|
312019
|
+
var useRealive$1 = function useRealive() {
|
|
312020
|
+
return React.useReducer(reducer$5, initialState$3);
|
|
312021
|
+
};
|
|
312022
|
+
|
|
312023
|
+
var VirtualTable$1 = /*#__PURE__*/React__default['default'].memo(function (tableProps) {
|
|
312024
|
+
var _bodyRef$current, _bodyRef$current2, _tableProps$children$3, _tableProps$children$4;
|
|
312025
|
+
|
|
312026
|
+
var bodyRef = React.useRef(null);
|
|
312027
|
+
|
|
312028
|
+
var _useRealive = useRealive$1(),
|
|
312029
|
+
_useRealive2 = _slicedToArray$1(_useRealive, 2),
|
|
312030
|
+
state = _useRealive2[0],
|
|
312031
|
+
dispatch = _useRealive2[1]; // { totalSize, virtualItems }
|
|
312032
|
+
|
|
312033
|
+
|
|
312034
|
+
var rowVirtual = useVirtual({
|
|
312035
|
+
size: state.totalLen,
|
|
312036
|
+
// 绑定父节点
|
|
312037
|
+
parentRef: {
|
|
312038
|
+
current: bodyRef === null || bodyRef === void 0 ? void 0 : (_bodyRef$current = bodyRef.current) === null || _bodyRef$current === void 0 ? void 0 : _bodyRef$current.parentNode
|
|
312039
|
+
},
|
|
312040
|
+
estimateSize: React__default['default'].useCallback(function () {
|
|
312041
|
+
return state.rowHeight;
|
|
312042
|
+
}, [state.rowHeight]),
|
|
312043
|
+
overscan: 5
|
|
312044
|
+
});
|
|
312045
|
+
var columnVirtual = useVirtual({
|
|
312046
|
+
horizontal: true,
|
|
312047
|
+
size: state.columnsLen,
|
|
312048
|
+
parentRef: {
|
|
312049
|
+
current: bodyRef === null || bodyRef === void 0 ? void 0 : (_bodyRef$current2 = bodyRef.current) === null || _bodyRef$current2 === void 0 ? void 0 : _bodyRef$current2.parentNode
|
|
312050
|
+
},
|
|
312051
|
+
estimateSize: React__default['default'].useCallback(function (i) {
|
|
312052
|
+
var _tableProps$children$, _tableProps$children$2;
|
|
312053
|
+
|
|
312054
|
+
return tableProps === null || tableProps === void 0 ? void 0 : (_tableProps$children$ = tableProps.children[0]) === null || _tableProps$children$ === void 0 ? void 0 : (_tableProps$children$2 = _tableProps$children$.props) === null || _tableProps$children$2 === void 0 ? void 0 : _tableProps$children$2.colWidths[i];
|
|
312055
|
+
}, [(_tableProps$children$3 = tableProps.children[0]) === null || _tableProps$children$3 === void 0 ? void 0 : (_tableProps$children$4 = _tableProps$children$3.props) === null || _tableProps$children$4 === void 0 ? void 0 : _tableProps$children$4.colWidths]),
|
|
312056
|
+
overscan: 5
|
|
312057
|
+
});
|
|
312058
|
+
var instance = {
|
|
312059
|
+
rowVirtual: rowVirtual,
|
|
312060
|
+
columnVirtual: columnVirtual
|
|
312061
|
+
};
|
|
312062
|
+
return /*#__PURE__*/React__default['default'].createElement(TableContext$2.Provider, {
|
|
312063
|
+
value: {
|
|
312064
|
+
state: state,
|
|
312065
|
+
dispatch: dispatch,
|
|
312066
|
+
instance: instance
|
|
312067
|
+
}
|
|
312068
|
+
}, /*#__PURE__*/React__default['default'].createElement("table", _objectSpread({
|
|
312069
|
+
ref: bodyRef
|
|
312070
|
+
}, tableProps)));
|
|
312071
|
+
});
|
|
312072
|
+
|
|
312073
|
+
var _excluded$2Q = ["children"];
|
|
312074
|
+
var VirtualWrapper$1 = /*#__PURE__*/React__default['default'].memo(function (wrapperProps) {
|
|
312075
|
+
var _virtualItems$, _virtualItems;
|
|
312076
|
+
|
|
312077
|
+
var children = wrapperProps.children,
|
|
312078
|
+
resetProps = _objectWithoutProperties$1(wrapperProps, _excluded$2Q);
|
|
312079
|
+
|
|
312080
|
+
var _useStore = useStore$1(),
|
|
312081
|
+
state = _useStore.state,
|
|
312082
|
+
dispatch = _useStore.dispatch,
|
|
312083
|
+
instance = _useStore.instance;
|
|
312084
|
+
|
|
312085
|
+
var _instance$rowVirtual = instance.rowVirtual,
|
|
312086
|
+
virtualItems = _instance$rowVirtual.virtualItems,
|
|
312087
|
+
totalSize = _instance$rowVirtual.totalSize;
|
|
312088
|
+
var contents = React.useMemo(function () {
|
|
312089
|
+
return children[1];
|
|
312090
|
+
}, [children]);
|
|
312091
|
+
var contentsLen = React.useMemo(function () {
|
|
312092
|
+
var _contents$length;
|
|
312093
|
+
|
|
312094
|
+
return (_contents$length = contents === null || contents === void 0 ? void 0 : contents.length) !== null && _contents$length !== void 0 ? _contents$length : 0;
|
|
312095
|
+
}, [contents]);
|
|
312096
|
+
React.useEffect(function () {
|
|
312097
|
+
if (state.totalLen !== contentsLen) {
|
|
312098
|
+
dispatch({
|
|
312099
|
+
type: 'changeTotalLen',
|
|
312100
|
+
totalLen: contentsLen !== null && contentsLen !== void 0 ? contentsLen : 0
|
|
312101
|
+
});
|
|
312102
|
+
}
|
|
312103
|
+
}, [contentsLen, dispatch, state.totalLen]);
|
|
312104
|
+
var paddingTop = virtualItems.length > 0 ? (virtualItems === null || virtualItems === void 0 ? void 0 : (_virtualItems$ = virtualItems[0]) === null || _virtualItems$ === void 0 ? void 0 : _virtualItems$.start) || 0 : 0;
|
|
312105
|
+
var paddingBottom = virtualItems.length > 0 ? totalSize - ((virtualItems === null || virtualItems === void 0 ? void 0 : (_virtualItems = virtualItems[virtualItems.length - 1]) === null || _virtualItems === void 0 ? void 0 : _virtualItems.end) || 0) : 0;
|
|
312106
|
+
return /*#__PURE__*/React__default['default'].createElement("tbody", _objectSpread({}, resetProps), paddingTop > 0 && /*#__PURE__*/React__default['default'].createElement("tr", null, /*#__PURE__*/React__default['default'].createElement("td", {
|
|
312107
|
+
style: {
|
|
312108
|
+
height: "".concat(paddingTop, "px")
|
|
312109
|
+
}
|
|
312110
|
+
})), children[0], virtualItems.map(function (virtualRow) {
|
|
312111
|
+
return contents[virtualRow.index];
|
|
312112
|
+
}), paddingBottom > 0 && /*#__PURE__*/React__default['default'].createElement("tr", null, /*#__PURE__*/React__default['default'].createElement("td", {
|
|
312113
|
+
style: {
|
|
312114
|
+
height: "".concat(paddingBottom, "px")
|
|
312115
|
+
}
|
|
312116
|
+
})));
|
|
312117
|
+
});
|
|
312118
|
+
|
|
312119
|
+
var _excluded$2R = ["children"];
|
|
312120
|
+
var VirtualRow$1 = /*#__PURE__*/React__default['default'].memo(function (_ref, ref) {
|
|
312121
|
+
var children = _ref.children,
|
|
312122
|
+
resetProps = _objectWithoutProperties$1(_ref, _excluded$2R);
|
|
312123
|
+
|
|
312124
|
+
var _useStore = useStore$1(),
|
|
312125
|
+
state = _useStore.state,
|
|
312126
|
+
dispatch = _useStore.dispatch;
|
|
312127
|
+
|
|
312128
|
+
var rowHeight = state.rowHeight,
|
|
312129
|
+
totalLen = state.totalLen;
|
|
312130
|
+
var trRef = React.useRef(null); // 列长度
|
|
312131
|
+
|
|
312132
|
+
var columnsLen = React.useMemo(function () {
|
|
312133
|
+
var _children$length;
|
|
312134
|
+
|
|
312135
|
+
return (_children$length = children === null || children === void 0 ? void 0 : children.length) !== null && _children$length !== void 0 ? _children$length : 0;
|
|
312136
|
+
}, [children]);
|
|
312137
|
+
React.useEffect(function () {
|
|
312138
|
+
if (state.columnsLen !== columnsLen) {
|
|
312139
|
+
dispatch({
|
|
312140
|
+
type: 'changeColumnsLen',
|
|
312141
|
+
columnsLen: columnsLen !== null && columnsLen !== void 0 ? columnsLen : 0
|
|
312142
|
+
});
|
|
312143
|
+
}
|
|
312144
|
+
}, [columnsLen, dispatch, state.columnsLen]);
|
|
312145
|
+
React.useEffect(function () {
|
|
312146
|
+
var initHeight = function initHeight(tempRef) {
|
|
312147
|
+
var _tempRef$current;
|
|
312148
|
+
|
|
312149
|
+
if ((tempRef === null || tempRef === void 0 ? void 0 : (_tempRef$current = tempRef.current) === null || _tempRef$current === void 0 ? void 0 : _tempRef$current.offsetHeight) && !rowHeight && totalLen) {
|
|
312150
|
+
var _tempRef$current$offs, _tempRef$current2;
|
|
312151
|
+
|
|
312152
|
+
var tempRowHeight = (_tempRef$current$offs = tempRef === null || tempRef === void 0 ? void 0 : (_tempRef$current2 = tempRef.current) === null || _tempRef$current2 === void 0 ? void 0 : _tempRef$current2.offsetHeight) !== null && _tempRef$current$offs !== void 0 ? _tempRef$current$offs : 0;
|
|
312153
|
+
dispatch({
|
|
312154
|
+
type: 'initHeight',
|
|
312155
|
+
rowHeight: tempRowHeight
|
|
312156
|
+
});
|
|
312157
|
+
}
|
|
312158
|
+
};
|
|
312159
|
+
|
|
312160
|
+
initHeight(Object.prototype.hasOwnProperty.call(ref, 'current') ? ref : trRef);
|
|
312161
|
+
}, [trRef, dispatch, rowHeight, totalLen, ref]);
|
|
312162
|
+
return /*#__PURE__*/React__default['default'].createElement("tr", _objectSpread(_objectSpread({}, resetProps), {}, {
|
|
312163
|
+
ref: Object.prototype.hasOwnProperty.call(ref, 'current') ? ref : trRef
|
|
312164
|
+
}), children);
|
|
312165
|
+
});
|
|
312166
|
+
|
|
312167
|
+
var _excluded$2S = ["data-row-key", "children", "className", "virtual"];
|
|
311975
312168
|
|
|
311976
312169
|
var SortableItem$1 = function SortableItem(props) {
|
|
311977
312170
|
var key = props['data-row-key'],
|
|
311978
312171
|
children = props.children,
|
|
311979
312172
|
className = props.className,
|
|
311980
|
-
|
|
312173
|
+
virtual = props.virtual,
|
|
312174
|
+
resetField = _objectWithoutProperties$1(props, _excluded$2S);
|
|
311981
312175
|
|
|
311982
312176
|
var _useSortable = useSortable({
|
|
311983
312177
|
id: key
|
|
@@ -311991,25 +312185,36 @@
|
|
|
311991
312185
|
transform: CSS.Transform.toString(transform),
|
|
311992
312186
|
transition: transition
|
|
311993
312187
|
};
|
|
311994
|
-
|
|
312188
|
+
|
|
312189
|
+
if (!virtual) {
|
|
312190
|
+
return /*#__PURE__*/React__default['default'].createElement("tr", _objectSpread(_objectSpread({}, resetField), {}, {
|
|
312191
|
+
ref: setNodeRef,
|
|
312192
|
+
key: key,
|
|
312193
|
+
style: style
|
|
312194
|
+
}, attributes), children);
|
|
312195
|
+
}
|
|
312196
|
+
|
|
312197
|
+
return /*#__PURE__*/React__default['default'].createElement(VirtualRow$1, _objectSpread(_objectSpread({}, resetField), {}, {
|
|
311995
312198
|
ref: setNodeRef,
|
|
311996
312199
|
key: key,
|
|
311997
312200
|
style: style
|
|
311998
312201
|
}, attributes), children);
|
|
311999
312202
|
};
|
|
312000
312203
|
|
|
312001
|
-
var
|
|
312204
|
+
var SortableItem$2 = /*#__PURE__*/React.memo(SortableItem$1);
|
|
312205
|
+
|
|
312206
|
+
var _excluded$2T = ["children"];
|
|
312002
312207
|
var Item$5 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
312003
312208
|
var _children$props;
|
|
312004
312209
|
|
|
312005
312210
|
var children = _ref.children,
|
|
312006
|
-
props = _objectWithoutProperties$1(_ref, _excluded$
|
|
312211
|
+
props = _objectWithoutProperties$1(_ref, _excluded$2T);
|
|
312007
312212
|
|
|
312008
312213
|
return /*#__PURE__*/React__default['default'].createElement("th", _objectSpread(_objectSpread({}, props), {}, {
|
|
312009
312214
|
ref: ref
|
|
312010
312215
|
}), (children === null || children === void 0 ? void 0 : (_children$props = children.props) === null || _children$props === void 0 ? void 0 : _children$props.children) || children);
|
|
312011
312216
|
});
|
|
312012
|
-
function SortableItem$
|
|
312217
|
+
function SortableItem$3(props) {
|
|
312013
312218
|
var _useSortable = useSortable({
|
|
312014
312219
|
id: props.id
|
|
312015
312220
|
}),
|
|
@@ -312109,19 +312314,84 @@
|
|
|
312109
312314
|
});
|
|
312110
312315
|
return res;
|
|
312111
312316
|
}
|
|
312317
|
+
function getExpandStatus(children) {
|
|
312318
|
+
var _children$2, _children$2$props, _children$2$props$chi, _children$2$props$chi2, _children$2$props$chi3;
|
|
312319
|
+
|
|
312320
|
+
return isExpandRow(children) ? children === null || children === void 0 ? void 0 : (_children$2 = children[0]) === null || _children$2 === void 0 ? void 0 : (_children$2$props = _children$2.props) === null || _children$2$props === void 0 ? void 0 : (_children$2$props$chi = _children$2$props.children) === null || _children$2$props$chi === void 0 ? void 0 : (_children$2$props$chi2 = _children$2$props$chi[1]) === null || _children$2$props$chi2 === void 0 ? void 0 : (_children$2$props$chi3 = _children$2$props$chi2.props) === null || _children$2$props$chi3 === void 0 ? void 0 : _children$2$props$chi3['aria-label'] : '';
|
|
312321
|
+
}
|
|
312322
|
+
function checkMemoShouldUploadSpecialFun(prev, next) {
|
|
312323
|
+
var _prevCol$componentPro, _nextCol$componentPro, _prevCol$componentPro3, _nextCol$componentPro3;
|
|
312324
|
+
|
|
312325
|
+
var checkExpandStatus = getExpandStatus(prev.children) === getExpandStatus(next.children);
|
|
312112
312326
|
|
|
312113
|
-
|
|
312327
|
+
if (!checkExpandStatus) {
|
|
312328
|
+
return false;
|
|
312329
|
+
}
|
|
312330
|
+
|
|
312331
|
+
var prevCol = prev === null || prev === void 0 ? void 0 : prev.col;
|
|
312332
|
+
var nextCol = next === null || next === void 0 ? void 0 : next.col;
|
|
312333
|
+
|
|
312334
|
+
if ((prevCol === null || prevCol === void 0 ? void 0 : (_prevCol$componentPro = prevCol.componentProps) === null || _prevCol$componentPro === void 0 ? void 0 : _prevCol$componentPro.optionOnly) || (nextCol === null || nextCol === void 0 ? void 0 : (_nextCol$componentPro = nextCol.componentProps) === null || _nextCol$componentPro === void 0 ? void 0 : _nextCol$componentPro.optionOnly)) {
|
|
312335
|
+
var _prevCol$componentPro2, _nextCol$componentPro2;
|
|
312336
|
+
|
|
312337
|
+
return lodash.isEqual(prevCol === null || prevCol === void 0 ? void 0 : (_prevCol$componentPro2 = prevCol.componentProps) === null || _prevCol$componentPro2 === void 0 ? void 0 : _prevCol$componentPro2.options, nextCol === null || nextCol === void 0 ? void 0 : (_nextCol$componentPro2 = nextCol.componentProps) === null || _nextCol$componentPro2 === void 0 ? void 0 : _nextCol$componentPro2.options);
|
|
312338
|
+
}
|
|
312339
|
+
/** 如果启用了快速复制功能,需要实时判断rowIndex与getLength */
|
|
312340
|
+
|
|
312341
|
+
|
|
312342
|
+
if ((prevCol === null || prevCol === void 0 ? void 0 : (_prevCol$componentPro3 = prevCol.componentProps) === null || _prevCol$componentPro3 === void 0 ? void 0 : _prevCol$componentPro3.quickcopy) || (nextCol === null || nextCol === void 0 ? void 0 : (_nextCol$componentPro3 = nextCol.componentProps) === null || _nextCol$componentPro3 === void 0 ? void 0 : _nextCol$componentPro3.quickcopy)) {
|
|
312343
|
+
var pickProps = ['record', 'colIndex', 'rowIndex', 'getLength'];
|
|
312344
|
+
var p = lodash.pick(prev, pickProps);
|
|
312345
|
+
var n = lodash.pick(next, pickProps);
|
|
312346
|
+
return lodash.isEqual(p, n);
|
|
312347
|
+
}
|
|
312348
|
+
|
|
312349
|
+
if (next.className.indexOf('ant-table-selection-column') > -1) {
|
|
312350
|
+
var _prev$children, _prev$children$, _next$children, _next$children$;
|
|
312351
|
+
|
|
312352
|
+
return lodash.isEqual((_prev$children = prev.children) === null || _prev$children === void 0 ? void 0 : (_prev$children$ = _prev$children[1]) === null || _prev$children$ === void 0 ? void 0 : _prev$children$.props, (_next$children = next.children) === null || _next$children === void 0 ? void 0 : (_next$children$ = _next$children[1]) === null || _next$children$ === void 0 ? void 0 : _next$children$.props);
|
|
312353
|
+
}
|
|
312354
|
+
|
|
312355
|
+
return true;
|
|
312356
|
+
}
|
|
312357
|
+
|
|
312358
|
+
var SortableBox$2 = function SortableBox(_ref) {
|
|
312359
|
+
var items = _ref.items,
|
|
312360
|
+
children = _ref.children;
|
|
312361
|
+
return /*#__PURE__*/React__default['default'].createElement(SortableContext$1, {
|
|
312362
|
+
items: items,
|
|
312363
|
+
strategy: verticalListSortingStrategy
|
|
312364
|
+
}, children);
|
|
312365
|
+
};
|
|
312366
|
+
|
|
312367
|
+
var _excluded$2U = ["keys", "onSortEnd", "virtual"];
|
|
312368
|
+
|
|
312369
|
+
var DraggableContainer = function DraggableContainer(_ref) {
|
|
312370
|
+
var keys = _ref.keys,
|
|
312371
|
+
onSortEnd = _ref.onSortEnd,
|
|
312372
|
+
virtual = _ref.virtual,
|
|
312373
|
+
props = _objectWithoutProperties$1(_ref, _excluded$2U);
|
|
312374
|
+
|
|
312375
|
+
return /*#__PURE__*/React__default['default'].createElement(DndContainer$2, {
|
|
312376
|
+
move: onSortEnd
|
|
312377
|
+
}, /*#__PURE__*/React__default['default'].createElement(SortableBox$2, {
|
|
312378
|
+
items: keys
|
|
312379
|
+
}, virtual ? /*#__PURE__*/React__default['default'].createElement(VirtualWrapper$1, _objectSpread({}, props)) : /*#__PURE__*/React__default['default'].createElement("tbody", _objectSpread({}, props))));
|
|
312380
|
+
};
|
|
312381
|
+
|
|
312382
|
+
var _excluded$2V = ["index", "virtual"],
|
|
312114
312383
|
_excluded2$I = ["index"],
|
|
312115
312384
|
_excluded3$b = ["value", "onChange", "record", "rowIndex", "colIndex", "validator"],
|
|
312116
312385
|
_excluded4$1 = ["record", "rowKey", "isEdit", "col", "rowIndex", "colIndex", "handleTableRowDelete", "handleTableRowAdd", "quickOpetateClearAll", "getLength", "isHoverEdit", "editEnum", "valueType", "children", "handleSave", "handleAdd", "handleDelete", "handleCopy", "itemProps", "setValid", "reWriteOriginSource"],
|
|
312117
312386
|
_excluded5 = ["onMouseEnter", "onMouseLeave"],
|
|
312118
|
-
_excluded6 = ["value", "columns", "isEdit", "isAdd", "onChange", "rowKey", "rowHoverEdit", "isUseForm", "isHoverEdit", "useQuickOpetate", "quickOpetateClearAll", "rowSelection", "sortOpen", "colSortOpen", "filterChange", "size", "recordCreatorProps", "shouldUpdate"];
|
|
312387
|
+
_excluded6 = ["value", "columns", "isEdit", "isAdd", "onChange", "rowKey", "rowHoverEdit", "isUseForm", "isHoverEdit", "useQuickOpetate", "quickOpetateClearAll", "rowSelection", "virtual", "sortOpen", "colSortOpen", "filterChange", "size", "recordCreatorProps", "shouldUpdate"];
|
|
312119
312388
|
var UploadBtn$1 = UploadOss.UploadBtn;
|
|
312120
312389
|
var EditableContext$1 = /*#__PURE__*/React__default['default'].createContext(null); // 表格行
|
|
312121
312390
|
|
|
312122
312391
|
var EditableRow$1 = function EditableRow(_ref) {
|
|
312123
312392
|
var index = _ref.index,
|
|
312124
|
-
|
|
312393
|
+
virtual = _ref.virtual,
|
|
312394
|
+
props = _objectWithoutProperties$1(_ref, _excluded$2V);
|
|
312125
312395
|
|
|
312126
312396
|
var _Form$useForm = Form$4.useForm(),
|
|
312127
312397
|
_Form$useForm2 = _slicedToArray$1(_Form$useForm, 1),
|
|
@@ -312132,7 +312402,7 @@
|
|
|
312132
312402
|
component: false
|
|
312133
312403
|
}, /*#__PURE__*/React__default['default'].createElement(EditableContext$1.Provider, {
|
|
312134
312404
|
value: form
|
|
312135
|
-
}, /*#__PURE__*/React__default['default'].createElement("tr", _objectSpread({}, props))));
|
|
312405
|
+
}, virtual ? /*#__PURE__*/React__default['default'].createElement(VirtualRow$1, _objectSpread({}, props)) : /*#__PURE__*/React__default['default'].createElement("tr", _objectSpread({}, props))));
|
|
312136
312406
|
};
|
|
312137
312407
|
|
|
312138
312408
|
var EditableSortRow = function EditableSortRow(_ref2) {
|
|
@@ -312148,7 +312418,7 @@
|
|
|
312148
312418
|
component: false
|
|
312149
312419
|
}, /*#__PURE__*/React__default['default'].createElement(EditableContext$1.Provider, {
|
|
312150
312420
|
value: form
|
|
312151
|
-
}, /*#__PURE__*/React__default['default'].createElement(SortableItem$
|
|
312421
|
+
}, /*#__PURE__*/React__default['default'].createElement(SortableItem$2, _objectSpread({}, props))));
|
|
312152
312422
|
};
|
|
312153
312423
|
|
|
312154
312424
|
var UploadSingle$1 = function UploadSingle(props) {
|
|
@@ -312318,7 +312588,7 @@
|
|
|
312318
312588
|
}
|
|
312319
312589
|
}), (options === null || options === void 0 ? void 0 : options.includes('add')) && (options === null || options === void 0 ? void 0 : options.includes('addInChildren')) ? /*#__PURE__*/React__default['default'].createElement(Popover$1, {
|
|
312320
312590
|
placement: "bottom",
|
|
312321
|
-
overlayClassName:
|
|
312591
|
+
overlayClassName: "lm_table_append_add_popover",
|
|
312322
312592
|
open: open,
|
|
312323
312593
|
title: null,
|
|
312324
312594
|
content: /*#__PURE__*/React__default['default'].createElement("ul", null, /*#__PURE__*/React__default['default'].createElement("li", {
|
|
@@ -312349,14 +312619,7 @@
|
|
|
312349
312619
|
return handleAdd(record, (options === null || options === void 0 ? void 0 : options.includes('addInChildren')) ? true : false);
|
|
312350
312620
|
}
|
|
312351
312621
|
}));
|
|
312352
|
-
};
|
|
312353
|
-
// const toStringValue = JSON.stringify(verifyValue);
|
|
312354
|
-
// if (verifyValue === undefined || verifyValue === null || verifyValue === '' || toStringValue === '[]' || toStringValue === '{}') {
|
|
312355
|
-
// return false;
|
|
312356
|
-
// }
|
|
312357
|
-
// return true;
|
|
312358
|
-
// }
|
|
312359
|
-
|
|
312622
|
+
};
|
|
312360
312623
|
/*
|
|
312361
312624
|
表格单元格
|
|
312362
312625
|
editEnum: 下拉框时的数据数组(非数组时是配置设置)
|
|
@@ -312408,6 +312671,12 @@
|
|
|
312408
312671
|
|
|
312409
312672
|
var inputRef = React.useRef(null);
|
|
312410
312673
|
var form = React.useContext(EditableContext$1);
|
|
312674
|
+
|
|
312675
|
+
var _useState5 = React.useState(false),
|
|
312676
|
+
_useState6 = _slicedToArray$1(_useState5, 2),
|
|
312677
|
+
hoverStatus = _useState6[0],
|
|
312678
|
+
setHoverStatus = _useState6[1];
|
|
312679
|
+
|
|
312411
312680
|
React.useEffect(function () {
|
|
312412
312681
|
if (editing) {
|
|
312413
312682
|
var _inputRef$current;
|
|
@@ -312418,13 +312687,7 @@
|
|
|
312418
312687
|
|
|
312419
312688
|
var toggleEdit = function toggleEdit() {
|
|
312420
312689
|
setEditing(!editing); // form.setFieldsValue({ [dataIndex]: record[dataIndex] });
|
|
312421
|
-
}; //
|
|
312422
|
-
// const focusCapturedRef = useRef(false);
|
|
312423
|
-
// const curValue = useMemo(() => {
|
|
312424
|
-
// return record?.dataIndex
|
|
312425
|
-
// }, [record])
|
|
312426
|
-
// const curValueIsValid = isValidValue(curValue);
|
|
312427
|
-
// 校验保存
|
|
312690
|
+
}; // 校验保存
|
|
312428
312691
|
|
|
312429
312692
|
|
|
312430
312693
|
var save = /*#__PURE__*/function () {
|
|
@@ -312511,15 +312774,15 @@
|
|
|
312511
312774
|
/** 快捷刷子,把当前的所有列的值,刷成当前的选中的列 */
|
|
312512
312775
|
|
|
312513
312776
|
|
|
312514
|
-
var copyKey = function copyKey(e) {
|
|
312777
|
+
var copyKey = function copyKey(e, type) {
|
|
312515
312778
|
e === null || e === void 0 ? void 0 : e.stopPropagation();
|
|
312516
312779
|
var dataIndex = col.dataIndex;
|
|
312517
|
-
handleCopy === null || handleCopy === void 0 ? void 0 : handleCopy(dataIndex, record[dataIndex]);
|
|
312780
|
+
handleCopy === null || handleCopy === void 0 ? void 0 : handleCopy(dataIndex, record[dataIndex], type, props.rowIndex);
|
|
312518
312781
|
};
|
|
312519
312782
|
|
|
312520
312783
|
var Control = function Control(con) {
|
|
312521
312784
|
var resultComponentProps = lodash.isFunction(componentProps) ? componentProps === null || componentProps === void 0 ? void 0 : componentProps(record, col) : componentProps;
|
|
312522
|
-
var clearAttrComponentProps = lodash.omit(resultComponentProps, ['optionOnly', 'isOnlyValue']);
|
|
312785
|
+
var clearAttrComponentProps = lodash.omit(resultComponentProps, ['optionOnly', 'isOnlyValue', 'quickcopy']);
|
|
312523
312786
|
|
|
312524
312787
|
switch (con) {
|
|
312525
312788
|
case 'input':
|
|
@@ -312540,12 +312803,6 @@
|
|
|
312540
312803
|
noStyle: true
|
|
312541
312804
|
}, /*#__PURE__*/React__default['default'].cloneElement(resultComponentProps.addonAfter, {
|
|
312542
312805
|
onChange: handleFormItemChange
|
|
312543
|
-
})) : null,
|
|
312544
|
-
suffix: resultComponentProps.quickcopy ? /*#__PURE__*/React__default['default'].createElement("span", {
|
|
312545
|
-
className: 'lm_table_quickcopy'
|
|
312546
|
-
}, /*#__PURE__*/React__default['default'].createElement(IconFont, {
|
|
312547
|
-
onClick: copyKey,
|
|
312548
|
-
type: 'lmweb-icon_m_brush'
|
|
312549
312806
|
})) : null
|
|
312550
312807
|
}));
|
|
312551
312808
|
|
|
@@ -312628,7 +312885,7 @@
|
|
|
312628
312885
|
|
|
312629
312886
|
case 'switch':
|
|
312630
312887
|
return /*#__PURE__*/React__default['default'].createElement(Switch$2, _objectSpread(_objectSpread({
|
|
312631
|
-
size:
|
|
312888
|
+
size: "small"
|
|
312632
312889
|
}, clearAttrComponentProps), {}, {
|
|
312633
312890
|
onChange: handleFormItemChange
|
|
312634
312891
|
}));
|
|
@@ -312717,8 +312974,7 @@
|
|
|
312717
312974
|
}
|
|
312718
312975
|
|
|
312719
312976
|
return childNode;
|
|
312720
|
-
}, [col, isEdit, editing, getLength]); //
|
|
312721
|
-
// 出现死循环找我
|
|
312977
|
+
}, [col, isEdit, editing, getLength]); // 出现死循环找我
|
|
312722
312978
|
|
|
312723
312979
|
React.useEffect(function () {
|
|
312724
312980
|
var editable = col.editable,
|
|
@@ -312726,22 +312982,55 @@
|
|
|
312726
312982
|
|
|
312727
312983
|
if (isEdit && editable) {
|
|
312728
312984
|
form.setFieldsValue(_defineProperty$1({}, dataIndex, editable === 'date' ? hooks(record[dataIndex]) : record[dataIndex]));
|
|
312729
|
-
}
|
|
312730
|
-
// (isEdit && editable && record[dataIndex]) ||
|
|
312731
|
-
// (isHoverEdit && editable && record[dataIndex])
|
|
312732
|
-
// ) {
|
|
312733
|
-
// form.setFieldsValue({
|
|
312734
|
-
// [dataIndex]: editable === 'date' ? moment(record[dataIndex]) : record[dataIndex],
|
|
312735
|
-
// })
|
|
312736
|
-
// }
|
|
312737
|
-
|
|
312985
|
+
}
|
|
312738
312986
|
}, [record]);
|
|
312987
|
+
|
|
312988
|
+
var handleTdHover = function handleTdHover() {
|
|
312989
|
+
setHoverStatus(true);
|
|
312990
|
+
};
|
|
312991
|
+
|
|
312992
|
+
var handleTdMouseOut = function handleTdMouseOut() {
|
|
312993
|
+
setHoverStatus(false);
|
|
312994
|
+
};
|
|
312995
|
+
|
|
312739
312996
|
return /*#__PURE__*/React__default['default'].createElement("td", _objectSpread(_objectSpread({}, lodash.omit(clearProps, ['dataIndex'])), {}, {
|
|
312740
312997
|
className: classnames(clearProps === null || clearProps === void 0 ? void 0 : clearProps.className, 'lm_custom_cell_td'),
|
|
312998
|
+
onMouseEnter: componentProps.quickcopy ? handleTdHover : undefined,
|
|
312999
|
+
onMouseLeave: componentProps.quickcopy ? handleTdMouseOut : undefined,
|
|
312741
313000
|
key: "r".concat(rowIndex, "_c").concat(colIndex)
|
|
312742
|
-
}),
|
|
313001
|
+
}), hoverStatus && props.rowIndex > 0 && /*#__PURE__*/React__default['default'].createElement("span", {
|
|
313002
|
+
className: 'quick_copy_warp quick_copy_up',
|
|
313003
|
+
onClick: function onClick(e) {
|
|
313004
|
+
return copyKey(e, 'up');
|
|
313005
|
+
}
|
|
313006
|
+
}, /*#__PURE__*/React__default['default'].createElement(IconFont, {
|
|
313007
|
+
type: 'lmweb-icon_up'
|
|
313008
|
+
})), getMemoChildNode, hoverStatus && props.rowIndex < props.getLength - 1 && /*#__PURE__*/React__default['default'].createElement("span", {
|
|
313009
|
+
className: 'quick_copy_warp quick_copy_down',
|
|
313010
|
+
onClick: function onClick(e) {
|
|
313011
|
+
return copyKey(e, 'down');
|
|
313012
|
+
}
|
|
313013
|
+
}, /*#__PURE__*/React__default['default'].createElement(IconFont, {
|
|
313014
|
+
type: 'lmweb-icon_down'
|
|
313015
|
+
})));
|
|
312743
313016
|
};
|
|
313017
|
+
/** true 不刷新, false 刷新 */
|
|
313018
|
+
|
|
312744
313019
|
|
|
313020
|
+
var MemoEditableCell = /*#__PURE__*/React.memo(EditableCell$1, function (prev, next) {
|
|
313021
|
+
var pickProps = ['record', 'colIndex'];
|
|
313022
|
+
var p = lodash.pick(prev, pickProps);
|
|
313023
|
+
var n = lodash.pick(next, pickProps); // console.log(prev, next, '22', checkMemoShouldUploadSpecialFun(prev, next), isEqual(p, n))
|
|
313024
|
+
// console.log(prev, next, '-sss')
|
|
313025
|
+
|
|
313026
|
+
/** TODO: 在record中带有children,子列表数据修改之后,会导致父级的record对比不一样 */
|
|
313027
|
+
|
|
313028
|
+
if (!checkMemoShouldUploadSpecialFun(prev, next)) {
|
|
313029
|
+
return false;
|
|
313030
|
+
}
|
|
313031
|
+
|
|
313032
|
+
return lodash.isEqual(p, n);
|
|
313033
|
+
});
|
|
312745
313034
|
var EditTable$1 = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
312746
313035
|
var defaultData = props.value,
|
|
312747
313036
|
columns = props.columns,
|
|
@@ -312758,6 +313047,7 @@
|
|
|
312758
313047
|
_props$quickOpetateCl = props.quickOpetateClearAll,
|
|
312759
313048
|
quickOpetateClearAll = _props$quickOpetateCl === void 0 ? true : _props$quickOpetateCl,
|
|
312760
313049
|
rowSelection = props.rowSelection,
|
|
313050
|
+
virtual = props.virtual,
|
|
312761
313051
|
sortOpen = props.sortOpen,
|
|
312762
313052
|
colSortOpen = props.colSortOpen,
|
|
312763
313053
|
filterChange = props.filterChange,
|
|
@@ -312765,7 +313055,6 @@
|
|
|
312765
313055
|
size = _props$size === void 0 ? 'small' : _props$size,
|
|
312766
313056
|
recordCreatorProps = props.recordCreatorProps,
|
|
312767
313057
|
_props$shouldUpdate = props.shouldUpdate,
|
|
312768
|
-
shouldUpdate = _props$shouldUpdate === void 0 ? false : _props$shouldUpdate,
|
|
312769
313058
|
resetProps = _objectWithoutProperties$1(props, _excluded6); // const [dataSource, setDataSource] = useState([]);
|
|
312770
313059
|
|
|
312771
313060
|
|
|
@@ -312778,20 +313067,15 @@
|
|
|
312778
313067
|
setDataSource = _useControllableValue2[1]; // const [count, setCount] = useState(0);
|
|
312779
313068
|
|
|
312780
313069
|
|
|
312781
|
-
var
|
|
312782
|
-
_useState6 = _slicedToArray$1(_useState5, 2),
|
|
312783
|
-
_valid = _useState6[0],
|
|
312784
|
-
setValid = _useState6[1];
|
|
312785
|
-
|
|
312786
|
-
var _useState7 = React.useState([]),
|
|
313070
|
+
var _useState7 = React.useState({}),
|
|
312787
313071
|
_useState8 = _slicedToArray$1(_useState7, 2),
|
|
312788
|
-
|
|
312789
|
-
|
|
313072
|
+
_valid = _useState8[0],
|
|
313073
|
+
setValid = _useState8[1];
|
|
312790
313074
|
|
|
312791
313075
|
var _useState9 = React.useState([]),
|
|
312792
313076
|
_useState10 = _slicedToArray$1(_useState9, 2),
|
|
312793
|
-
|
|
312794
|
-
|
|
313077
|
+
localRowSelectList = _useState10[0],
|
|
313078
|
+
setLocalRowSelectList = _useState10[1];
|
|
312795
313079
|
/** 当前展开的列 */
|
|
312796
313080
|
|
|
312797
313081
|
|
|
@@ -312800,21 +313084,10 @@
|
|
|
312800
313084
|
expandedRowKeys = _useState12[0],
|
|
312801
313085
|
setExpandedRowKeys = _useState12[1];
|
|
312802
313086
|
|
|
312803
|
-
var dataSourceRef = React.useRef(
|
|
312804
|
-
var
|
|
312805
|
-
|
|
312806
|
-
|
|
312807
|
-
var onSortEnd = function onSortEnd(active, over) {
|
|
312808
|
-
var cloneArr = _toConsumableArray$1(dataSourceRef.current);
|
|
312809
|
-
|
|
312810
|
-
var oldIndex = cloneArr.findIndex(function (v) {
|
|
312811
|
-
return v[_rowKey] === active;
|
|
312812
|
-
});
|
|
312813
|
-
var newIndex = cloneArr.findIndex(function (v) {
|
|
312814
|
-
return v[_rowKey] === over;
|
|
312815
|
-
});
|
|
312816
|
-
setDataSource(arrayMove(cloneArr, oldIndex, newIndex));
|
|
312817
|
-
};
|
|
313087
|
+
var dataSourceRef = React.useRef(dataSource);
|
|
313088
|
+
var deepDataSourceRef = React.useRef(deepDataSourcePreKeys(dataSource, _rowKey));
|
|
313089
|
+
dataSourceRef.current = dataSource;
|
|
313090
|
+
deepDataSourceRef.current = deepDataSourcePreKeys(dataSource, _rowKey);
|
|
312818
313091
|
|
|
312819
313092
|
var onColSortEnd = function onColSortEnd(active, over) {
|
|
312820
313093
|
var _arrayMove;
|
|
@@ -312852,29 +313125,9 @@
|
|
|
312852
313125
|
});
|
|
312853
313126
|
setDataSource(res); // onChange?.(res)
|
|
312854
313127
|
};
|
|
312855
|
-
|
|
312856
|
-
React.useEffect(function () {
|
|
312857
|
-
dataSourceRef.current = dataSource;
|
|
312858
|
-
deepDataSourceRef.current = deepDataSourcePreKeys(dataSource, _rowKey);
|
|
312859
|
-
|
|
312860
|
-
if (sortOpen) {
|
|
312861
|
-
var _sortDataSorceRef$cur;
|
|
312862
|
-
|
|
312863
|
-
var dataSourceKeys = dataSource === null || dataSource === void 0 ? void 0 : dataSource.map(function (item) {
|
|
312864
|
-
return item[_rowKey];
|
|
312865
|
-
}).join(',');
|
|
312866
|
-
var setCallBackFalgKeys = ((_sortDataSorceRef$cur = sortDataSorceRef.current) === null || _sortDataSorceRef$cur === void 0 ? void 0 : _sortDataSorceRef$cur.map(function (item) {
|
|
312867
|
-
return item[_rowKey];
|
|
312868
|
-
}).join(',')) || '';
|
|
312869
|
-
|
|
312870
|
-
if (dataSourceKeys !== setCallBackFalgKeys) {
|
|
312871
|
-
setCallBackFalg(dataSource);
|
|
312872
|
-
sortDataSorceRef.current = dataSource;
|
|
312873
|
-
}
|
|
312874
|
-
}
|
|
312875
|
-
}, [dataSource]);
|
|
312876
313128
|
/** 本地缓存一个选择数据 */
|
|
312877
313129
|
|
|
313130
|
+
|
|
312878
313131
|
React.useEffect(function () {
|
|
312879
313132
|
if (rowSelection) {
|
|
312880
313133
|
var selectedRowKeys = rowSelection.selectedRowKeys;
|
|
@@ -313085,10 +313338,12 @@
|
|
|
313085
313338
|
setDataSource(res);
|
|
313086
313339
|
};
|
|
313087
313340
|
|
|
313088
|
-
var handleCopy = function handleCopy(key, value) {
|
|
313341
|
+
var handleCopy = function handleCopy(key, value, type, rowIndex) {
|
|
313089
313342
|
var res = fn(dataSourceRef.current, function (draft) {
|
|
313090
|
-
draft === null || draft === void 0 ? void 0 : draft.forEach(function (item) {
|
|
313091
|
-
|
|
313343
|
+
draft === null || draft === void 0 ? void 0 : draft.forEach(function (item, index) {
|
|
313344
|
+
if (type === 'up' && index < rowIndex || type === 'down' && index > rowIndex) {
|
|
313345
|
+
item[key] = value;
|
|
313346
|
+
}
|
|
313092
313347
|
});
|
|
313093
313348
|
});
|
|
313094
313349
|
setDataSource(res);
|
|
@@ -313203,19 +313458,6 @@
|
|
|
313203
313458
|
}
|
|
313204
313459
|
|
|
313205
313460
|
var newCol = _objectSpread(_objectSpread({}, col), {}, {
|
|
313206
|
-
shouldCellUpdate: function shouldCellUpdate(record, prevRecord) {
|
|
313207
|
-
var _col$componentProps2;
|
|
313208
|
-
|
|
313209
|
-
var dataIndex = col.dataIndex,
|
|
313210
|
-
editable = col.editable,
|
|
313211
|
-
relevanceCols = col.relevanceCols;
|
|
313212
|
-
|
|
313213
|
-
if ((col === null || col === void 0 ? void 0 : col.fixed) || hasDisableOptions && hasDisableOptions.includes(dataIndex) || ((_col$componentProps2 = col.componentProps) === null || _col$componentProps2 === void 0 ? void 0 : _col$componentProps2.options) || editable === 'render' || !!relevanceCols || !!shouldUpdate || !!record.children) {
|
|
313214
|
-
return true;
|
|
313215
|
-
}
|
|
313216
|
-
|
|
313217
|
-
return record[dataIndex] !== prevRecord[dataIndex];
|
|
313218
|
-
},
|
|
313219
313461
|
onCell: function onCell(record, rowIndex) {
|
|
313220
313462
|
return {
|
|
313221
313463
|
getLength: dataSource.length,
|
|
@@ -313257,24 +313499,24 @@
|
|
|
313257
313499
|
return mapColumns(col, index);
|
|
313258
313500
|
});
|
|
313259
313501
|
return res;
|
|
313260
|
-
}, [columns, isAdd, sortOpen, useQuickOpetate,
|
|
313261
|
-
var DraggableContainer = React.useCallback(function (_ref9) {
|
|
313262
|
-
var _dataSourceRef$curren2;
|
|
313502
|
+
}, [columns, isAdd, sortOpen, useQuickOpetate, dataSource, _toConsumableArray$1(memoOptions)]);
|
|
313263
313503
|
|
|
313264
|
-
|
|
313504
|
+
var onSortEnd = function onSortEnd(active, over) {
|
|
313505
|
+
var cloneArr = _toConsumableArray$1(dataSourceRef.current);
|
|
313265
313506
|
|
|
313266
|
-
|
|
313267
|
-
|
|
313268
|
-
}
|
|
313269
|
-
|
|
313270
|
-
|
|
313271
|
-
|
|
313272
|
-
|
|
313273
|
-
}
|
|
313274
|
-
|
|
313507
|
+
var oldIndex = cloneArr.findIndex(function (v) {
|
|
313508
|
+
return v[_rowKey] === active;
|
|
313509
|
+
});
|
|
313510
|
+
var newIndex = cloneArr.findIndex(function (v) {
|
|
313511
|
+
return v[_rowKey] === over;
|
|
313512
|
+
});
|
|
313513
|
+
setDataSource(arrayMove(cloneArr, oldIndex, newIndex));
|
|
313514
|
+
};
|
|
313515
|
+
|
|
313516
|
+
var colDraggableContainer = React.useCallback(function (_ref9) {
|
|
313275
313517
|
var _React$Children;
|
|
313276
313518
|
|
|
313277
|
-
var props = _extends$2({},
|
|
313519
|
+
var props = _extends$2({}, _ref9);
|
|
313278
313520
|
|
|
313279
313521
|
return /*#__PURE__*/React__default['default'].createElement("tr", null, (_React$Children = React__default['default'].Children) === null || _React$Children === void 0 ? void 0 : _React$Children.map(props.children, function (child) {
|
|
313280
313522
|
var _child$props, _child$props$column;
|
|
@@ -313283,39 +313525,11 @@
|
|
|
313283
313525
|
return child;
|
|
313284
313526
|
}
|
|
313285
313527
|
|
|
313286
|
-
return /*#__PURE__*/React__default['default'].createElement(SortableItem$
|
|
313528
|
+
return /*#__PURE__*/React__default['default'].createElement(SortableItem$3, {
|
|
313287
313529
|
id: child.key
|
|
313288
313530
|
}, child);
|
|
313289
313531
|
}));
|
|
313290
313532
|
}, [columns]);
|
|
313291
|
-
var config = React.useMemo(function () {
|
|
313292
|
-
var component = {
|
|
313293
|
-
body: Object.assign({
|
|
313294
|
-
row: sortOpen ? EditableSortRow : EditableRow$1,
|
|
313295
|
-
cell: EditableCell$1
|
|
313296
|
-
}, sortOpen ? {
|
|
313297
|
-
wrapper: DraggableContainer
|
|
313298
|
-
} : {})
|
|
313299
|
-
};
|
|
313300
|
-
|
|
313301
|
-
if (colSortOpen) {
|
|
313302
|
-
component['header'] = {
|
|
313303
|
-
row: colDraggableContainer
|
|
313304
|
-
};
|
|
313305
|
-
}
|
|
313306
|
-
|
|
313307
|
-
return _objectSpread({
|
|
313308
|
-
pagination: false,
|
|
313309
|
-
tableLayout: 'fixed',
|
|
313310
|
-
scroll: {
|
|
313311
|
-
x: '100%'
|
|
313312
|
-
},
|
|
313313
|
-
rowKey: function rowKey(record) {
|
|
313314
|
-
return record[_rowKey] || record.index || Math.random();
|
|
313315
|
-
},
|
|
313316
|
-
components: component
|
|
313317
|
-
}, resetProps);
|
|
313318
|
-
}, [resultColumns, dataSource, sortOpen, colSortOpen, size]);
|
|
313319
313533
|
React.useImperativeHandle(ref, function () {
|
|
313320
313534
|
return {
|
|
313321
313535
|
setRow: handleSave,
|
|
@@ -313327,17 +313541,57 @@
|
|
|
313327
313541
|
var isShowAddAction = React.useMemo(function () {
|
|
313328
313542
|
return isEdit && isAdd || isHoverEdit && isAdd;
|
|
313329
313543
|
}, [isEdit, isAdd, isHoverEdit]);
|
|
313544
|
+
var config = React.useRef(_objectSpread({
|
|
313545
|
+
pagination: false,
|
|
313546
|
+
tableLayout: 'fixed',
|
|
313547
|
+
scroll: {
|
|
313548
|
+
x: '100%'
|
|
313549
|
+
},
|
|
313550
|
+
rowKey: function rowKey(record) {
|
|
313551
|
+
return record[_rowKey] || record.index || Math.random();
|
|
313552
|
+
},
|
|
313553
|
+
components: {
|
|
313554
|
+
table: virtual ? VirtualTable$1 : null,
|
|
313555
|
+
body: Object.assign({
|
|
313556
|
+
row: function row(rowProps) {
|
|
313557
|
+
return sortOpen ? EditableSortRow(_objectSpread(_objectSpread({}, rowProps), {}, {
|
|
313558
|
+
virtual: virtual
|
|
313559
|
+
})) : EditableRow$1(_objectSpread(_objectSpread({}, rowProps), {}, {
|
|
313560
|
+
virtual: virtual
|
|
313561
|
+
}));
|
|
313562
|
+
},
|
|
313563
|
+
cell: MemoEditableCell
|
|
313564
|
+
}, sortOpen ? {
|
|
313565
|
+
wrapper: function wrapper(wrapperProps) {
|
|
313566
|
+
var _dataSourceRef$curren2;
|
|
313567
|
+
|
|
313568
|
+
return DraggableContainer(_objectSpread(_objectSpread({}, wrapperProps), {}, {
|
|
313569
|
+
virtual: virtual,
|
|
313570
|
+
keys: (_dataSourceRef$curren2 = dataSourceRef.current) === null || _dataSourceRef$curren2 === void 0 ? void 0 : _dataSourceRef$curren2.map(function (item) {
|
|
313571
|
+
return item[_rowKey];
|
|
313572
|
+
}),
|
|
313573
|
+
onSortEnd: onSortEnd
|
|
313574
|
+
}));
|
|
313575
|
+
}
|
|
313576
|
+
} : virtual ? {
|
|
313577
|
+
wrapper: VirtualWrapper$1
|
|
313578
|
+
} : {}),
|
|
313579
|
+
header: {
|
|
313580
|
+
row: colSortOpen ? colDraggableContainer : null
|
|
313581
|
+
}
|
|
313582
|
+
}
|
|
313583
|
+
}, resetProps));
|
|
313330
313584
|
|
|
313331
313585
|
if (colSortOpen) {
|
|
313332
313586
|
return /*#__PURE__*/React__default['default'].createElement("div", {
|
|
313333
313587
|
className: "lm_editTable_warpper"
|
|
313334
|
-
}, /*#__PURE__*/React__default['default'].createElement(DndContainer$
|
|
313588
|
+
}, /*#__PURE__*/React__default['default'].createElement(DndContainer$2, {
|
|
313335
313589
|
move: onColSortEnd
|
|
313336
|
-
}, /*#__PURE__*/React__default['default'].createElement(SortableBox$
|
|
313590
|
+
}, /*#__PURE__*/React__default['default'].createElement(SortableBox$1, {
|
|
313337
313591
|
items: columns.reduce(function (acc, item) {
|
|
313338
313592
|
return [].concat(_toConsumableArray$1(acc), [item.dataIndex]);
|
|
313339
313593
|
}, [])
|
|
313340
|
-
}, /*#__PURE__*/React__default['default'].createElement(Table$1, _objectSpread(_objectSpread({}, config), {}, {
|
|
313594
|
+
}, /*#__PURE__*/React__default['default'].createElement(Table$1, _objectSpread(_objectSpread({}, config.current), {}, {
|
|
313341
313595
|
size: size || 'small',
|
|
313342
313596
|
columns: resultColumns,
|
|
313343
313597
|
rowClassName: "editable-row",
|
|
@@ -313371,7 +313625,7 @@
|
|
|
313371
313625
|
|
|
313372
313626
|
return /*#__PURE__*/React__default['default'].createElement("div", {
|
|
313373
313627
|
className: "lm_editTable_warpper"
|
|
313374
|
-
}, /*#__PURE__*/React__default['default'].createElement(Table$1, _objectSpread(_objectSpread({}, config), {}, {
|
|
313628
|
+
}, /*#__PURE__*/React__default['default'].createElement(Table$1, _objectSpread(_objectSpread({}, config.current), {}, {
|
|
313375
313629
|
size: size || 'small',
|
|
313376
313630
|
columns: resultColumns,
|
|
313377
313631
|
rowClassName: "editable-row",
|
|
@@ -314079,7 +314333,7 @@
|
|
|
314079
314333
|
}
|
|
314080
314334
|
}
|
|
314081
314335
|
|
|
314082
|
-
var _excluded$
|
|
314336
|
+
var _excluded$2W = ["prefixCls", "getPopupContainer", "className", "placement", "size", "disabled", "bordered", "placeholder", "status"];
|
|
314083
314337
|
function generateRangePicker$1(generateConfig) {
|
|
314084
314338
|
var RangePicker$1 = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
314085
314339
|
var customizePrefixCls = props.prefixCls,
|
|
@@ -314092,7 +314346,7 @@
|
|
|
314092
314346
|
bordered = _props$bordered === void 0 ? true : _props$bordered,
|
|
314093
314347
|
placeholder = props.placeholder,
|
|
314094
314348
|
customStatus = props.status,
|
|
314095
|
-
restProps = _objectWithoutProperties$1(props, _excluded$
|
|
314349
|
+
restProps = _objectWithoutProperties$1(props, _excluded$2W);
|
|
314096
314350
|
|
|
314097
314351
|
var innerRef = React.useRef(null);
|
|
314098
314352
|
|
|
@@ -314192,7 +314446,7 @@
|
|
|
314192
314446
|
return RangePicker$1;
|
|
314193
314447
|
}
|
|
314194
314448
|
|
|
314195
|
-
var _excluded$
|
|
314449
|
+
var _excluded$2X = ["prefixCls", "getPopupContainer", "className", "size", "bordered", "placement", "placeholder", "disabled", "status"];
|
|
314196
314450
|
function generatePicker$2(generateConfig) {
|
|
314197
314451
|
function getPicker(picker, displayName) {
|
|
314198
314452
|
var Picker$1 = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
@@ -314206,7 +314460,7 @@
|
|
|
314206
314460
|
placeholder = props.placeholder,
|
|
314207
314461
|
customDisabled = props.disabled,
|
|
314208
314462
|
customStatus = props.status,
|
|
314209
|
-
restProps = _objectWithoutProperties$1(props, _excluded$
|
|
314463
|
+
restProps = _objectWithoutProperties$1(props, _excluded$2X);
|
|
314210
314464
|
|
|
314211
314465
|
warning$6(picker !== 'quarter', displayName, "DatePicker.".concat(displayName, " is legacy usage. Please use DatePicker[picker='").concat(picker, "'] directly."));
|
|
314212
314466
|
|
|
@@ -314428,13 +314682,13 @@
|
|
|
314428
314682
|
return propValue;
|
|
314429
314683
|
};
|
|
314430
314684
|
|
|
314431
|
-
var _excluded$
|
|
314685
|
+
var _excluded$2Y = ["prefixCls", "title", "content", "_overlay"];
|
|
314432
314686
|
var Popover$1 = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
314433
314687
|
var customizePrefixCls = _ref.prefixCls,
|
|
314434
314688
|
title = _ref.title,
|
|
314435
314689
|
content = _ref.content,
|
|
314436
314690
|
_overlay = _ref._overlay,
|
|
314437
|
-
otherProps = _objectWithoutProperties$1(_ref, _excluded$
|
|
314691
|
+
otherProps = _objectWithoutProperties$1(_ref, _excluded$2Y);
|
|
314438
314692
|
|
|
314439
314693
|
var _React$useContext = React.useContext(ConfigContext),
|
|
314440
314694
|
getPrefixCls = _React$useContext.getPrefixCls;
|
|
@@ -315283,7 +315537,7 @@
|
|
|
315283
315537
|
|
|
315284
315538
|
var KeyCode$1 = /*@__PURE__*/getDefaultExportFromCjs(KeyCode_1);
|
|
315285
315539
|
|
|
315286
|
-
var _excluded$
|
|
315540
|
+
var _excluded$2Z = ["style", "noStyle", "disabled"];
|
|
315287
315541
|
var inlineStyle$1 = {
|
|
315288
315542
|
border: 0,
|
|
315289
315543
|
background: 'transparent',
|
|
@@ -315312,7 +315566,7 @@
|
|
|
315312
315566
|
var style = props.style,
|
|
315313
315567
|
noStyle = props.noStyle,
|
|
315314
315568
|
disabled = props.disabled,
|
|
315315
|
-
restProps = _objectWithoutProperties$1(props, _excluded$
|
|
315569
|
+
restProps = _objectWithoutProperties$1(props, _excluded$2Z);
|
|
315316
315570
|
|
|
315317
315571
|
var mergedStyle = {};
|
|
315318
315572
|
|
|
@@ -315523,7 +315777,7 @@
|
|
|
315523
315777
|
}, conditions);
|
|
315524
315778
|
});
|
|
315525
315779
|
|
|
315526
|
-
var _excluded$
|
|
315780
|
+
var _excluded$2_ = ["prefixCls", "component", "className", "aria-label", "setContentRef", "children"];
|
|
315527
315781
|
|
|
315528
315782
|
var Typography$2 = function Typography(_ref, ref) {
|
|
315529
315783
|
var customizePrefixCls = _ref.prefixCls,
|
|
@@ -315533,7 +315787,7 @@
|
|
|
315533
315787
|
ariaLabel = _ref['aria-label'],
|
|
315534
315788
|
setContentRef = _ref.setContentRef,
|
|
315535
315789
|
children = _ref.children,
|
|
315536
|
-
restProps = _objectWithoutProperties$1(_ref, _excluded$
|
|
315790
|
+
restProps = _objectWithoutProperties$1(_ref, _excluded$2_);
|
|
315537
315791
|
|
|
315538
315792
|
var _React$useContext = React.useContext(ConfigContext),
|
|
315539
315793
|
getPrefixCls = _React$useContext.getPrefixCls,
|
|
@@ -315776,7 +316030,7 @@
|
|
|
315776
316030
|
EllipsisTooltip$1.displayName = 'EllipsisTooltip';
|
|
315777
316031
|
}
|
|
315778
316032
|
|
|
315779
|
-
var _excluded$
|
|
316033
|
+
var _excluded$2$ = ["prefixCls", "className", "style", "type", "disabled", "children", "ellipsis", "editable", "copyable", "component", "title"];
|
|
315780
316034
|
|
|
315781
316035
|
function wrapperDecorations$1(_ref, content) {
|
|
315782
316036
|
var mark = _ref.mark,
|
|
@@ -315828,7 +316082,7 @@
|
|
|
315828
316082
|
copyable = props.copyable,
|
|
315829
316083
|
component = props.component,
|
|
315830
316084
|
title = props.title,
|
|
315831
|
-
restProps = _objectWithoutProperties$1(props, _excluded$
|
|
316085
|
+
restProps = _objectWithoutProperties$1(props, _excluded$2$);
|
|
315832
316086
|
|
|
315833
316087
|
var _React$useContext = React.useContext(ConfigContext),
|
|
315834
316088
|
getPrefixCls = _React$useContext.getPrefixCls,
|
|
@@ -316246,12 +316500,12 @@
|
|
|
316246
316500
|
});
|
|
316247
316501
|
});
|
|
316248
316502
|
|
|
316249
|
-
var _excluded$
|
|
316503
|
+
var _excluded$30 = ["ellipsis", "rel"];
|
|
316250
316504
|
|
|
316251
316505
|
var Link$2 = function Link(_ref, ref) {
|
|
316252
316506
|
var ellipsis = _ref.ellipsis,
|
|
316253
316507
|
rel = _ref.rel,
|
|
316254
|
-
restProps = _objectWithoutProperties$1(_ref, _excluded$
|
|
316508
|
+
restProps = _objectWithoutProperties$1(_ref, _excluded$30);
|
|
316255
316509
|
|
|
316256
316510
|
warning$6(_typeof$1(ellipsis) !== 'object', 'Typography.Link', '`ellipsis` only supports boolean value.');
|
|
316257
316511
|
var baseRef = React.useRef(null);
|
|
@@ -316285,11 +316539,11 @@
|
|
|
316285
316539
|
|
|
316286
316540
|
var Paragraph$7 = /*#__PURE__*/React.forwardRef(Paragraph$6);
|
|
316287
316541
|
|
|
316288
|
-
var _excluded$
|
|
316542
|
+
var _excluded$31 = ["ellipsis"];
|
|
316289
316543
|
|
|
316290
316544
|
var Text$2 = function Text(_ref, ref) {
|
|
316291
316545
|
var ellipsis = _ref.ellipsis,
|
|
316292
|
-
restProps = _objectWithoutProperties$1(_ref, _excluded$
|
|
316546
|
+
restProps = _objectWithoutProperties$1(_ref, _excluded$31);
|
|
316293
316547
|
|
|
316294
316548
|
var mergedEllipsis = React.useMemo(function () {
|
|
316295
316549
|
if (ellipsis && _typeof$1(ellipsis) === 'object') {
|
|
@@ -316309,13 +316563,13 @@
|
|
|
316309
316563
|
|
|
316310
316564
|
var Text$3 = /*#__PURE__*/React.forwardRef(Text$2);
|
|
316311
316565
|
|
|
316312
|
-
var _excluded$
|
|
316566
|
+
var _excluded$32 = ["level"];
|
|
316313
316567
|
var TITLE_ELE_LIST$1 = tupleNum$1(1, 2, 3, 4, 5);
|
|
316314
316568
|
|
|
316315
316569
|
var Title$3 = function Title(props, ref) {
|
|
316316
316570
|
var _props$level = props.level,
|
|
316317
316571
|
level = _props$level === void 0 ? 1 : _props$level,
|
|
316318
|
-
restProps = _objectWithoutProperties$1(props, _excluded$
|
|
316572
|
+
restProps = _objectWithoutProperties$1(props, _excluded$32);
|
|
316319
316573
|
|
|
316320
316574
|
var component;
|
|
316321
316575
|
|
|
@@ -316420,13 +316674,13 @@
|
|
|
316420
316674
|
RefAutoComplete$1.Option = Option;
|
|
316421
316675
|
RefAutoComplete$1.AntdAutoComplete = RefAutoComplete;
|
|
316422
316676
|
|
|
316423
|
-
var _excluded$
|
|
316677
|
+
var _excluded$33 = ["children", "treeData", "value", "defaultLabel"];
|
|
316424
316678
|
var CLMTreeSelect = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
316425
316679
|
var children = props.children,
|
|
316426
316680
|
treeData = props.treeData,
|
|
316427
316681
|
value = props.value,
|
|
316428
316682
|
defaultLabel = props.defaultLabel,
|
|
316429
|
-
resetProps = _objectWithoutProperties$1(props, _excluded$
|
|
316683
|
+
resetProps = _objectWithoutProperties$1(props, _excluded$33);
|
|
316430
316684
|
|
|
316431
316685
|
var deepChildren = React.useCallback(function (arr) {
|
|
316432
316686
|
var flag = false;
|
|
@@ -316551,7 +316805,7 @@
|
|
|
316551
316805
|
return ErrorBoundary;
|
|
316552
316806
|
}(React.Component);
|
|
316553
316807
|
|
|
316554
|
-
var _excluded$
|
|
316808
|
+
var _excluded$34 = ["description", "prefixCls", "message", "banner", "className", "style", "onMouseEnter", "onMouseLeave", "onClick", "afterClose", "showIcon", "closable", "closeText", "closeIcon", "action", "duration"];
|
|
316555
316809
|
var iconMapFilled$1 = {
|
|
316556
316810
|
success: CheckCircleFilled$2,
|
|
316557
316811
|
info: InfoCircleFilled$2,
|
|
@@ -316624,7 +316878,7 @@
|
|
|
316624
316878
|
closeIcon = _ref$closeIcon === void 0 ? /*#__PURE__*/React.createElement(CloseOutlined$2, null) : _ref$closeIcon,
|
|
316625
316879
|
action = _ref.action,
|
|
316626
316880
|
duration = _ref.duration,
|
|
316627
|
-
props = _objectWithoutProperties$1(_ref, _excluded$
|
|
316881
|
+
props = _objectWithoutProperties$1(_ref, _excluded$34);
|
|
316628
316882
|
|
|
316629
316883
|
var _React$useState = React.useState(false),
|
|
316630
316884
|
_React$useState2 = _slicedToArray$1(_React$useState, 2),
|
|
@@ -317054,7 +317308,7 @@
|
|
|
317054
317308
|
};
|
|
317055
317309
|
};
|
|
317056
317310
|
|
|
317057
|
-
var _excluded$
|
|
317311
|
+
var _excluded$35 = ["className", "onUrge", "onDeleteComment"];
|
|
317058
317312
|
var prefixCls$c = 'lm_approval';
|
|
317059
317313
|
var colors = ['#36BCF1', '#AE86DC', '#8BD248', '#F5A173'];
|
|
317060
317314
|
var cacheColorMap = new Map();
|
|
@@ -317462,7 +317716,7 @@
|
|
|
317462
317716
|
onUrge = _props$onUrge === void 0 ? function () {} : _props$onUrge,
|
|
317463
317717
|
_props$onDeleteCommen2 = props.onDeleteComment,
|
|
317464
317718
|
onDeleteComment = _props$onDeleteCommen2 === void 0 ? function () {} : _props$onDeleteCommen2,
|
|
317465
|
-
others = _objectWithoutProperties$1(props, _excluded$
|
|
317719
|
+
others = _objectWithoutProperties$1(props, _excluded$35);
|
|
317466
317720
|
|
|
317467
317721
|
var _useState = React.useState(false),
|
|
317468
317722
|
_useState2 = _slicedToArray$1(_useState, 2),
|
|
@@ -319253,7 +319507,7 @@
|
|
|
319253
319507
|
return nodes;
|
|
319254
319508
|
}
|
|
319255
319509
|
|
|
319256
|
-
var _excluded$
|
|
319510
|
+
var _excluded$36 = ["defaultExpandAll", "defaultExpandParent", "defaultExpandedKeys"],
|
|
319257
319511
|
_excluded2$J = ["prefixCls", "className"];
|
|
319258
319512
|
var ConfigContext$6 = ConfigProvider$1.ConfigContext;
|
|
319259
319513
|
|
|
@@ -319278,7 +319532,7 @@
|
|
|
319278
319532
|
var defaultExpandAll = _ref2.defaultExpandAll,
|
|
319279
319533
|
defaultExpandParent = _ref2.defaultExpandParent,
|
|
319280
319534
|
defaultExpandedKeys = _ref2.defaultExpandedKeys,
|
|
319281
|
-
props = _objectWithoutProperties$1(_ref2, _excluded$
|
|
319535
|
+
props = _objectWithoutProperties$1(_ref2, _excluded$36);
|
|
319282
319536
|
|
|
319283
319537
|
// Shift click usage
|
|
319284
319538
|
var lastSelectedKey = React.useRef();
|
|
@@ -319776,11 +320030,11 @@
|
|
|
319776
320030
|
blockNode: false
|
|
319777
320031
|
};
|
|
319778
320032
|
|
|
319779
|
-
var _excluded$
|
|
320033
|
+
var _excluded$37 = ["className"];
|
|
319780
320034
|
var prefixCls$d = 'lm_tree';
|
|
319781
320035
|
var LmTree = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
319782
320036
|
var className = props.className,
|
|
319783
|
-
rest = _objectWithoutProperties$1(props, _excluded$
|
|
320037
|
+
rest = _objectWithoutProperties$1(props, _excluded$37);
|
|
319784
320038
|
|
|
319785
320039
|
return /*#__PURE__*/React__default['default'].createElement(Tree$2, _objectSpread(_objectSpread({
|
|
319786
320040
|
ref: ref
|
|
@@ -320839,7 +321093,7 @@
|
|
|
320839
321093
|
}, unitNodes);
|
|
320840
321094
|
}
|
|
320841
321095
|
|
|
320842
|
-
var _excluded$
|
|
321096
|
+
var _excluded$38 = ["prefixCls", "count", "className", "motionClassName", "style", "title", "show", "component", "children"];
|
|
320843
321097
|
|
|
320844
321098
|
var ScrollNumber$1 = function ScrollNumber(_ref) {
|
|
320845
321099
|
var customizePrefixCls = _ref.prefixCls,
|
|
@@ -320852,7 +321106,7 @@
|
|
|
320852
321106
|
_ref$component = _ref.component,
|
|
320853
321107
|
component = _ref$component === void 0 ? 'sup' : _ref$component,
|
|
320854
321108
|
children = _ref.children,
|
|
320855
|
-
restProps = _objectWithoutProperties$1(_ref, _excluded$
|
|
321109
|
+
restProps = _objectWithoutProperties$1(_ref, _excluded$38);
|
|
320856
321110
|
|
|
320857
321111
|
var _React$useContext = React.useContext(ConfigContext$1),
|
|
320858
321112
|
getPrefixCls = _React$useContext.getPrefixCls;
|
|
@@ -320902,7 +321156,7 @@
|
|
|
320902
321156
|
return /*#__PURE__*/React.createElement(component, newProps, numberNodes);
|
|
320903
321157
|
};
|
|
320904
321158
|
|
|
320905
|
-
var _excluded$
|
|
321159
|
+
var _excluded$39 = ["prefixCls", "scrollNumberPrefixCls", "children", "status", "text", "color", "count", "overflowCount", "dot", "size", "title", "offset", "style", "className", "showZero"];
|
|
320906
321160
|
|
|
320907
321161
|
var Badge$1 = function Badge(_ref) {
|
|
320908
321162
|
var _classNames, _classNames2;
|
|
@@ -320927,7 +321181,7 @@
|
|
|
320927
321181
|
className = _ref.className,
|
|
320928
321182
|
_ref$showZero = _ref.showZero,
|
|
320929
321183
|
showZero = _ref$showZero === void 0 ? false : _ref$showZero,
|
|
320930
|
-
restProps = _objectWithoutProperties$1(_ref, _excluded$
|
|
321184
|
+
restProps = _objectWithoutProperties$1(_ref, _excluded$39);
|
|
320931
321185
|
|
|
320932
321186
|
var _React$useContext = React.useContext(ConfigContext$1),
|
|
320933
321187
|
getPrefixCls = _React$useContext.getPrefixCls,
|
|
@@ -321062,7 +321316,7 @@
|
|
|
321062
321316
|
|
|
321063
321317
|
Badge$1.Ribbon = Ribbon$1;
|
|
321064
321318
|
|
|
321065
|
-
var _excluded$
|
|
321319
|
+
var _excluded$3a = ["prefixCls", "type", "orientation", "orientationMargin", "className", "children", "dashed", "plain"];
|
|
321066
321320
|
|
|
321067
321321
|
var Divider$5 = function Divider(props) {
|
|
321068
321322
|
var _classNames;
|
|
@@ -321081,7 +321335,7 @@
|
|
|
321081
321335
|
children = props.children,
|
|
321082
321336
|
dashed = props.dashed,
|
|
321083
321337
|
plain = props.plain,
|
|
321084
|
-
restProps = _objectWithoutProperties$1(props, _excluded$
|
|
321338
|
+
restProps = _objectWithoutProperties$1(props, _excluded$3a);
|
|
321085
321339
|
|
|
321086
321340
|
var prefixCls = getPrefixCls('divider', customizePrefixCls);
|
|
321087
321341
|
var orientationPrefix = orientation.length > 0 ? "-".concat(orientation) : orientation;
|
|
@@ -321459,7 +321713,7 @@
|
|
|
321459
321713
|
}
|
|
321460
321714
|
}; // 状态管理操作
|
|
321461
321715
|
|
|
321462
|
-
var reducer$
|
|
321716
|
+
var reducer$6 = function reducer(state, action) {
|
|
321463
321717
|
var resize = action.resize,
|
|
321464
321718
|
transform = action.transform,
|
|
321465
321719
|
current = action.current;
|
|
@@ -321487,7 +321741,7 @@
|
|
|
321487
321741
|
}
|
|
321488
321742
|
}; // 仅在初始化时触发一次
|
|
321489
321743
|
|
|
321490
|
-
var initialState$
|
|
321744
|
+
var initialState$4 = function initialState(props) {
|
|
321491
321745
|
var initialIndex = props.initialIndex;
|
|
321492
321746
|
return _objectSpread(_objectSpread({}, defaultState), {}, {
|
|
321493
321747
|
currentIndex: initialIndex
|
|
@@ -321838,10 +322092,10 @@
|
|
|
321838
322092
|
var Root = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
321839
322093
|
var bodyRef = React.useRef(null);
|
|
321840
322094
|
var initialState = React.useMemo(function () {
|
|
321841
|
-
return initialState$
|
|
322095
|
+
return initialState$4(props);
|
|
321842
322096
|
}, []);
|
|
321843
322097
|
|
|
321844
|
-
var _useReducer = React.useReducer(reducer$
|
|
322098
|
+
var _useReducer = React.useReducer(reducer$6, initialState),
|
|
321845
322099
|
_useReducer2 = _slicedToArray$1(_useReducer, 2),
|
|
321846
322100
|
state = _useReducer2[0],
|
|
321847
322101
|
dispatch = _useReducer2[1]; // 获取核心Methods
|
|
@@ -321907,7 +322161,7 @@
|
|
|
321907
322161
|
|
|
321908
322162
|
}; // 状态管理操作
|
|
321909
322163
|
|
|
321910
|
-
var reducer$
|
|
322164
|
+
var reducer$7 = function reducer(state, action) {
|
|
321911
322165
|
var result = action.result,
|
|
321912
322166
|
init = action.init;
|
|
321913
322167
|
|
|
@@ -321923,7 +322177,7 @@
|
|
|
321923
322177
|
}
|
|
321924
322178
|
}; // 仅在初始化时触发一次
|
|
321925
322179
|
|
|
321926
|
-
var initialState$
|
|
322180
|
+
var initialState$5 = function initialState() {
|
|
321927
322181
|
return _objectSpread({}, defaultState$1);
|
|
321928
322182
|
};
|
|
321929
322183
|
|
|
@@ -323597,14 +323851,14 @@
|
|
|
323597
323851
|
|
|
323598
323852
|
var Body$1 = /*#__PURE__*/React__default['default'].memo(Index$b);
|
|
323599
323853
|
|
|
323600
|
-
var _excluded$
|
|
323854
|
+
var _excluded$3b = ["value", "onChange", "leftIcon", "rightIcon"];
|
|
323601
323855
|
|
|
323602
323856
|
var ResetSlider = function ResetSlider(_ref) {
|
|
323603
323857
|
var value = _ref.value,
|
|
323604
323858
|
_onChange = _ref.onChange,
|
|
323605
323859
|
leftIcon = _ref.leftIcon,
|
|
323606
323860
|
rightIcon = _ref.rightIcon,
|
|
323607
|
-
props = _objectWithoutProperties$1(_ref, _excluded$
|
|
323861
|
+
props = _objectWithoutProperties$1(_ref, _excluded$3b);
|
|
323608
323862
|
|
|
323609
323863
|
// 减
|
|
323610
323864
|
var decrement = function decrement() {
|
|
@@ -323758,10 +324012,10 @@
|
|
|
323758
324012
|
|
|
323759
324013
|
var LmBox = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
323760
324014
|
var initialState = React.useMemo(function () {
|
|
323761
|
-
return initialState$
|
|
324015
|
+
return initialState$5();
|
|
323762
324016
|
}, []);
|
|
323763
324017
|
|
|
323764
|
-
var _useReducer = React.useReducer(reducer$
|
|
324018
|
+
var _useReducer = React.useReducer(reducer$7, initialState),
|
|
323765
324019
|
_useReducer2 = _slicedToArray$1(_useReducer, 2),
|
|
323766
324020
|
state = _useReducer2[0],
|
|
323767
324021
|
dispatch = _useReducer2[1]; // 获取核心Methods
|
|
@@ -323824,7 +324078,7 @@
|
|
|
323824
324078
|
|
|
323825
324079
|
}; // 状态管理操作
|
|
323826
324080
|
|
|
323827
|
-
var reducer$
|
|
324081
|
+
var reducer$8 = function reducer(state, action) {
|
|
323828
324082
|
var transform = action.transform,
|
|
323829
324083
|
current = action.current,
|
|
323830
324084
|
visible = action.visible;
|
|
@@ -323857,7 +324111,7 @@
|
|
|
323857
324111
|
}
|
|
323858
324112
|
}; // 仅在初始化时触发一次
|
|
323859
324113
|
|
|
323860
|
-
var initialState$
|
|
324114
|
+
var initialState$6 = function initialState(props) {
|
|
323861
324115
|
var initialIndex = props.initialIndex;
|
|
323862
324116
|
return _objectSpread(_objectSpread({}, defaultState$2), {}, {
|
|
323863
324117
|
currentIndex: initialIndex
|
|
@@ -324249,10 +324503,10 @@
|
|
|
324249
324503
|
var LmImageViewerRoot = function LmImageViewerRoot(props, ref) {
|
|
324250
324504
|
var previewRef = React.useRef(null);
|
|
324251
324505
|
var initialState = React.useMemo(function () {
|
|
324252
|
-
return initialState$
|
|
324506
|
+
return initialState$6(props);
|
|
324253
324507
|
}, []);
|
|
324254
324508
|
|
|
324255
|
-
var _useReducer = React.useReducer(reducer$
|
|
324509
|
+
var _useReducer = React.useReducer(reducer$8, initialState),
|
|
324256
324510
|
_useReducer2 = _slicedToArray$1(_useReducer, 2),
|
|
324257
324511
|
state = _useReducer2[0],
|
|
324258
324512
|
dispatch = _useReducer2[1]; // 获取核心Methods
|