targetj 1.0.249 → 1.0.250

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.
@@ -643,15 +643,6 @@ var AnimationManager = /*#__PURE__*/function () {
643
643
  cycle: result.cycle,
644
644
  done: result.status === 'finished'
645
645
  });
646
- this.setAt(tmodel, cleanKey, result.value);
647
- tmodel.val(originalKey, result.value);
648
- if (targetValue) {
649
- targetValue.value = result.value;
650
- targetValue.step = result.step;
651
- targetValue.valuePointer = result.valuePointer;
652
- targetValue.cycle = result.cycle;
653
- tmodel.setActual(originalKey, result.value);
654
- }
655
646
  }
656
647
  } catch (err) {
657
648
  _iterator11.e(err);
package/build/DomInit.js CHANGED
@@ -31,12 +31,13 @@ var DomInit = /*#__PURE__*/function () {
31
31
  key: "initCacheDoms",
32
32
  value: function initCacheDoms(visibleList) {
33
33
  var elements = tRoot().$dom.queryAll('[tgjs]');
34
+ var visibleByOid = new Map();
34
35
  visibleList.forEach(function (tmodel) {
35
36
  tmodel.$dom = null;
37
+ if (tmodel.type !== 'BI') {
38
+ visibleByOid.set(tmodel.oid, tmodel);
39
+ }
36
40
  });
37
- var visibleMap = TUtil.list2map(visibleList.filter(function (item) {
38
- return item.type !== 'BI';
39
- }));
40
41
  var newVisibles = [];
41
42
  var _iterator = _createForOfIteratorHelper(elements),
42
43
  _step;
@@ -44,17 +45,14 @@ var DomInit = /*#__PURE__*/function () {
44
45
  for (_iterator.s(); !(_step = _iterator.n()).done;) {
45
46
  var element = _step.value;
46
47
  var id = element.getAttribute("id");
47
- var tmodel = visibleMap[id];
48
+ var tmodel = getTModelById(id);
48
49
  if (tmodel) {
49
- tmodel.$dom = new $Dom("#".concat(id));
50
- } else {
51
- tmodel = getTModelById(id);
52
- if (tmodel) {
50
+ tmodel.$dom = new $Dom(element);
51
+ if (!visibleByOid.has(tmodel.oid)) {
53
52
  newVisibles.push(tmodel);
54
- tmodel.$dom = new $Dom("#".concat(id));
55
- } else {
56
- $Dom.detach(element);
57
53
  }
54
+ } else {
55
+ $Dom.detach(element);
58
56
  }
59
57
  }
60
58
  } catch (err) {
@@ -1,8 +1,15 @@
1
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 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 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 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
2
  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; }
4
3
  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; }
5
4
  function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
5
+ 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 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 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 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; }
6
+ function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t.return || t.return(); } finally { if (u) throw o; } } }; }
7
+ function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }
8
+ 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."); }
9
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
10
+ function _iterableToArray(r) { if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r); }
11
+ function _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }
12
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
6
13
  function asyncGeneratorStep(n, t, e, r, o, a, c) { try { var i = n[a](c), u = i.value; } catch (n) { return void e(n); } i.done ? t(u) : Promise.resolve(u).then(r, o); }
7
14
  function _asyncToGenerator(n) { return function () { var t = this, e = arguments; return new Promise(function (r, o) { var a = n.apply(t, e); function _next(n) { asyncGeneratorStep(a, r, o, _next, _throw, "next", n); } function _throw(n) { asyncGeneratorStep(a, r, o, _next, _throw, "throw", n); } _next(void 0); }); }; }
8
15
  function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
@@ -30,6 +37,9 @@ var PageManager = /*#__PURE__*/function () {
30
37
  return _createClass(PageManager, [{
31
38
  key: "initHistory",
32
39
  value: function initHistory() {
40
+ if ("scrollRestoration" in history) {
41
+ history.scrollRestoration = "manual";
42
+ }
33
43
  var link = TUtil.getFullLink(document.URL);
34
44
  var st = history.state;
35
45
  if (!st || !st.link && !st.browserUrl) {
@@ -56,25 +66,32 @@ var PageManager = /*#__PURE__*/function () {
56
66
  var shouldReset,
57
67
  visibles,
58
68
  newVisibles,
59
- _args = arguments;
60
- return _regeneratorRuntime().wrap(function _callee$(_context) {
61
- while (1) switch (_context.prev = _context.next) {
69
+ restored,
70
+ _iterator,
71
+ _step,
72
+ _loop,
73
+ _iterator2,
74
+ _step2,
75
+ tmodel,
76
+ _args2 = arguments;
77
+ return _regeneratorRuntime().wrap(function _callee$(_context2) {
78
+ while (1) switch (_context2.prev = _context2.next) {
62
79
  case 0:
63
- shouldReset = _args.length > 1 && _args[1] !== undefined ? _args[1] : true;
80
+ shouldReset = _args2.length > 1 && _args2[1] !== undefined ? _args2[1] : true;
64
81
  if (!shouldReset) {
65
- _context.next = 7;
82
+ _context2.next = 7;
66
83
  break;
67
84
  }
68
- _context.next = 4;
85
+ _context2.next = 4;
69
86
  return tApp.stop();
70
87
  case 4:
71
88
  getLocationManager().cancelCurrentCalculation();
72
- _context.next = 7;
89
+ _context2.next = 7;
73
90
  return tApp.reset();
74
91
  case 7:
75
92
  link = TUtil.getFullLink(link);
76
93
  if (this.pageCache[link]) {
77
- _context.next = 18;
94
+ _context2.next = 18;
78
95
  break;
79
96
  }
80
97
  tApp.tRoot.$dom.innerHTML("");
@@ -82,10 +99,10 @@ var PageManager = /*#__PURE__*/function () {
82
99
  App.tmodelIdMap = {};
83
100
  tApp.tRoot = tApp.tRootFactory();
84
101
  this.lastLink = link;
85
- _context.next = 16;
102
+ _context2.next = 16;
86
103
  return tApp.start();
87
104
  case 16:
88
- _context.next = 35;
105
+ _context2.next = 52;
89
106
  break;
90
107
  case 18:
91
108
  tApp.tRoot = this.pageCache[link].tRoot;
@@ -95,30 +112,83 @@ var PageManager = /*#__PURE__*/function () {
95
112
  tApp.tRoot.$dom.innerHTML(this.pageCache[link].html);
96
113
  visibles = Object.values(this.pageCache[link].visibleOidMap);
97
114
  newVisibles = DomInit.initCacheDoms(visibles);
98
- visibles.forEach(function (tmodel) {
99
- tmodel.visibilityStatus = undefined;
115
+ restored = [].concat(visibles, _toConsumableArray(newVisibles));
116
+ _iterator = _createForOfIteratorHelper(restored);
117
+ _context2.prev = 27;
118
+ _loop = /*#__PURE__*/_regeneratorRuntime().mark(function _loop() {
119
+ var tmodel;
120
+ return _regeneratorRuntime().wrap(function _loop$(_context) {
121
+ while (1) switch (_context.prev = _context.next) {
122
+ case 0:
123
+ tmodel = _step.value;
124
+ tmodel.visibilityStatus = undefined;
125
+ if (!tmodel.hasDom()) {
126
+ tmodel.markLayoutDirty('pageRestoreNoDom');
127
+ }
128
+ if (tmodel.hasAnimatingTargets()) {
129
+ tmodel.getAnimatingTargets().forEach(function (key) {
130
+ tmodel.setTargetStatus(key, 'updating');
131
+ tmodel.removeFromAnimatingMap(key);
132
+ });
133
+ }
134
+ case 4:
135
+ case "end":
136
+ return _context.stop();
137
+ }
138
+ }, _loop);
100
139
  });
101
- tApp.manager.activatePendingTargetsAfterDom(visibles, {
102
- restoredDoneTargets: true
103
- });
104
- tApp.manager.activatePendingTargetsAfterDom(newVisibles, {
140
+ _iterator.s();
141
+ case 30:
142
+ if ((_step = _iterator.n()).done) {
143
+ _context2.next = 34;
144
+ break;
145
+ }
146
+ return _context2.delegateYield(_loop(), "t0", 32);
147
+ case 32:
148
+ _context2.next = 30;
149
+ break;
150
+ case 34:
151
+ _context2.next = 39;
152
+ break;
153
+ case 36:
154
+ _context2.prev = 36;
155
+ _context2.t1 = _context2["catch"](27);
156
+ _iterator.e(_context2.t1);
157
+ case 39:
158
+ _context2.prev = 39;
159
+ _iterator.f();
160
+ return _context2.finish(39);
161
+ case 42:
162
+ tApp.manager.visibleOidMap = {};
163
+ _iterator2 = _createForOfIteratorHelper(restored);
164
+ try {
165
+ for (_iterator2.s(); !(_step2 = _iterator2.n()).done;) {
166
+ tmodel = _step2.value;
167
+ if (tmodel.isIncluded()) {
168
+ tApp.manager.visibleOidMap[tmodel.oid] = tmodel;
169
+ }
170
+ }
171
+ } catch (err) {
172
+ _iterator2.e(err);
173
+ } finally {
174
+ _iterator2.f();
175
+ }
176
+ tApp.manager.activatePendingTargetsAfterDom(restored, {
105
177
  restoredDoneTargets: true
106
178
  });
107
- tApp.manager.visibleOidMap = _objectSpread({}, this.pageCache[link].visibleOidMap);
108
- newVisibles.forEach(function (visible) {
109
- tApp.manager.visibleOidMap[visible.oid] = visible;
110
- });
111
- window.scrollTo(this.pageCache[link].scrollLeft, this.pageCache[link].scrollTop);
112
179
  this.lastLink = link;
113
- _context.next = 34;
180
+ _context2.next = 49;
181
+ return this.restoreScroll(this.pageCache[link]);
182
+ case 49:
183
+ _context2.next = 51;
114
184
  return tApp.start();
115
- case 34:
185
+ case 51:
116
186
  getRunScheduler().restoreSnapshot(this.pageCache[link].runSnapshot);
117
- case 35:
187
+ case 52:
118
188
  case "end":
119
- return _context.stop();
189
+ return _context2.stop();
120
190
  }
121
- }, _callee, this);
191
+ }, _callee, this, [[27, 36, 39, 42]]);
122
192
  }));
123
193
  function openPage(_x) {
124
194
  return _openPage.apply(this, arguments);
@@ -130,26 +200,26 @@ var PageManager = /*#__PURE__*/function () {
130
200
  value: function () {
131
201
  var _openLinkFromHistory = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(state) {
132
202
  var link;
133
- return _regeneratorRuntime().wrap(function _callee2$(_context2) {
134
- while (1) switch (_context2.prev = _context2.next) {
203
+ return _regeneratorRuntime().wrap(function _callee2$(_context3) {
204
+ while (1) switch (_context3.prev = _context3.next) {
135
205
  case 0:
136
206
  link = state.link || state.browserUrl;
137
207
  if (link) {
138
- _context2.next = 3;
208
+ _context3.next = 3;
139
209
  break;
140
210
  }
141
- return _context2.abrupt("return");
211
+ return _context3.abrupt("return");
142
212
  case 3:
143
213
  if (state.browserUrl) {
144
214
  history.replaceState({
145
215
  link: link
146
216
  }, "", link);
147
217
  }
148
- _context2.next = 6;
218
+ _context3.next = 6;
149
219
  return this.openLink(link, false);
150
220
  case 6:
151
221
  case "end":
152
- return _context2.stop();
222
+ return _context3.stop();
153
223
  }
154
224
  }, _callee2, this);
155
225
  }));
@@ -174,18 +244,18 @@ var PageManager = /*#__PURE__*/function () {
174
244
  var updateHistory,
175
245
  runSnapshot,
176
246
  html,
177
- _args3 = arguments;
178
- return _regeneratorRuntime().wrap(function _callee3$(_context3) {
179
- while (1) switch (_context3.prev = _context3.next) {
247
+ _args4 = arguments;
248
+ return _regeneratorRuntime().wrap(function _callee3$(_context4) {
249
+ while (1) switch (_context4.prev = _context4.next) {
180
250
  case 0:
181
- updateHistory = _args3.length > 1 && _args3[1] !== undefined ? _args3[1] : true;
251
+ updateHistory = _args4.length > 1 && _args4[1] !== undefined ? _args4[1] : true;
182
252
  link = TUtil.getFullLink(link);
183
253
  if (!this.lastLink) {
184
- _context3.next = 14;
254
+ _context4.next = 14;
185
255
  break;
186
256
  }
187
257
  runSnapshot = getRunScheduler().getSnapshot();
188
- _context3.next = 6;
258
+ _context4.next = 6;
189
259
  return tApp.stop();
190
260
  case 6:
191
261
  getLocationManager().cancelCurrentCalculation();
@@ -204,7 +274,7 @@ var PageManager = /*#__PURE__*/function () {
204
274
  runSnapshot: runSnapshot
205
275
  };
206
276
  this.lastCachedLink = this.lastLink;
207
- _context3.next = 14;
277
+ _context4.next = 14;
208
278
  return tApp.reset();
209
279
  case 14:
210
280
  if (updateHistory) {
@@ -212,13 +282,13 @@ var PageManager = /*#__PURE__*/function () {
212
282
  link: link
213
283
  }, "", link);
214
284
  }
215
- _context3.next = 17;
285
+ _context4.next = 17;
216
286
  return this.openPage(link, false);
217
287
  case 17:
218
288
  getRunScheduler().schedule(0, "pagemanager-processOpenLink");
219
289
  case 18:
220
290
  case "end":
221
- return _context3.stop();
291
+ return _context4.stop();
222
292
  }
223
293
  }, _callee3, this);
224
294
  }));
@@ -253,6 +323,36 @@ var PageManager = /*#__PURE__*/function () {
253
323
  }
254
324
  getRunScheduler().schedule(0, "pagemanager-processUpdateBrowserUrl");
255
325
  }
326
+ }, {
327
+ key: "restoreScroll",
328
+ value: function () {
329
+ var _restoreScroll = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee4(page) {
330
+ var left, top;
331
+ return _regeneratorRuntime().wrap(function _callee4$(_context5) {
332
+ while (1) switch (_context5.prev = _context5.next) {
333
+ case 0:
334
+ left = page.scrollLeft || 0;
335
+ top = page.scrollTop || 0;
336
+ window.scrollTo(left, top);
337
+ _context5.next = 5;
338
+ return new Promise(requestAnimationFrame);
339
+ case 5:
340
+ window.scrollTo(left, top);
341
+ _context5.next = 8;
342
+ return new Promise(requestAnimationFrame);
343
+ case 8:
344
+ window.scrollTo(left, top);
345
+ case 9:
346
+ case "end":
347
+ return _context5.stop();
348
+ }
349
+ }, _callee4);
350
+ }));
351
+ function restoreScroll(_x4) {
352
+ return _restoreScroll.apply(this, arguments);
353
+ }
354
+ return restoreScroll;
355
+ }()
256
356
  }, {
257
357
  key: "back",
258
358
  value: function back() {
@@ -271,7 +271,6 @@ var TargetManager = /*#__PURE__*/function () {
271
271
  tmodel.addToStyleTargetList(key);
272
272
  targetValue.step = steps;
273
273
  targetValue.valuePointer = (_targetValue$valueLis2 = (_targetValue$valueLis3 = targetValue.valueList) === null || _targetValue$valueLis3 === void 0 ? void 0 : _targetValue$valueLis3.length) !== null && _targetValue$valueLis2 !== void 0 ? _targetValue$valueLis2 : valuePointer;
274
- targetValue.value = finalValue;
275
274
  targetValue.cycle = cycles;
276
275
  delete targetValue.catchupAt;
277
276
  if (fireEnd) {