@intuitionrobotics/thunderstorm 0.41.67 → 0.41.70

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 (167) hide show
  1. package/app-backend/api/v1/utils/version/_assert.js +1 -1
  2. package/app-backend/api/v1/utils/version/_assert.js.map +1 -1
  3. package/app-backend/api/v1/utils/version/assert.js +13 -58
  4. package/app-backend/api/v1/utils/version/assert.js.map +1 -1
  5. package/app-backend/core/BaseStorm.js +34 -87
  6. package/app-backend/core/BaseStorm.js.map +1 -1
  7. package/app-backend/core/Storm.js +42 -112
  8. package/app-backend/core/Storm.js.map +1 -1
  9. package/app-backend/exceptions.js +11 -27
  10. package/app-backend/exceptions.js.map +1 -1
  11. package/app-backend/modules/CleanupScheduler.js +24 -92
  12. package/app-backend/modules/CleanupScheduler.js.map +1 -1
  13. package/app-backend/modules/FirestoreBackupScheduler.js +47 -138
  14. package/app-backend/modules/FirestoreBackupScheduler.js.map +1 -1
  15. package/app-backend/modules/ForceUpgrade.js +31 -82
  16. package/app-backend/modules/ForceUpgrade.js.map +1 -1
  17. package/app-backend/modules/http/AxiosHttpModule.js +116 -184
  18. package/app-backend/modules/http/AxiosHttpModule.js.map +1 -1
  19. package/app-backend/modules/proxy/RemoteProxy.js +40 -90
  20. package/app-backend/modules/proxy/RemoteProxy.js.map +1 -1
  21. package/app-backend/modules/proxy/RemoteProxyCaller.js +49 -122
  22. package/app-backend/modules/proxy/RemoteProxyCaller.js.map +1 -1
  23. package/app-backend/modules/server/HttpServer.js +153 -216
  24. package/app-backend/modules/server/HttpServer.js.map +1 -1
  25. package/app-backend/modules/server/server-api.js +236 -361
  26. package/app-backend/modules/server/server-api.js.map +1 -1
  27. package/app-backend/modules/server/server-errors.js +51 -91
  28. package/app-backend/modules/server/server-errors.js.map +1 -1
  29. package/app-backend/utils/LogClient_File.js +23 -42
  30. package/app-backend/utils/LogClient_File.js.map +1 -1
  31. package/app-backend/utils/file.js +7 -50
  32. package/app-backend/utils/file.js.map +1 -1
  33. package/app-backend/utils/promisify-request.js +13 -43
  34. package/app-backend/utils/promisify-request.js.map +1 -1
  35. package/app-backend/utils/to-be-removed.js +7 -8
  36. package/app-backend/utils/to-be-removed.js.map +1 -1
  37. package/app-backend/utils/types.js +1 -1
  38. package/app-backend/utils/types.js.map +1 -1
  39. package/app-frontend/components/ActionButton.js +5 -5
  40. package/app-frontend/components/ActionButton.js.map +1 -1
  41. package/app-frontend/components/DropDown.js +91 -119
  42. package/app-frontend/components/DropDown.js.map +1 -1
  43. package/app-frontend/components/FilterInput.js +31 -48
  44. package/app-frontend/components/FilterInput.js.map +1 -1
  45. package/app-frontend/components/GenericSelect.js +30 -59
  46. package/app-frontend/components/GenericSelect.js.map +1 -1
  47. package/app-frontend/components/GenericTabs.js +5 -23
  48. package/app-frontend/components/GenericTabs.js.map +1 -1
  49. package/app-frontend/components/Overlay.js +15 -34
  50. package/app-frontend/components/Overlay.js.map +1 -1
  51. package/app-frontend/components/TS_Input.js +43 -60
  52. package/app-frontend/components/TS_Input.js.map +1 -1
  53. package/app-frontend/components/TS_Table.js +31 -48
  54. package/app-frontend/components/TS_Table.js.map +1 -1
  55. package/app-frontend/components/TS_TextArea.js +21 -48
  56. package/app-frontend/components/TS_TextArea.js.map +1 -1
  57. package/app-frontend/components/Tabs.js +16 -33
  58. package/app-frontend/components/Tabs.js.map +1 -1
  59. package/app-frontend/components/adapter/Adapter.js +103 -154
  60. package/app-frontend/components/adapter/Adapter.js.map +1 -1
  61. package/app-frontend/components/adapter/BaseRenderer.js +9 -32
  62. package/app-frontend/components/adapter/BaseRenderer.js.map +1 -1
  63. package/app-frontend/components/checkbox/TS_Checkbox.js +12 -29
  64. package/app-frontend/components/checkbox/TS_Checkbox.js.map +1 -1
  65. package/app-frontend/components/checkbox/TS_CheckboxField.js +16 -34
  66. package/app-frontend/components/checkbox/TS_CheckboxField.js.map +1 -1
  67. package/app-frontend/components/form/Form.js +21 -39
  68. package/app-frontend/components/form/Form.js.map +1 -1
  69. package/app-frontend/components/playground/Example_NewProps.js +25 -53
  70. package/app-frontend/components/playground/Example_NewProps.js.map +1 -1
  71. package/app-frontend/components/playground/Playground.js +21 -49
  72. package/app-frontend/components/playground/Playground.js.map +1 -1
  73. package/app-frontend/components/tree/MenuComponent.js +11 -27
  74. package/app-frontend/components/tree/MenuComponent.js.map +1 -1
  75. package/app-frontend/components/tree/MultiTypeAdaptor.js +16 -32
  76. package/app-frontend/components/tree/MultiTypeAdaptor.js.map +1 -1
  77. package/app-frontend/components/tree/SimpleTreeNodeRenderer.js +18 -52
  78. package/app-frontend/components/tree/SimpleTreeNodeRenderer.js.map +1 -1
  79. package/app-frontend/components/tree/Tree.js +142 -178
  80. package/app-frontend/components/tree/Tree.js.map +1 -1
  81. package/app-frontend/components/treeicons.js +5 -5
  82. package/app-frontend/components/treeicons.js.map +1 -1
  83. package/app-frontend/core/AbstractThunder.js +27 -43
  84. package/app-frontend/core/AbstractThunder.js.map +1 -1
  85. package/app-frontend/core/AppPage.js +16 -32
  86. package/app-frontend/core/AppPage.js.map +1 -1
  87. package/app-frontend/core/AppWrapper.js +9 -10
  88. package/app-frontend/core/AppWrapper.js.map +1 -1
  89. package/app-frontend/core/BaseComponent.js +62 -106
  90. package/app-frontend/core/BaseComponent.js.map +1 -1
  91. package/app-frontend/core/SimpleScriptInjector.js +12 -31
  92. package/app-frontend/core/SimpleScriptInjector.js.map +1 -1
  93. package/app-frontend/core/Thunder.js +32 -48
  94. package/app-frontend/core/Thunder.js.map +1 -1
  95. package/app-frontend/core/thunder-dispatcher.js +18 -67
  96. package/app-frontend/core/thunder-dispatcher.js.map +1 -1
  97. package/app-frontend/modules/ConnectivityModule.js +16 -32
  98. package/app-frontend/modules/ConnectivityModule.js.map +1 -1
  99. package/app-frontend/modules/ForceUpgrade.js +17 -33
  100. package/app-frontend/modules/ForceUpgrade.js.map +1 -1
  101. package/app-frontend/modules/HistoryModule.js +51 -79
  102. package/app-frontend/modules/HistoryModule.js.map +1 -1
  103. package/app-frontend/modules/ResourcesModule.js +12 -28
  104. package/app-frontend/modules/ResourcesModule.js.map +1 -1
  105. package/app-frontend/modules/StorageModule.js +47 -68
  106. package/app-frontend/modules/StorageModule.js.map +1 -1
  107. package/app-frontend/modules/ThunderstormModule.js +15 -31
  108. package/app-frontend/modules/ThunderstormModule.js.map +1 -1
  109. package/app-frontend/modules/component-loader/ReactEntryComponentInjector.js +24 -41
  110. package/app-frontend/modules/component-loader/ReactEntryComponentInjector.js.map +1 -1
  111. package/app-frontend/modules/component-loader/entry-component-loading-module.js +19 -36
  112. package/app-frontend/modules/component-loader/entry-component-loading-module.js.map +1 -1
  113. package/app-frontend/modules/dialog/Dialog.js +55 -96
  114. package/app-frontend/modules/dialog/Dialog.js.map +1 -1
  115. package/app-frontend/modules/dialog/DialogModule.js +48 -84
  116. package/app-frontend/modules/dialog/DialogModule.js.map +1 -1
  117. package/app-frontend/modules/http/HttpClient.js +46 -93
  118. package/app-frontend/modules/http/HttpClient.js.map +1 -1
  119. package/app-frontend/modules/http/XhrHttpModule.js +66 -88
  120. package/app-frontend/modules/http/XhrHttpModule.js.map +1 -1
  121. package/app-frontend/modules/locale/LocaleModule.js +23 -50
  122. package/app-frontend/modules/locale/LocaleModule.js.map +1 -1
  123. package/app-frontend/modules/menu/MenuAndButton.js +23 -40
  124. package/app-frontend/modules/menu/MenuAndButton.js.map +1 -1
  125. package/app-frontend/modules/menu/MenuModule.js +25 -42
  126. package/app-frontend/modules/menu/MenuModule.js.map +1 -1
  127. package/app-frontend/modules/menu/PopupMenu.js +37 -64
  128. package/app-frontend/modules/menu/PopupMenu.js.map +1 -1
  129. package/app-frontend/modules/routing/RoutingModule.js +47 -66
  130. package/app-frontend/modules/routing/RoutingModule.js.map +1 -1
  131. package/app-frontend/modules/routing/route.js +31 -33
  132. package/app-frontend/modules/routing/route.js.map +1 -1
  133. package/app-frontend/modules/toaster/BaseToaster.js +18 -36
  134. package/app-frontend/modules/toaster/BaseToaster.js.map +1 -1
  135. package/app-frontend/modules/toaster/Toaster.js +12 -38
  136. package/app-frontend/modules/toaster/Toaster.js.map +1 -1
  137. package/app-frontend/modules/toaster/ToasterModule.js +61 -88
  138. package/app-frontend/modules/toaster/ToasterModule.js.map +1 -1
  139. package/app-frontend/modules/tooltip/Tooltip.js +25 -52
  140. package/app-frontend/modules/tooltip/Tooltip.js.map +1 -1
  141. package/app-frontend/modules/tooltip/TooltipModule.js +32 -51
  142. package/app-frontend/modules/tooltip/TooltipModule.js.map +1 -1
  143. package/app-frontend/tools/KeyboardListener.js +24 -41
  144. package/app-frontend/tools/KeyboardListener.js.map +1 -1
  145. package/app-frontend/tools/Stylable.js +14 -28
  146. package/app-frontend/tools/Stylable.js.map +1 -1
  147. package/app-frontend/utils/tools.js +8 -8
  148. package/app-frontend/utils/tools.js.map +1 -1
  149. package/app-frontend/widgets/FieldEditor.js +16 -32
  150. package/app-frontend/widgets/FieldEditor.js.map +1 -1
  151. package/app-frontend/widgets/FieldEditorClick.js +32 -49
  152. package/app-frontend/widgets/FieldEditorClick.js.map +1 -1
  153. package/app-frontend/widgets/FieldEditorWithButtons.js +33 -49
  154. package/app-frontend/widgets/FieldEditorWithButtons.js.map +1 -1
  155. package/app-frontend/widgets/click-to-drag/ClickToDrag.js +25 -41
  156. package/app-frontend/widgets/click-to-drag/ClickToDrag.js.map +1 -1
  157. package/app-frontend/widgets/click-to-drag/OverlayWithDocumentListener.js +22 -38
  158. package/app-frontend/widgets/click-to-drag/OverlayWithDocumentListener.js.map +1 -1
  159. package/package.json +4 -4
  160. package/shared/BaseHttpModule.js +44 -64
  161. package/shared/BaseHttpModule.js.map +1 -1
  162. package/shared/BaseHttpRequest.js +122 -176
  163. package/shared/BaseHttpRequest.js.map +1 -1
  164. package/shared/request-types.js +4 -19
  165. package/shared/request-types.js.map +1 -1
  166. package/test-backend/StormTester.js +37 -90
  167. package/test-backend/StormTester.js.map +1 -1
@@ -1,28 +1,4 @@
1
1
  "use strict";
2
- var __extends = (this && this.__extends) || (function () {
3
- var extendStatics = function (d, b) {
4
- extendStatics = Object.setPrototypeOf ||
5
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
- return extendStatics(d, b);
8
- };
9
- return function (d, b) {
10
- extendStatics(d, b);
11
- function __() { this.constructor = d; }
12
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
13
- };
14
- })();
15
- var __assign = (this && this.__assign) || function () {
16
- __assign = Object.assign || function(t) {
17
- for (var s, i = 1, n = arguments.length; i < n; i++) {
18
- s = arguments[i];
19
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
20
- t[p] = s[p];
21
- }
22
- return t;
23
- };
24
- return __assign.apply(this, arguments);
25
- };
26
2
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
27
3
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
28
4
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -32,33 +8,6 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
32
8
  step((generator = generator.apply(thisArg, _arguments || [])).next());
33
9
  });
34
10
  };
35
- var __generator = (this && this.__generator) || function (thisArg, body) {
36
- var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
37
- return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
38
- function verb(n) { return function (v) { return step([n, v]); }; }
39
- function step(op) {
40
- if (f) throw new TypeError("Generator is already executing.");
41
- while (_) try {
42
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
43
- if (y = 0, t) op = [op[0] & 2, t.value];
44
- switch (op[0]) {
45
- case 0: case 1: t = op; break;
46
- case 4: _.label++; return { value: op[1], done: false };
47
- case 5: _.label++; y = op[1]; op = [0]; continue;
48
- case 7: op = _.ops.pop(); _.trys.pop(); continue;
49
- default:
50
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
51
- if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
52
- if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
53
- if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
54
- if (t[2]) _.ops.pop();
55
- _.trys.pop(); continue;
56
- }
57
- op = body.call(thisArg, _);
58
- } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
59
- if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
60
- }
61
- };
62
11
  Object.defineProperty(exports, "__esModule", { value: true });
63
12
  exports.RemoteProxyCaller = void 0;
64
13
  /*
@@ -81,76 +30,55 @@ exports.RemoteProxyCaller = void 0;
81
30
  * See the License for the specific language governing permissions and
82
31
  * limitations under the License.
83
32
  */
84
- var ts_common_1 = require("@intuitionrobotics/ts-common");
85
- var promisify_request_1 = require("../../utils/promisify-request");
86
- var exceptions_1 = require("../../exceptions");
87
- var RemoteProxyCaller = /** @class */ (function (_super) {
88
- __extends(RemoteProxyCaller, _super);
89
- function RemoteProxyCaller() {
90
- var _this = _super !== null && _super.apply(this, arguments) || this;
91
- _this.executeGetRequest = function (url, _params, _headers) { return __awaiter(_this, void 0, void 0, function () {
92
- var params, urlParams, proxyRequest;
93
- var _a;
94
- return __generator(this, function (_b) {
95
- switch (_b.label) {
96
- case 0:
97
- params = _params && Object.keys(_params).map(function (key) {
98
- return key + "=" + _params[key];
99
- });
100
- urlParams = "";
101
- if (params && params.length > 0)
102
- urlParams = "?" + params.join("&");
103
- proxyRequest = {
104
- headers: __assign(__assign({}, _headers), (_a = {}, _a[this.config.secretHeaderName] = this.config.secret, _a[this.config.proxyHeaderName] = this.config.proxyId, _a)),
105
- uri: "" + this.config.url + url + urlParams,
106
- method: 'GET',
107
- json: true
108
- };
109
- return [4 /*yield*/, this.executeRequest(proxyRequest)];
110
- case 1: return [2 /*return*/, _b.sent()];
111
- }
33
+ const ts_common_1 = require("@intuitionrobotics/ts-common");
34
+ const promisify_request_1 = require("../../utils/promisify-request");
35
+ const exceptions_1 = require("../../exceptions");
36
+ class RemoteProxyCaller extends ts_common_1.Module {
37
+ constructor() {
38
+ super(...arguments);
39
+ this.executeGetRequest = (url, _params, _headers) => __awaiter(this, void 0, void 0, function* () {
40
+ const params = _params && Object.keys(_params).map((key) => {
41
+ return `${key}=${_params[key]}`;
112
42
  });
113
- }); };
114
- _this.executePostRequest = function (url, body, _headers) { return __awaiter(_this, void 0, void 0, function () {
115
- var proxyRequest;
116
- var _a;
117
- return __generator(this, function (_b) {
118
- proxyRequest = {
119
- headers: __assign(__assign({}, _headers), (_a = { 'Content-Type': 'application/json' }, _a[this.config.secretHeaderName] = this.config.secret, _a[this.config.proxyHeaderName] = this.config.proxyId, _a)),
120
- json: true,
121
- uri: "" + this.config.url + url,
122
- body: body,
123
- method: 'POST'
124
- };
125
- return [2 /*return*/, this.executeRequest(proxyRequest)];
126
- });
127
- }); };
128
- _this.executeRequest = function (proxyRequest) { return __awaiter(_this, void 0, void 0, function () {
129
- var response, errorResponse, e;
130
- return __generator(this, function (_a) {
131
- switch (_a.label) {
132
- case 0: return [4 /*yield*/, promisify_request_1.promisifyRequest(proxyRequest, false)];
133
- case 1:
134
- response = _a.sent();
135
- if (proxyRequest.headers)
136
- delete proxyRequest.headers[this.config.secretHeaderName];
137
- if (response.statusCode !== 200) {
138
- errorResponse = void 0;
139
- errorResponse = response.body;
140
- if (!errorResponse)
141
- throw new exceptions_1.ApiException(500, "Extraneous error " + ts_common_1.__stringify(response) + ", Proxy Request: " + ts_common_1.__stringify(proxyRequest, true));
142
- e = new exceptions_1.ApiException(response.statusCode, "Redirect proxy error: " + errorResponse.debugMessage + " \n Proxy Request: " + ts_common_1.__stringify(proxyRequest, true));
143
- if (errorResponse.error)
144
- e.setErrorBody(errorResponse.error);
145
- throw e;
146
- }
147
- return [2 /*return*/, response.toJSON().body];
148
- }
149
- });
150
- }); };
151
- return _this;
43
+ let urlParams = "";
44
+ if (params && params.length > 0)
45
+ urlParams = `?${params.join("&")}`;
46
+ const proxyRequest = {
47
+ headers: Object.assign(Object.assign({}, _headers), { [this.config.secretHeaderName]: this.config.secret, [this.config.proxyHeaderName]: this.config.proxyId }),
48
+ uri: `${this.config.url}${url}${urlParams}`,
49
+ method: 'GET',
50
+ json: true
51
+ };
52
+ return yield this.executeRequest(proxyRequest);
53
+ });
54
+ this.executePostRequest = (url, body, _headers) => __awaiter(this, void 0, void 0, function* () {
55
+ const proxyRequest = {
56
+ headers: Object.assign(Object.assign({}, _headers), { 'Content-Type': 'application/json', [this.config.secretHeaderName]: this.config.secret, [this.config.proxyHeaderName]: this.config.proxyId }),
57
+ json: true,
58
+ uri: `${this.config.url}${url}`,
59
+ body: body,
60
+ method: 'POST'
61
+ };
62
+ return this.executeRequest(proxyRequest);
63
+ });
64
+ this.executeRequest = (proxyRequest) => __awaiter(this, void 0, void 0, function* () {
65
+ const response = yield promisify_request_1.promisifyRequest(proxyRequest, false);
66
+ if (proxyRequest.headers)
67
+ delete proxyRequest.headers[this.config.secretHeaderName];
68
+ if (response.statusCode !== 200) {
69
+ let errorResponse;
70
+ errorResponse = response.body;
71
+ if (!errorResponse)
72
+ throw new exceptions_1.ApiException(500, `Extraneous error ${ts_common_1.__stringify(response)}, Proxy Request: ${ts_common_1.__stringify(proxyRequest, true)}`);
73
+ const e = new exceptions_1.ApiException(response.statusCode, `Redirect proxy error: ${errorResponse.debugMessage} \n Proxy Request: ${ts_common_1.__stringify(proxyRequest, true)}`);
74
+ if (errorResponse.error)
75
+ e.setErrorBody(errorResponse.error);
76
+ throw e;
77
+ }
78
+ return response.toJSON().body;
79
+ });
152
80
  }
153
- RemoteProxyCaller.prototype.init = function () {
81
+ init() {
154
82
  if (!this.config)
155
83
  throw new ts_common_1.ImplementationMissingException("MUST specify config for this module!!");
156
84
  if (!this.config.proxyId)
@@ -163,8 +91,7 @@ var RemoteProxyCaller = /** @class */ (function (_super) {
163
91
  this.config.secretHeaderName = 'x-secret';
164
92
  if (!this.config.proxyHeaderName)
165
93
  this.config.proxyHeaderName = 'x-proxy';
166
- };
167
- return RemoteProxyCaller;
168
- }(ts_common_1.Module));
94
+ }
95
+ }
169
96
  exports.RemoteProxyCaller = RemoteProxyCaller;
170
97
  //# sourceMappingURL=RemoteProxyCaller.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"RemoteProxyCaller.js","sourceRoot":"","sources":["../../../../src/main/app-backend/modules/proxy/RemoteProxyCaller.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"RemoteProxyCaller.js","sourceRoot":"","sources":["../../../../src/main/app-backend/modules/proxy/RemoteProxyCaller.ts"],"names":[],"mappings":"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"}