@zhenliang/sheet 0.1.4 → 0.1.7-3.beta.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/dist/assets/arrow-mac-down.svg +19 -0
- package/dist/assets/arrow-mac-right.svg +17 -0
- package/dist/assets/arrow-windows-down.svg +17 -0
- package/dist/assets/arrow-windows-right.svg +17 -0
- package/dist/core/config.d.ts +3 -0
- package/dist/core/config.js +4 -1
- package/dist/core/editor/cascaderEditor/index.d.ts +1 -1
- package/dist/core/editor/cascaderEditor/index.js +12 -11
- package/dist/core/editor/cascaderEditor/index.less +15 -7
- package/dist/core/editor/dateEditor/index.js +31 -8
- package/dist/core/editor/dateEditor/index.less +9 -2
- package/dist/core/editor/numberEditor/index.d.ts +3 -1
- package/dist/core/editor/numberEditor/index.js +62 -27
- package/dist/core/editor/numberEditor/index.less +3 -2
- package/dist/core/editor/selectEditor/index.d.ts +1 -1
- package/dist/core/editor/selectEditor/index.js +34 -19
- package/dist/core/editor/selectEditor/index.less +16 -5
- package/dist/core/reducers/index.d.ts +2 -2
- package/dist/core/reducers/index.js +8 -1
- package/dist/core/reducers/keyboardReducer.js +39 -9
- package/dist/core/reducers/mouseReducer.js +115 -11
- package/dist/core/reducers/sideEffectReducer.d.ts +1 -1
- package/dist/core/reducers/sideEffectReducer.js +146 -41
- package/dist/core/reducers/stateReducer.d.ts +1 -0
- package/dist/core/reducers/stateReducer.js +96 -27
- package/dist/core/sheet/Cell.d.ts +1 -1
- package/dist/core/sheet/Cell.js +33 -24
- package/dist/core/sheet/Control.d.ts +21 -0
- package/dist/core/sheet/Control.js +83 -0
- package/dist/core/sheet/DataEditor.js +3 -3
- package/dist/core/sheet/DefaultCell.d.ts +8 -3
- package/dist/core/sheet/DefaultCell.js +12 -8
- package/dist/core/sheet/DefaultRow.js +3 -9
- package/dist/core/sheet/DefaultRowMapper.d.ts +3 -0
- package/dist/core/sheet/DefaultRowMapper.js +22 -6
- package/dist/core/sheet/DefaultShell.js +1 -1
- package/dist/core/sheet/Event.d.ts +1 -1
- package/dist/core/sheet/Event.js +1 -1
- package/dist/core/sheet/Menu.d.ts +6 -0
- package/dist/core/sheet/Menu.js +21 -0
- package/dist/core/sheet/ValueViewer.js +1 -1
- package/dist/core/sheet/index.js +249 -88
- package/dist/core/sheet/index.less +199 -107
- package/dist/core/sheet/searchInput.d.ts +15 -0
- package/dist/core/sheet/searchInput.js +78 -0
- package/dist/core/sheet/useCellEvent.js +1 -1
- package/dist/core/sheet/useContextMenu.d.ts +1 -1
- package/dist/core/sheet/useContextMenu.js +13 -10
- package/dist/core/sheet/useKeyBoardEvent.js +19 -2
- package/dist/core/sheet/useMouseEvent.js +19 -12
- package/dist/core/sheet/useSearchInput.d.ts +11 -0
- package/dist/core/sheet/useSearchInput.js +65 -0
- package/dist/core/sheet/useSelectVisible.d.ts +1 -1
- package/dist/core/sheet/useSelectVisible.js +17 -7
- package/dist/core/sheet/useVirtualList.d.ts +10 -1
- package/dist/core/sheet/useVirtualList.js +44 -28
- package/dist/core/sheet/var.less +41 -34
- package/dist/core/shell/draggableShell/index.d.ts +4 -1
- package/dist/core/shell/draggableShell/index.js +133 -50
- package/dist/core/shell/tableShell.d.ts +4 -1
- package/dist/core/shell/tableShell.js +82 -34
- package/dist/core/table/addButton.d.ts +6 -0
- package/dist/core/table/addButton.js +103 -0
- package/dist/core/table/events.d.ts +1 -3
- package/dist/core/table/events.js +30 -35
- package/dist/core/table/index.js +97 -189
- package/dist/core/table/index.less +12 -0
- package/dist/core/table/useGroupConfig.d.ts +4 -1
- package/dist/core/table/useGroupConfig.js +139 -14
- package/dist/core/table/useRowSelection.d.ts +3 -0
- package/dist/core/table/useRowSelection.js +68 -2
- package/dist/core/util.d.ts +10 -4
- package/dist/core/util.js +121 -69
- package/dist/core/viewer/btnViewer/index.js +3 -3
- package/dist/core/viewer/cascaderViewer/index.js +6 -1
- package/dist/core/viewer/checkViewer/index.js +2 -2
- package/dist/core/viewer/editViewer/index.js +3 -3
- package/dist/core/viewer/groupViewer/index.js +26 -10
- package/dist/core/viewer/selectorViewer/index.js +7 -3
- package/dist/core/viewer/switchViewer/index.js +10 -4
- package/dist/example/antComponent.d.ts +1 -1
- package/dist/example/antComponent.js +63 -37
- package/dist/example/basic.d.ts +1 -1
- package/dist/example/basic.js +20 -14
- package/dist/example/ellipsis.d.ts +1 -1
- package/dist/example/ellipsis.js +3 -2
- package/dist/example/fixed.d.ts +1 -1
- package/dist/example/fixed.js +3 -2
- package/dist/example/group.js +40 -17
- package/dist/example/selection.d.ts +1 -1
- package/dist/example/selection.js +9 -8
- package/dist/example/sheet.d.ts +1 -1
- package/dist/example/sheet.js +21 -22
- package/dist/example/valuationAnalyze.d.ts +1 -0
- package/dist/example/valuationAnalyze.js +3 -4
- package/dist/hooks/index.d.ts +1 -1
- package/dist/hooks/index.js +1 -1
- package/dist/hooks/useEventBus.d.ts +1 -0
- package/dist/hooks/useEventBus.js +2 -2
- package/dist/hooks/useGroupConfig.d.ts +4 -0
- package/dist/hooks/useGroupConfig.js +5 -0
- package/dist/hooks/useKeyboard.d.ts +5 -2
- package/dist/hooks/useKeyboard.js +17 -3
- package/dist/hooks/useMiddlewareReducer.d.ts +5 -5
- package/dist/hooks/useMiddlewareReducer.js +3 -3
- package/dist/hooks/useMouse.d.ts +1 -1
- package/dist/hooks/useMouse.js +7 -7
- package/dist/hooks/useSetState.js +7 -7
- package/dist/hooks/useSheetEvent.d.ts +1 -1
- package/dist/hooks/useSheetEvent.js +2 -2
- package/dist/hooks/useWidthConfig.d.ts +3 -3
- package/dist/hooks/useWidthConfig.js +2 -2
- package/dist/standardUtils/index.d.ts +1 -1
- package/dist/standardUtils/index.js +1 -1
- package/dist/type/sheet.d.ts +77 -31
- package/dist/type/sheetTable.d.ts +21 -12
- package/package.json +7 -4
|
@@ -1,24 +1,30 @@
|
|
|
1
|
-
function _typeof(
|
|
2
|
-
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return exports; }; var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, defineProperty = Object.defineProperty || function (obj, key, desc) { obj[key] = desc.value; }, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; function define(obj, key, value) { return Object.defineProperty(obj, key, { value: value, enumerable: !0, configurable: !0, writable: !0 }), obj[key]; } try { define({}, ""); } catch (err) { define = function define(obj, key, value) { return obj[key] = value; }; } function wrap(innerFn, outerFn, self, tryLocsList) { var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context = new Context(tryLocsList || []); return defineProperty(generator, "_invoke", { value: makeInvokeMethod(innerFn, self, context) }), generator; } function tryCatch(fn, obj, arg) { try { return { type: "normal", arg: fn.call(obj, arg) }; } catch (err) { return { type: "throw", arg: err }; } } exports.wrap = wrap; var ContinueSentinel = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var IteratorPrototype = {}; define(IteratorPrototype, iteratorSymbol, function () { return this; }); var getProto = Object.getPrototypeOf, NativeIteratorPrototype = getProto && getProto(getProto(values([]))); NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype); var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype); function defineIteratorMethods(prototype) { ["next", "throw", "return"].forEach(function (method) { define(prototype, method, function (arg) { return this._invoke(method, arg); }); }); } function AsyncIterator(generator, PromiseImpl) { function invoke(method, arg, resolve, reject) { var record = tryCatch(generator[method], generator, arg); if ("throw" !== record.type) { var result = record.arg, value = result.value; return value && "object" == _typeof(value) && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) { invoke("next", value, resolve, reject); }, function (err) { invoke("throw", err, resolve, reject); }) : PromiseImpl.resolve(value).then(function (unwrapped) { result.value = unwrapped, resolve(result); }, function (error) { return invoke("throw", error, resolve, reject); }); } reject(record.arg); } var previousPromise; defineProperty(this, "_invoke", { value: function value(method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(innerFn, self, context) { var state = "suspendedStart"; return function (method, arg) { if ("executing" === state) throw new Error("Generator is already running"); if ("completed" === state) { if ("throw" === method) throw arg; return doneResult(); } for (context.method = method, context.arg = arg;;) { var delegate = context.delegate; if (delegate) { var delegateResult = maybeInvokeDelegate(delegate, context); if (delegateResult) { if (delegateResult === ContinueSentinel) continue; return delegateResult; } } if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) { if ("suspendedStart" === state) throw state = "completed", context.arg; context.dispatchException(context.arg); } else "return" === context.method && context.abrupt("return", context.arg); state = "executing"; var record = tryCatch(innerFn, self, context); if ("normal" === record.type) { if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; return { value: record.arg, done: context.done }; } "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); } }; } function maybeInvokeDelegate(delegate, context) { var methodName = context.method, method = delegate.iterator[methodName]; if (undefined === method) return context.delegate = null, "throw" === methodName && delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method) || "return" !== methodName && (context.method = "throw", context.arg = new TypeError("The iterator does not provide a '" + methodName + "' method")), ContinueSentinel; var record = tryCatch(method, delegate.iterator, context.arg); if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel; var info = record.arg; return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel); } function pushTryEntry(locs) { var entry = { tryLoc: locs[0] }; 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry); } function resetTryEntry(entry) { var record = entry.completion || {}; record.type = "normal", delete record.arg, entry.completion = record; } function Context(tryLocsList) { this.tryEntries = [{ tryLoc: "root" }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0); } function values(iterable) { if (iterable) { var iteratorMethod = iterable[iteratorSymbol]; if (iteratorMethod) return iteratorMethod.call(iterable); if ("function" == typeof iterable.next) return iterable; if (!isNaN(iterable.length)) { var i = -1, next = function next() { for (; ++i < iterable.length;) if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next; return next.value = undefined, next.done = !0, next; }; return next.next = next; } } return { next: doneResult }; } function doneResult() { return { value: undefined, done: !0 }; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, defineProperty(Gp, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), defineProperty(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) { var ctor = "function" == typeof genFun && genFun.constructor; return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name)); }, exports.mark = function (genFun) { return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun; }, exports.awrap = function (arg) { return { __await: arg }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () { return this; }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) { void 0 === PromiseImpl && (PromiseImpl = Promise); var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl); return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) { return result.done ? result.value : iter.next(); }); }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () { return this; }), define(Gp, "toString", function () { return "[object Generator]"; }), exports.keys = function (val) { var object = Object(val), keys = []; for (var key in object) keys.push(key); return keys.reverse(), function next() { for (; keys.length;) { var key = keys.pop(); if (key in object) return next.value = key, next.done = !1, next; } return next.done = !0, next; }; }, exports.values = values, Context.prototype = { constructor: Context, reset: function reset(skipTempReset) { if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined); }, stop: function stop() { this.done = !0; var rootRecord = this.tryEntries[0].completion; if ("throw" === rootRecord.type) throw rootRecord.arg; return this.rval; }, dispatchException: function dispatchException(exception) { if (this.done) throw exception; var context = this; function handle(loc, caught) { return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught; } for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i], record = entry.completion; if ("root" === entry.tryLoc) return handle("end"); if (entry.tryLoc <= this.prev) { var hasCatch = hasOwn.call(entry, "catchLoc"), hasFinally = hasOwn.call(entry, "finallyLoc"); if (hasCatch && hasFinally) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } else if (hasCatch) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); } else { if (!hasFinally) throw new Error("try statement without catch or finally"); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } } } }, abrupt: function abrupt(type, arg) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) { var finallyEntry = entry; break; } } finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null); var record = finallyEntry ? finallyEntry.completion : {}; return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record); }, complete: function complete(record, afterLoc) { if ("throw" === record.type) throw record.arg; return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel; }, finish: function finish(finallyLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel; } }, catch: function _catch(tryLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc === tryLoc) { var record = entry.completion; if ("throw" === record.type) { var thrown = record.arg; resetTryEntry(entry); } return thrown; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(iterable, resultName, nextLoc) { return this.delegate = { iterator: values(iterable), resultName: resultName, nextLoc: nextLoc }, "next" === this.method && (this.arg = undefined), ContinueSentinel; } }, exports; }
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
|
+
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw new Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw new Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, catch: function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
|
|
3
3
|
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
|
|
4
4
|
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
5
5
|
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); }
|
|
6
6
|
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
|
|
7
7
|
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
8
8
|
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; }
|
|
9
|
-
function ownKeys(
|
|
10
|
-
function _objectSpread(
|
|
9
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
10
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
11
11
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
12
|
-
function _toPropertyKey(
|
|
13
|
-
function _toPrimitive(
|
|
12
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
13
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
14
14
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
15
15
|
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
16
|
-
import { head, isNil, last, pick } from 'lodash';
|
|
17
|
-
import { clipboardDataToString,
|
|
16
|
+
import { head, isEmpty, isNil, last, pick } from 'lodash';
|
|
17
|
+
import { clipboardDataToString, flatRowCol, flatRowColIndex, formatDataToCell, getRowColConfig, groupConfigToGroupMap, stringToClipboardData } from "../util";
|
|
18
18
|
export var sideEffectReducer = {
|
|
19
19
|
init: function init(dispatch, getState) {
|
|
20
20
|
var _getState = getState(),
|
|
21
21
|
eventBus = _getState.eventBus;
|
|
22
|
+
eventBus.on('change-fixed-position', function (value) {
|
|
23
|
+
dispatch({
|
|
24
|
+
type: 'changeFixedPosition',
|
|
25
|
+
payload: value
|
|
26
|
+
});
|
|
27
|
+
});
|
|
22
28
|
eventBus.on('cell-change', function (cell) {
|
|
23
29
|
dispatch(function () {
|
|
24
30
|
var _getState2 = getState(),
|
|
@@ -58,11 +64,23 @@ export var sideEffectReducer = {
|
|
|
58
64
|
});
|
|
59
65
|
}
|
|
60
66
|
});
|
|
67
|
+
eventBus.on('row-select', function (value) {
|
|
68
|
+
dispatch({
|
|
69
|
+
type: 'selectRow',
|
|
70
|
+
payload: value
|
|
71
|
+
});
|
|
72
|
+
});
|
|
73
|
+
eventBus.on('col-select', function (value) {
|
|
74
|
+
dispatch({
|
|
75
|
+
type: 'selectCol',
|
|
76
|
+
payload: value
|
|
77
|
+
});
|
|
78
|
+
});
|
|
61
79
|
},
|
|
62
80
|
destroy: function destroy(d, getState) {
|
|
63
81
|
var _getState4 = getState(),
|
|
64
82
|
eventBus = _getState4.eventBus;
|
|
65
|
-
eventBus === null || eventBus === void 0
|
|
83
|
+
eventBus === null || eventBus === void 0 || eventBus.removeAllListeners();
|
|
66
84
|
},
|
|
67
85
|
emitSelectChange: function emitSelectChange(d, getState) {
|
|
68
86
|
var _getState5 = getState(),
|
|
@@ -136,8 +154,8 @@ export var sideEffectReducer = {
|
|
|
136
154
|
}
|
|
137
155
|
var cellIndex = flatRowColIndex(start, end);
|
|
138
156
|
var groupMap = groupConfigToGroupMap(groupConfig);
|
|
157
|
+
var count = 0;
|
|
139
158
|
var copyData = cellIndex.reduce(function (left, _ref3) {
|
|
140
|
-
var _data$row$col$dataEdi, _data$row$col$dataEdi2, _data$row$col$dataEdi3;
|
|
141
159
|
var _ref3$row = _ref3.row,
|
|
142
160
|
row = _ref3$row === void 0 ? 0 : _ref3$row,
|
|
143
161
|
_ref3$col = _ref3.col,
|
|
@@ -154,9 +172,26 @@ export var sideEffectReducer = {
|
|
|
154
172
|
};
|
|
155
173
|
}
|
|
156
174
|
}
|
|
175
|
+
count++;
|
|
157
176
|
|
|
158
177
|
// 复制到剪贴板的时候执行 formatter
|
|
159
|
-
var
|
|
178
|
+
var _data$row$col = data[row][col],
|
|
179
|
+
dataValue = _data$row$col.value,
|
|
180
|
+
dataEditor = _data$row$col.dataEditor,
|
|
181
|
+
record = _data$row$col.record;
|
|
182
|
+
var _ref4 = dataEditor || {},
|
|
183
|
+
dataFormatter = _ref4.formatter;
|
|
184
|
+
var formattedValue = dataFormatter ? dataFormatter(dataValue, record) : dataValue;
|
|
185
|
+
if (isNil(dataValue)) {
|
|
186
|
+
formattedValue = ' ';
|
|
187
|
+
}
|
|
188
|
+
if (currentRow === -1) {
|
|
189
|
+
return {
|
|
190
|
+
currentRow: row,
|
|
191
|
+
value: formattedValue
|
|
192
|
+
};
|
|
193
|
+
}
|
|
194
|
+
var currentValue = "".concat(value).concat(currentRow === row ? '\t' : '\n', " ").concat(formattedValue);
|
|
160
195
|
return {
|
|
161
196
|
currentRow: row,
|
|
162
197
|
value: currentValue
|
|
@@ -165,8 +200,8 @@ export var sideEffectReducer = {
|
|
|
165
200
|
currentRow: -1,
|
|
166
201
|
value: ''
|
|
167
202
|
});
|
|
168
|
-
var text = copyData.value
|
|
169
|
-
stringToClipboardData(text);
|
|
203
|
+
var text = copyData.value;
|
|
204
|
+
stringToClipboardData(text, count);
|
|
170
205
|
},
|
|
171
206
|
paste: function paste(dispatch, getState) {
|
|
172
207
|
return _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
|
@@ -198,43 +233,47 @@ export var sideEffectReducer = {
|
|
|
198
233
|
return _context.abrupt("return");
|
|
199
234
|
case 9:
|
|
200
235
|
changes = changeInfo.changes, extChanges = changeInfo.extChanges;
|
|
201
|
-
legalChanges = changes.filter(function (
|
|
202
|
-
var row =
|
|
203
|
-
col =
|
|
204
|
-
value =
|
|
236
|
+
legalChanges = changes.filter(function (_ref5) {
|
|
237
|
+
var row = _ref5.row,
|
|
238
|
+
col = _ref5.col,
|
|
239
|
+
value = _ref5.value;
|
|
205
240
|
var editor = data[row][col].dataEditor;
|
|
241
|
+
var notEditable = data[row][col].readonly || !data[row][col].editable;
|
|
242
|
+
if (notEditable) {
|
|
243
|
+
return false;
|
|
244
|
+
}
|
|
206
245
|
if (editor && editor.checker) {
|
|
207
246
|
return editor.checker(value, data[row][col].record);
|
|
208
247
|
}
|
|
209
248
|
return true;
|
|
210
|
-
}).map(function (
|
|
211
|
-
var _data$row$
|
|
212
|
-
var row =
|
|
213
|
-
col =
|
|
214
|
-
value =
|
|
249
|
+
}).map(function (_ref6) {
|
|
250
|
+
var _data$row$col2, _editor$parser;
|
|
251
|
+
var row = _ref6.row,
|
|
252
|
+
col = _ref6.col,
|
|
253
|
+
value = _ref6.value;
|
|
215
254
|
var editor = data[row][col].dataEditor;
|
|
216
255
|
return {
|
|
217
256
|
row: row,
|
|
218
257
|
col: col,
|
|
219
|
-
id: (_data$row$
|
|
220
|
-
value: editor !== null && editor !== void 0 && editor.parser ? editor === null || editor === void 0
|
|
258
|
+
id: (_data$row$col2 = data[row][col]) === null || _data$row$col2 === void 0 ? void 0 : _data$row$col2.id,
|
|
259
|
+
value: editor !== null && editor !== void 0 && editor.parser ? editor === null || editor === void 0 || (_editor$parser = editor.parser) === null || _editor$parser === void 0 ? void 0 : _editor$parser.call(editor, value, data[row][col].record) : value
|
|
221
260
|
};
|
|
222
261
|
});
|
|
223
|
-
lastRow = extChanges === null || extChanges === void 0
|
|
262
|
+
lastRow = extChanges === null || extChanges === void 0 || (_extChanges$ = extChanges[0]) === null || _extChanges$ === void 0 ? void 0 : _extChanges$.row;
|
|
224
263
|
lastIndex = 1;
|
|
225
|
-
legalExtChanges = extChanges === null || extChanges === void 0 ? void 0 : extChanges.filter(function (
|
|
226
|
-
var value =
|
|
227
|
-
col =
|
|
264
|
+
legalExtChanges = extChanges === null || extChanges === void 0 ? void 0 : extChanges.filter(function (_ref7) {
|
|
265
|
+
var value = _ref7.value,
|
|
266
|
+
col = _ref7.col;
|
|
228
267
|
var editor = data[0][col].dataEditor;
|
|
229
268
|
if (editor && editor.checker) {
|
|
230
269
|
return editor.checker(value);
|
|
231
270
|
}
|
|
232
271
|
return true;
|
|
233
|
-
}).map(function (
|
|
272
|
+
}).map(function (_ref8) {
|
|
234
273
|
var _editor$parser2;
|
|
235
|
-
var row =
|
|
236
|
-
col =
|
|
237
|
-
value =
|
|
274
|
+
var row = _ref8.row,
|
|
275
|
+
col = _ref8.col,
|
|
276
|
+
value = _ref8.value;
|
|
238
277
|
var editor = data[0][col].dataEditor;
|
|
239
278
|
if (lastRow !== row) {
|
|
240
279
|
lastRow = row;
|
|
@@ -243,7 +282,7 @@ export var sideEffectReducer = {
|
|
|
243
282
|
return {
|
|
244
283
|
row: row,
|
|
245
284
|
col: col,
|
|
246
|
-
value: editor !== null && editor !== void 0 && editor.parser ? editor === null || editor === void 0
|
|
285
|
+
value: editor !== null && editor !== void 0 && editor.parser ? editor === null || editor === void 0 || (_editor$parser2 = editor.parser) === null || _editor$parser2 === void 0 ? void 0 : _editor$parser2.call(editor, value) : value,
|
|
247
286
|
id: -lastIndex
|
|
248
287
|
};
|
|
249
288
|
});
|
|
@@ -289,23 +328,27 @@ export var sideEffectReducer = {
|
|
|
289
328
|
var groupMap = groupConfigToGroupMap(groupConfig);
|
|
290
329
|
var cellIndex = flatRowColIndex(start, end);
|
|
291
330
|
var changes = cellIndex.filter(function (item) {
|
|
292
|
-
var _data$item$row;
|
|
293
|
-
return !(data !== null && data !== void 0 && (_data$item$row = data[item.row]) !== null && _data$item$row !== void 0 && _data$item$row[item.col].readonly);
|
|
331
|
+
var _data$item$row, _data$item$row2, _data$item$row3;
|
|
332
|
+
return !(data !== null && data !== void 0 && (_data$item$row = data[item.row]) !== null && _data$item$row !== void 0 && _data$item$row[item.col].readonly) && (data === null || data === void 0 || (_data$item$row2 = data[item.row]) === null || _data$item$row2 === void 0 ? void 0 : _data$item$row2[item.col].allowClear) !== false && (data === null || data === void 0 || (_data$item$row3 = data[item.row]) === null || _data$item$row3 === void 0 ? void 0 : _data$item$row3[item.col].editable);
|
|
294
333
|
}).filter(
|
|
295
334
|
// 过滤掉分组的子行并且是关闭的状态
|
|
296
335
|
function (item) {
|
|
297
336
|
var _groupMap$get3, _groupMap$get4;
|
|
298
337
|
return !(groupMap.get(item.row) && !((_groupMap$get3 = groupMap.get(item.row)) !== null && _groupMap$get3 !== void 0 && _groupMap$get3.isStart) && !((_groupMap$get4 = groupMap.get(item.row)) !== null && _groupMap$get4 !== void 0 && _groupMap$get4.isOpen));
|
|
299
338
|
}).map(function (item) {
|
|
300
|
-
var _data$item$
|
|
339
|
+
var _data$item$row4, _data$item$row5, _data$item$row6;
|
|
301
340
|
return {
|
|
302
|
-
cell: data === null || data === void 0
|
|
341
|
+
cell: data === null || data === void 0 || (_data$item$row4 = data[item.row]) === null || _data$item$row4 === void 0 ? void 0 : _data$item$row4[item.col],
|
|
303
342
|
row: item.row,
|
|
304
343
|
col: item.col,
|
|
305
344
|
value: null,
|
|
306
|
-
|
|
345
|
+
key: data === null || data === void 0 || (_data$item$row5 = data[item.row]) === null || _data$item$row5 === void 0 ? void 0 : _data$item$row5[item.col].dataIndex,
|
|
346
|
+
id: data === null || data === void 0 || (_data$item$row6 = data[item.row]) === null || _data$item$row6 === void 0 ? void 0 : _data$item$row6[item.col].id
|
|
307
347
|
};
|
|
308
348
|
});
|
|
349
|
+
if (!changes || isEmpty(changes)) {
|
|
350
|
+
return;
|
|
351
|
+
}
|
|
309
352
|
var newHistory = _toConsumableArray(history || []);
|
|
310
353
|
newHistory.push({
|
|
311
354
|
changes: changes.map(function (item) {
|
|
@@ -328,8 +371,11 @@ export var sideEffectReducer = {
|
|
|
328
371
|
start = _getState10.start,
|
|
329
372
|
end = _getState10.end,
|
|
330
373
|
history = _getState10.history,
|
|
374
|
+
_getState10$recoverHi = _getState10.recoverHisotry,
|
|
375
|
+
recoverHisotry = _getState10$recoverHi === void 0 ? [] : _getState10$recoverHi,
|
|
331
376
|
cellChangeHandler = _getState10.cellChangeHandler,
|
|
332
|
-
eventBus = _getState10.eventBus
|
|
377
|
+
eventBus = _getState10.eventBus,
|
|
378
|
+
data = _getState10.data;
|
|
333
379
|
if (!(history !== null && history !== void 0 && history.length)) return;
|
|
334
380
|
var changeHistory = _toConsumableArray(history);
|
|
335
381
|
var change = changeHistory.pop();
|
|
@@ -339,12 +385,70 @@ export var sideEffectReducer = {
|
|
|
339
385
|
dispatch({
|
|
340
386
|
type: 'changes',
|
|
341
387
|
payload: {
|
|
342
|
-
history: changeHistory
|
|
388
|
+
history: changeHistory,
|
|
389
|
+
recoverHisotry: [].concat(_toConsumableArray(recoverHisotry), [change])
|
|
343
390
|
}
|
|
344
391
|
});
|
|
345
392
|
return;
|
|
346
393
|
}
|
|
347
394
|
cellChangeHandler && cellChangeHandler(change.changes);
|
|
395
|
+
var recoverChange = _objectSpread(_objectSpread({}, change), {}, {
|
|
396
|
+
changes: change.changes.map(function (item) {
|
|
397
|
+
var _item$row, _item$col;
|
|
398
|
+
return _objectSpread(_objectSpread({}, item), {}, {
|
|
399
|
+
value: data[(_item$row = item.row) !== null && _item$row !== void 0 ? _item$row : 0][(_item$col = item.col) !== null && _item$col !== void 0 ? _item$col : -1].value
|
|
400
|
+
});
|
|
401
|
+
})
|
|
402
|
+
});
|
|
403
|
+
dispatch({
|
|
404
|
+
type: 'changes',
|
|
405
|
+
payload: {
|
|
406
|
+
start: pick(head(change.changes), ['row', 'col']),
|
|
407
|
+
end: pick(last(change.changes), ['row', 'col']),
|
|
408
|
+
lastSelected: {
|
|
409
|
+
start: start,
|
|
410
|
+
end: end
|
|
411
|
+
},
|
|
412
|
+
history: changeHistory,
|
|
413
|
+
recoverHisotry: [].concat(_toConsumableArray(recoverHisotry), [recoverChange])
|
|
414
|
+
}
|
|
415
|
+
});
|
|
416
|
+
},
|
|
417
|
+
recover: function recover(dispatch, getState) {
|
|
418
|
+
var _getState11 = getState(),
|
|
419
|
+
eventBus = _getState11.eventBus,
|
|
420
|
+
_getState11$recoverHi = _getState11.recoverHisotry,
|
|
421
|
+
recoverHisotry = _getState11$recoverHi === void 0 ? [] : _getState11$recoverHi,
|
|
422
|
+
_getState11$history = _getState11.history,
|
|
423
|
+
history = _getState11$history === void 0 ? [] : _getState11$history,
|
|
424
|
+
cellChangeHandler = _getState11.cellChangeHandler,
|
|
425
|
+
start = _getState11.start,
|
|
426
|
+
end = _getState11.end,
|
|
427
|
+
data = _getState11.data;
|
|
428
|
+
if (!(recoverHisotry !== null && recoverHisotry !== void 0 && recoverHisotry.length)) return;
|
|
429
|
+
var changeHistory = _toConsumableArray(recoverHisotry);
|
|
430
|
+
var change = changeHistory.pop();
|
|
431
|
+
var type = change.type;
|
|
432
|
+
if (!['Edit', 'Paste', 'Delete'].includes(type)) {
|
|
433
|
+
eventBus.emit('recover', change);
|
|
434
|
+
dispatch({
|
|
435
|
+
type: 'changes',
|
|
436
|
+
payload: {
|
|
437
|
+
recoverHisotry: changeHistory,
|
|
438
|
+
history: [].concat(_toConsumableArray(history), [change])
|
|
439
|
+
}
|
|
440
|
+
});
|
|
441
|
+
return;
|
|
442
|
+
}
|
|
443
|
+
var reverseChange = _objectSpread(_objectSpread({}, change), {}, {
|
|
444
|
+
changes: change.changes.map(function (item) {
|
|
445
|
+
var _item$row2, _item$col2;
|
|
446
|
+
return _objectSpread(_objectSpread({}, item), {}, {
|
|
447
|
+
value: data[(_item$row2 = item.row) !== null && _item$row2 !== void 0 ? _item$row2 : 0][(_item$col2 = item.col) !== null && _item$col2 !== void 0 ? _item$col2 : -1].value
|
|
448
|
+
});
|
|
449
|
+
})
|
|
450
|
+
});
|
|
451
|
+
cellChangeHandler && cellChangeHandler(change.changes);
|
|
348
452
|
dispatch({
|
|
349
453
|
type: 'changes',
|
|
350
454
|
payload: {
|
|
@@ -354,7 +458,8 @@ export var sideEffectReducer = {
|
|
|
354
458
|
start: start,
|
|
355
459
|
end: end
|
|
356
460
|
},
|
|
357
|
-
history:
|
|
461
|
+
history: [].concat(_toConsumableArray(history), [reverseChange]),
|
|
462
|
+
recoverHisotry: changeHistory
|
|
358
463
|
}
|
|
359
464
|
});
|
|
360
465
|
}
|
|
@@ -1,17 +1,93 @@
|
|
|
1
|
-
function _typeof(
|
|
1
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
2
2
|
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
|
|
3
3
|
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
4
4
|
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); }
|
|
5
5
|
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
|
|
6
6
|
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
7
7
|
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; }
|
|
8
|
-
function ownKeys(
|
|
9
|
-
function _objectSpread(
|
|
8
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
9
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
10
10
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
11
|
-
function _toPropertyKey(
|
|
12
|
-
function _toPrimitive(
|
|
13
|
-
import {
|
|
14
|
-
export var
|
|
11
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
|
12
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
13
|
+
import { stripRowIndex } from "../util";
|
|
14
|
+
export var searchReducer = {
|
|
15
|
+
changeSearch: function changeSearch(state, payload) {
|
|
16
|
+
var data = state.data;
|
|
17
|
+
var count = 0;
|
|
18
|
+
var searchResultList = [];
|
|
19
|
+
payload && (data === null || data === void 0 ? void 0 : data.forEach(function (row, i) {
|
|
20
|
+
return row.forEach(function (item, j) {
|
|
21
|
+
var _item$dataEditor, _item$value;
|
|
22
|
+
if (item.fixed) {
|
|
23
|
+
return;
|
|
24
|
+
}
|
|
25
|
+
var formatterValue;
|
|
26
|
+
if (item.searchKey) {
|
|
27
|
+
var _formatterValue;
|
|
28
|
+
formatterValue = item.searchKey(item.record);
|
|
29
|
+
if ((_formatterValue = formatterValue) !== null && _formatterValue !== void 0 && _formatterValue.includes(payload)) {
|
|
30
|
+
count++;
|
|
31
|
+
searchResultList.push({
|
|
32
|
+
row: i,
|
|
33
|
+
col: j,
|
|
34
|
+
value: item.value,
|
|
35
|
+
formatterValue: formatterValue
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
} else if ((_item$dataEditor = item.dataEditor) !== null && _item$dataEditor !== void 0 && _item$dataEditor.formatter) {
|
|
39
|
+
var _item$dataEditor2, _formatterValue2;
|
|
40
|
+
formatterValue = (_item$dataEditor2 = item.dataEditor) === null || _item$dataEditor2 === void 0 || (_item$dataEditor2 = _item$dataEditor2.formatter(item.value, item.record)) === null || _item$dataEditor2 === void 0 ? void 0 : _item$dataEditor2.toString();
|
|
41
|
+
if ((_formatterValue2 = formatterValue) !== null && _formatterValue2 !== void 0 && _formatterValue2.includes(payload)) {
|
|
42
|
+
count++;
|
|
43
|
+
searchResultList.push({
|
|
44
|
+
row: i,
|
|
45
|
+
col: j,
|
|
46
|
+
value: item.value,
|
|
47
|
+
formatterValue: formatterValue
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
} else if ((_item$value = item.value) !== null && _item$value !== void 0 && _item$value.toString().includes(payload)) {
|
|
51
|
+
count++;
|
|
52
|
+
searchResultList.push({
|
|
53
|
+
row: i,
|
|
54
|
+
col: j,
|
|
55
|
+
value: item.value
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
});
|
|
59
|
+
}));
|
|
60
|
+
return _objectSpread(_objectSpread({}, state), {}, {
|
|
61
|
+
searchText: payload,
|
|
62
|
+
searchTotal: count,
|
|
63
|
+
searchCurrent: -1,
|
|
64
|
+
searchResultList: searchResultList
|
|
65
|
+
});
|
|
66
|
+
},
|
|
67
|
+
closeSearch: function closeSearch(state) {
|
|
68
|
+
return _objectSpread(_objectSpread({}, state), {}, {
|
|
69
|
+
searchText: '',
|
|
70
|
+
showSearch: false,
|
|
71
|
+
searchTotal: 0,
|
|
72
|
+
searchCurrent: 0,
|
|
73
|
+
searchCalledCount: 0,
|
|
74
|
+
searchResultList: []
|
|
75
|
+
});
|
|
76
|
+
},
|
|
77
|
+
openSearch: function openSearch(state) {
|
|
78
|
+
var _state$searchCalledCo;
|
|
79
|
+
return _objectSpread(_objectSpread({}, state), {}, {
|
|
80
|
+
showSearch: true,
|
|
81
|
+
searchCalledCount: ((_state$searchCalledCo = state.searchCalledCount) !== null && _state$searchCalledCo !== void 0 ? _state$searchCalledCo : 0) + 1
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
};
|
|
85
|
+
export var stateReducer = _objectSpread({
|
|
86
|
+
changeFixedPosition: function changeFixedPosition(state, payload) {
|
|
87
|
+
return _objectSpread(_objectSpread({}, state), {}, {
|
|
88
|
+
fixedInfo: payload
|
|
89
|
+
});
|
|
90
|
+
},
|
|
15
91
|
change: function change(state, payload) {
|
|
16
92
|
var _ref = payload,
|
|
17
93
|
key = _ref.key,
|
|
@@ -34,8 +110,8 @@ export var stateReducer = {
|
|
|
34
110
|
});
|
|
35
111
|
},
|
|
36
112
|
colMove: function colMove(state, payload) {
|
|
37
|
-
var _state$data2, _state$
|
|
38
|
-
var maxCol = (((_state$data2 = state.data) === null || _state$data2 === void 0
|
|
113
|
+
var _state$data2, _state$end3, _state$data3, _state$end4;
|
|
114
|
+
var maxCol = (((_state$data2 = state.data) === null || _state$data2 === void 0 || (_state$data2 = _state$data2[0]) === null || _state$data2 === void 0 ? void 0 : _state$data2.length) || 0) - 1;
|
|
39
115
|
var newCol = (((_state$end3 = state.end) === null || _state$end3 === void 0 ? void 0 : _state$end3.col) || 0) + payload;
|
|
40
116
|
if (newCol < 0 || newCol > maxCol || (_state$data3 = state.data) !== null && _state$data3 !== void 0 && _state$data3[0][newCol].fixed) return state;
|
|
41
117
|
return _objectSpread(_objectSpread({}, state), {}, {
|
|
@@ -55,7 +131,7 @@ export var stateReducer = {
|
|
|
55
131
|
confirm = _ref2$cell.confirm,
|
|
56
132
|
id = _ref2$cell.id;
|
|
57
133
|
var history = _toConsumableArray(state.history || []);
|
|
58
|
-
var current = data === null || data === void 0
|
|
134
|
+
var current = data === null || data === void 0 || (_data$row = data[row]) === null || _data$row === void 0 ? void 0 : _data$row[col].value;
|
|
59
135
|
history.push({
|
|
60
136
|
changes: [{
|
|
61
137
|
row: row,
|
|
@@ -105,28 +181,21 @@ export var stateReducer = {
|
|
|
105
181
|
}
|
|
106
182
|
});
|
|
107
183
|
},
|
|
108
|
-
|
|
109
|
-
var _state$data4
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
return item.fixed === SheetType.CellAlign.right;
|
|
116
|
-
});
|
|
117
|
-
if (lastFixed) {
|
|
118
|
-
var _state$data$0$indexOf, _state$data7;
|
|
119
|
-
endCol = (_state$data$0$indexOf = (_state$data7 = state.data) === null || _state$data7 === void 0 ? void 0 : _state$data7[0].indexOf(lastFixed)) !== null && _state$data$0$indexOf !== void 0 ? _state$data$0$indexOf : 0 - 1;
|
|
120
|
-
}
|
|
121
|
-
if (startCol >= 0 && endCol >= 0) {
|
|
184
|
+
selectOneRow: function selectOneRow(state, payload) {
|
|
185
|
+
var _state$data4 = state.data,
|
|
186
|
+
data = _state$data4 === void 0 ? [] : _state$data4;
|
|
187
|
+
var _stripRowIndex = stripRowIndex(data),
|
|
188
|
+
startIndex = _stripRowIndex.startIndex,
|
|
189
|
+
endIndex = _stripRowIndex.endIndex;
|
|
190
|
+
if (startIndex >= 0 && endIndex >= 0) {
|
|
122
191
|
return _objectSpread(_objectSpread({}, state), {}, {
|
|
123
192
|
start: {
|
|
124
193
|
row: payload,
|
|
125
|
-
col:
|
|
194
|
+
col: startIndex
|
|
126
195
|
},
|
|
127
196
|
end: {
|
|
128
197
|
row: payload,
|
|
129
|
-
col:
|
|
198
|
+
col: endIndex
|
|
130
199
|
},
|
|
131
200
|
lastSelected: {
|
|
132
201
|
start: state.start,
|
|
@@ -171,4 +240,4 @@ export var stateReducer = {
|
|
|
171
240
|
lastEditing: editing
|
|
172
241
|
});
|
|
173
242
|
}
|
|
174
|
-
};
|
|
243
|
+
}, searchReducer);
|