@kontur.candy/generator 5.2.0-server-side-calculations.4 → 5.2.0-server-side-calculations.6

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.
Files changed (2) hide show
  1. package/dist/index.js +71 -36
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -59315,12 +59315,14 @@ __webpack_require__.r(__webpack_exports__);
59315
59315
  /* harmony export */ "AbsoluteModelFieldPath": () => (/* binding */ AbsoluteModelFieldPath),
59316
59316
  /* harmony export */ "ModelPathImpl": () => (/* binding */ ModelPathImpl)
59317
59317
  /* harmony export */ });
59318
- /* harmony import */ var _IterableUtils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../IterableUtils */ "./Common/IterableUtils.ts");
59319
- /* harmony import */ var _TypingUtils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../TypingUtils */ "./Common/TypingUtils.ts");
59320
- /* harmony import */ var _hashUtils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../hashUtils */ "./Common/hashUtils.ts");
59321
- /* harmony import */ var _EachCurrentCollision__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./EachCurrentCollision */ "./Common/ModelPath/EachCurrentCollision.ts");
59322
- /* harmony import */ var _ModelPathBuilder__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./ModelPathBuilder */ "./Common/ModelPath/ModelPathBuilder.ts");
59323
- /* harmony import */ var _PathMatcher__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./PathMatcher */ "./Common/ModelPath/PathMatcher.ts");
59318
+ /* harmony import */ var _Engine_src_Engine_Core_CoreTypes__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../Engine/src/Engine/Core/CoreTypes */ "./Engine/src/Engine/Core/CoreTypes.ts");
59319
+ /* harmony import */ var _IterableUtils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../IterableUtils */ "./Common/IterableUtils.ts");
59320
+ /* harmony import */ var _TypingUtils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../TypingUtils */ "./Common/TypingUtils.ts");
59321
+ /* harmony import */ var _hashUtils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../hashUtils */ "./Common/hashUtils.ts");
59322
+ /* harmony import */ var _EachCurrentCollision__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./EachCurrentCollision */ "./Common/ModelPath/EachCurrentCollision.ts");
59323
+ /* harmony import */ var _ModelPathBuilder__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./ModelPathBuilder */ "./Common/ModelPath/ModelPathBuilder.ts");
59324
+ /* harmony import */ var _PathMatcher__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./PathMatcher */ "./Common/ModelPath/PathMatcher.ts");
59325
+
59324
59326
 
59325
59327
 
59326
59328
 
@@ -59450,39 +59452,45 @@ class AbsoluteModelFieldPath {
59450
59452
  this.field = fieldName;
59451
59453
  }
59452
59454
  getHash() {
59453
- return this.path.getHash() + (0,_hashUtils__WEBPACK_IMPORTED_MODULE_2__.getSimpleHashByString)(this.field);
59455
+ return this.path.getHash() + (0,_hashUtils__WEBPACK_IMPORTED_MODULE_3__.getSimpleHashByString)(this.field);
59454
59456
  }
59455
- isEquals(modelPath, eachCurrentCollision = _EachCurrentCollision__WEBPACK_IMPORTED_MODULE_3__.EachCurrentCollision.AreSame) {
59457
+ isEquals(modelPath, eachCurrentCollision = _EachCurrentCollision__WEBPACK_IMPORTED_MODULE_4__.EachCurrentCollision.AreSame) {
59456
59458
  return this.path.isEquals(modelPath.path, eachCurrentCollision) && this.field === modelPath.field;
59457
59459
  }
59458
59460
  static createFromString(pathWithFieldName) {
59461
+ var _match$, _ref;
59459
59462
  if (pathWithFieldName.endsWith(".$errorCount")) {
59460
59463
  return new AbsoluteModelFieldPath(createAbsolute(pathWithFieldName.replace(".$errorCount", "")), "$errorCount");
59461
59464
  }
59462
59465
  if (pathWithFieldName.endsWith(".$warningCount")) {
59463
59466
  return new AbsoluteModelFieldPath(createAbsolute(pathWithFieldName.replace(".$warningCount", "")), "$warningCount");
59464
59467
  }
59465
- return new AbsoluteModelFieldPath(createAbsolute(pathWithFieldName), "value");
59468
+ const match = AbsoluteModelFieldPath.fieldExtractRegex.exec(pathWithFieldName);
59469
+ const path = match != undefined ? (_match$ = match[1]) !== null && _match$ !== void 0 ? _match$ : (0,_TypingUtils__WEBPACK_IMPORTED_MODULE_2__.reject)() : pathWithFieldName;
59470
+ const field = match != undefined ? (_ref = match[2]) !== null && _ref !== void 0 ? _ref : (0,_TypingUtils__WEBPACK_IMPORTED_MODULE_2__.reject)() : "value";
59471
+ return new AbsoluteModelFieldPath(createAbsolute(path), field);
59466
59472
  }
59467
59473
  static createFromMask(pathWithFieldName, multiplicitySymbol) {
59474
+ var _match$2, _ref2;
59468
59475
  if (pathWithFieldName.endsWith(".$errorCount")) {
59469
59476
  return new AbsoluteModelFieldPath(createAbsoluteFromMask(pathWithFieldName.replace(".$errorCount", ""), multiplicitySymbol), "$errorCount");
59470
59477
  }
59471
59478
  if (pathWithFieldName.endsWith(".$warningCount")) {
59472
59479
  return new AbsoluteModelFieldPath(createAbsoluteFromMask(pathWithFieldName.replace(".$warningCount", ""), multiplicitySymbol), "$warningCount");
59473
59480
  }
59474
- if (pathWithFieldName.endsWith(".errorsCount")) {
59475
- return new AbsoluteModelFieldPath(createAbsoluteFromMask(pathWithFieldName.replace(".errorsCount", ""), multiplicitySymbol), "errorsCount");
59476
- }
59477
- if (pathWithFieldName.endsWith(".warningsCount")) {
59478
- return new AbsoluteModelFieldPath(createAbsoluteFromMask(pathWithFieldName.replace(".warningsCount", ""), multiplicitySymbol), "warningsCount");
59479
- }
59480
- return new AbsoluteModelFieldPath(createAbsoluteFromMask(pathWithFieldName, multiplicitySymbol), "value");
59481
+ const match = AbsoluteModelFieldPath.fieldExtractRegex.exec(pathWithFieldName);
59482
+ const path = match != undefined ? (_match$2 = match[1]) !== null && _match$2 !== void 0 ? _match$2 : (0,_TypingUtils__WEBPACK_IMPORTED_MODULE_2__.reject)() : pathWithFieldName;
59483
+ const field = match != undefined ? (_ref2 = match[2]) !== null && _ref2 !== void 0 ? _ref2 : (0,_TypingUtils__WEBPACK_IMPORTED_MODULE_2__.reject)() : "value";
59484
+ return new AbsoluteModelFieldPath(createAbsoluteFromMask(path, multiplicitySymbol), field);
59481
59485
  }
59482
59486
  toString() {
59483
59487
  return `${this.path.toLegacyPath()}.${this.field}`;
59484
59488
  }
59489
+ toLegacyPath() {
59490
+ return `${this.path.toLegacyPath()}.${this.field}`;
59491
+ }
59485
59492
  }
59493
+ AbsoluteModelFieldPath.fieldExtractRegex = new RegExp(`^(.*)\\.(${(0,_Engine_src_Engine_Core_CoreTypes__WEBPACK_IMPORTED_MODULE_0__.getKnownViewModelFieldNames)().join("|")})$`);
59486
59494
  function isAllTokensResolved(tokens) {
59487
59495
  // Я что-то немогу сообразить как тут всё строго написать...
59488
59496
  // @ts-expect-error
@@ -59557,7 +59565,7 @@ class ModelPathImpl {
59557
59565
  return this.tokens.slice(0, lastIterationIndex);
59558
59566
  }
59559
59567
  isEndsWithIteration() {
59560
- const lastItem = _IterableUtils__WEBPACK_IMPORTED_MODULE_0__.IterUtils.last(this.tokens);
59568
+ const lastItem = _IterableUtils__WEBPACK_IMPORTED_MODULE_1__.IterUtils.last(this.tokens);
59561
59569
  return lastItem == PathTokens.each;
59562
59570
  }
59563
59571
  isAbsolute() {
@@ -59573,25 +59581,25 @@ class ModelPathImpl {
59573
59581
  var _this$legacyPath;
59574
59582
  return (_this$legacyPath = this.legacyPath) !== null && _this$legacyPath !== void 0 ? _this$legacyPath : this.legacyPath = this.tokens.map(x => this.pathPartToString(x)).join("/");
59575
59583
  }
59576
- isEquals(modelPath, eachCurrentCollision = _EachCurrentCollision__WEBPACK_IMPORTED_MODULE_3__.EachCurrentCollision.AreSame) {
59577
- if (eachCurrentCollision === _EachCurrentCollision__WEBPACK_IMPORTED_MODULE_3__.EachCurrentCollision.AreSame) {
59584
+ isEquals(modelPath, eachCurrentCollision = _EachCurrentCollision__WEBPACK_IMPORTED_MODULE_4__.EachCurrentCollision.AreSame) {
59585
+ if (eachCurrentCollision === _EachCurrentCollision__WEBPACK_IMPORTED_MODULE_4__.EachCurrentCollision.AreSame) {
59578
59586
  return this.toLegacyPath() === modelPath.toLegacyPath();
59579
59587
  } else {
59580
- return this.isAbsolute() === modelPath.isAbsolute() && Iterator.from(_IterableUtils__WEBPACK_IMPORTED_MODULE_0__.IterUtils.zip(this.getPathParts(), modelPath.getPathParts())).every(([t1, t2]) => t1 === t2);
59588
+ return this.isAbsolute() === modelPath.isAbsolute() && Iterator.from(_IterableUtils__WEBPACK_IMPORTED_MODULE_1__.IterUtils.zip(this.getPathParts(), modelPath.getPathParts())).every(([t1, t2]) => t1 === t2);
59581
59589
  }
59582
59590
  }
59583
59591
 
59584
59592
  /**
59585
59593
  * Всегда целое положительное беззнаковое 32-битное число
59586
59594
  */
59587
- getHash(eachCurrentCollision = _EachCurrentCollision__WEBPACK_IMPORTED_MODULE_3__.EachCurrentCollision.AreSame) {
59595
+ getHash(eachCurrentCollision = _EachCurrentCollision__WEBPACK_IMPORTED_MODULE_4__.EachCurrentCollision.AreSame) {
59588
59596
  let hash = 5381;
59589
- for (const token of (0,_IterableUtils__WEBPACK_IMPORTED_MODULE_0__.reverseArray)(this.tokens)) {
59597
+ for (const token of (0,_IterableUtils__WEBPACK_IMPORTED_MODULE_1__.reverseArray)(this.tokens)) {
59590
59598
  let currentStr;
59591
59599
  if (PathTokens.isSimpleToken(token)) {
59592
59600
  currentStr = token;
59593
59601
  } else {
59594
- if (eachCurrentCollision === _EachCurrentCollision__WEBPACK_IMPORTED_MODULE_3__.EachCurrentCollision.AreDifferent) {
59602
+ if (eachCurrentCollision === _EachCurrentCollision__WEBPACK_IMPORTED_MODULE_4__.EachCurrentCollision.AreDifferent) {
59595
59603
  currentStr = token === PathTokens.each ? "*" : "!";
59596
59604
  } else {
59597
59605
  currentStr = "*";
@@ -59645,8 +59653,8 @@ class ModelPathImpl {
59645
59653
  }
59646
59654
  return true;
59647
59655
  }
59648
- getIterationRank(eachCurrentCollision = _EachCurrentCollision__WEBPACK_IMPORTED_MODULE_3__.EachCurrentCollision.AreDifferent) {
59649
- return (0,_IterableUtils__WEBPACK_IMPORTED_MODULE_0__.count)(Iterator.from(this.tokens).filter(x => eachCurrentCollision == _EachCurrentCollision__WEBPACK_IMPORTED_MODULE_3__.EachCurrentCollision.AreDifferent ? x === PathTokens.each : PathTokens.isMultiToken(x)));
59656
+ getIterationRank(eachCurrentCollision = _EachCurrentCollision__WEBPACK_IMPORTED_MODULE_4__.EachCurrentCollision.AreDifferent) {
59657
+ return (0,_IterableUtils__WEBPACK_IMPORTED_MODULE_1__.count)(Iterator.from(this.tokens).filter(x => eachCurrentCollision == _EachCurrentCollision__WEBPACK_IMPORTED_MODULE_4__.EachCurrentCollision.AreDifferent ? x === PathTokens.each : PathTokens.isMultiToken(x)));
59650
59658
  }
59651
59659
  isEmpty() {
59652
59660
  return this.tokens.length === 0;
@@ -59658,17 +59666,17 @@ class ModelPathImpl {
59658
59666
  if (!modelPath.isAbsolute()) {
59659
59667
  throw new Error(`Cannot match non absolute path '${modelPath.toString()}'`);
59660
59668
  }
59661
- return _PathMatcher__WEBPACK_IMPORTED_MODULE_5__.PathMatcher.match(this.tokens, modelPath.getPathPartsAsArray());
59669
+ return _PathMatcher__WEBPACK_IMPORTED_MODULE_6__.PathMatcher.match(this.tokens, modelPath.getPathPartsAsArray());
59662
59670
  }
59663
59671
  *splitByMultiplicity() {
59664
- let lastSimpleParts = new _ModelPathBuilder__WEBPACK_IMPORTED_MODULE_4__.ModelPathBuilder(this.isAbsolute());
59672
+ let lastSimpleParts = new _ModelPathBuilder__WEBPACK_IMPORTED_MODULE_5__.ModelPathBuilder(this.isAbsolute());
59665
59673
  for (const token of this.tokens) {
59666
59674
  if (PathTokens.isSimpleToken(token)) {
59667
59675
  lastSimpleParts.append(token);
59668
59676
  } else {
59669
59677
  if (!lastSimpleParts.empty) {
59670
59678
  yield lastSimpleParts.toResolvedPath();
59671
- lastSimpleParts = new _ModelPathBuilder__WEBPACK_IMPORTED_MODULE_4__.ModelPathBuilder(false);
59679
+ lastSimpleParts = new _ModelPathBuilder__WEBPACK_IMPORTED_MODULE_5__.ModelPathBuilder(false);
59672
59680
  }
59673
59681
  yield token;
59674
59682
  }
@@ -59728,22 +59736,22 @@ class ModelPathImpl {
59728
59736
  return new ModelPathImpl(this.tokens, true);
59729
59737
  }
59730
59738
  *getAllParentPaths() {
59731
- const result = new _ModelPathBuilder__WEBPACK_IMPORTED_MODULE_4__.ModelPathBuilder(this.isAbsolute());
59732
- for (const token of _IterableUtils__WEBPACK_IMPORTED_MODULE_0__.IterUtils.skipLast(this.getPathParts(), 1)) {
59739
+ const result = new _ModelPathBuilder__WEBPACK_IMPORTED_MODULE_5__.ModelPathBuilder(this.isAbsolute());
59740
+ for (const token of _IterableUtils__WEBPACK_IMPORTED_MODULE_1__.IterUtils.skipLast(this.getPathParts(), 1)) {
59733
59741
  result.append(token);
59734
59742
  yield result.toPath();
59735
59743
  }
59736
59744
  }
59737
59745
  trimLastStarIfLastToken() {
59738
- const lastItem = _IterableUtils__WEBPACK_IMPORTED_MODULE_0__.IterUtils.last(this.tokens);
59746
+ const lastItem = _IterableUtils__WEBPACK_IMPORTED_MODULE_1__.IterUtils.last(this.tokens);
59739
59747
  if (lastItem != undefined && PathTokens.isMultiToken(lastItem)) {
59740
59748
  return new ModelPathImpl(this.tokens.slice(0, -1), this.absolute);
59741
59749
  }
59742
59750
  return this;
59743
59751
  }
59744
59752
  getParentPath() {
59745
- const result = new _ModelPathBuilder__WEBPACK_IMPORTED_MODULE_4__.ModelPathBuilder(this.absolute);
59746
- for (const token of _IterableUtils__WEBPACK_IMPORTED_MODULE_0__.IterUtils.skipLast(this.getPathParts(), 1)) {
59753
+ const result = new _ModelPathBuilder__WEBPACK_IMPORTED_MODULE_5__.ModelPathBuilder(this.absolute);
59754
+ for (const token of _IterableUtils__WEBPACK_IMPORTED_MODULE_1__.IterUtils.skipLast(this.getPathParts(), 1)) {
59747
59755
  result.append(token);
59748
59756
  }
59749
59757
  // Тут получается так, что по другому никак
@@ -59755,11 +59763,11 @@ class ModelPathImpl {
59755
59763
  return this;
59756
59764
  }
59757
59765
  let instanceCounter = 0;
59758
- const result = new _ModelPathBuilder__WEBPACK_IMPORTED_MODULE_4__.ModelPathBuilder(true);
59766
+ const result = new _ModelPathBuilder__WEBPACK_IMPORTED_MODULE_5__.ModelPathBuilder(true);
59759
59767
  for (const token of this.getPathParts()) {
59760
59768
  if (PathTokens.isMultiToken(token) && instanceCounter < instances.length) {
59761
59769
  var _instances$instanceCo;
59762
- result.append((_instances$instanceCo = instances[instanceCounter]) !== null && _instances$instanceCo !== void 0 ? _instances$instanceCo : (0,_TypingUtils__WEBPACK_IMPORTED_MODULE_1__.reject)());
59770
+ result.append((_instances$instanceCo = instances[instanceCounter]) !== null && _instances$instanceCo !== void 0 ? _instances$instanceCo : (0,_TypingUtils__WEBPACK_IMPORTED_MODULE_2__.reject)());
59763
59771
  instanceCounter++;
59764
59772
  } else {
59765
59773
  result.append(token);
@@ -59779,7 +59787,7 @@ class ModelPathImpl {
59779
59787
  if (pathPart === PathTokens.current) {
59780
59788
  return "*";
59781
59789
  }
59782
- throw new Error(`Unknown path part specified: ${(0,_TypingUtils__WEBPACK_IMPORTED_MODULE_1__.ensureAndGetString)(pathPart)}`);
59790
+ throw new Error(`Unknown path part specified: ${(0,_TypingUtils__WEBPACK_IMPORTED_MODULE_2__.ensureAndGetString)(pathPart)}`);
59783
59791
  }
59784
59792
  }
59785
59793
 
@@ -60425,6 +60433,33 @@ function isMatchAbbreviation(abbreviation, value) {
60425
60433
 
60426
60434
  /***/ }),
60427
60435
 
60436
+ /***/ "./Engine/src/Engine/Core/CoreTypes.ts":
60437
+ /*!*********************************************!*\
60438
+ !*** ./Engine/src/Engine/Core/CoreTypes.ts ***!
60439
+ \*********************************************/
60440
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
60441
+
60442
+ "use strict";
60443
+ __webpack_require__.r(__webpack_exports__);
60444
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
60445
+ /* harmony export */ "nonRegularFieldName": () => (/* binding */ nonRegularFieldName),
60446
+ /* harmony export */ "getKnownViewModelFieldNames": () => (/* binding */ getKnownViewModelFieldNames)
60447
+ /* harmony export */ });
60448
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
60449
+
60450
+ // Эту модель, которая лежит в redux-состоянии в поле viewModel, каждый узел кроме . является ViewModel
60451
+
60452
+ function nonRegularFieldName(fieldName) {
60453
+ // @ts-ignore
60454
+ return fieldName;
60455
+ }
60456
+ function getKnownViewModelFieldNames() {
60457
+ const names = ["children", "error", "warning", "description", "id", "disabled", "visible", "disabledSending", "value", "autoValue", "autoFlag", "resourcesHash", "errorsCount", "warningsCount", "code", "picklist", "normalized", "emptyUnitsVisible", "pencilOpened", "ignoreAutoFlag", "disableValueAutoInit", "index", "regionCode", "district", "city", "settlement", "street", "house", "building", "room", "bossValue", "agentValue", "senderInn", "nameorg", "sum", "count", "normalizationSource", "referencedId"];
60458
+ return names;
60459
+ }
60460
+
60461
+ /***/ }),
60462
+
60428
60463
  /***/ "./Engine/src/Engine/Core/ModalManager/Modals/Utils/Types.ts":
60429
60464
  /*!*******************************************************************!*\
60430
60465
  !*** ./Engine/src/Engine/Core/ModalManager/Modals/Utils/Types.ts ***!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kontur.candy/generator",
3
- "version": "5.2.0-server-side-calculations.4",
3
+ "version": "5.2.0-server-side-calculations.6",
4
4
  "description": "Candy forms generator",
5
5
  "author": "SKBKontur Candy Team",
6
6
  "private": false,