jsf.js_next_gen 1.0.0-beta-1 → 1.0.0-beta-2

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 (154) hide show
  1. package/.github/workflows/codeql-analysis.yml +83 -0
  2. package/.github/workflows/nodejs.yml +1 -1
  3. package/dist/window/jsf-development.js +51 -39
  4. package/dist/window/jsf-development.js.map +1 -1
  5. package/dist/window/jsf.js +1 -1
  6. package/dist/window/jsf.js.br +0 -0
  7. package/dist/window/jsf.js.gz +0 -0
  8. package/dist/window/jsf.js.map +1 -1
  9. package/package.json +23 -24
  10. package/remap.js +44 -0
  11. package/remap.js.map +1 -0
  12. package/remap.ts +1 -1
  13. package/src/main/typescript/impl/util/AsyncQueue.ts +1 -1
  14. package/src/main/typescript/impl/xhrCore/RequestDataResolver.ts +1 -1
  15. package/src/test/typescript/frameworkBase/LangTest.ts +2 -10
  16. package/src/test/typescript/frameworkBase/_ext/monadish/DomQueryTest.ts +12 -11
  17. package/src/test/typescript/frameworkBase/_ext/monadish/LangTest.ts +1 -1
  18. package/src/test/typescript/frameworkBase/_ext/monadish/MappingProbes.ts +13 -19
  19. package/src/test/typescript/frameworkBase/_ext/monadish/StreamTest.ts +5 -9
  20. package/target/api/Jsf.js +258 -0
  21. package/target/api/Jsf.js.map +1 -0
  22. package/target/impl/AjaxImpl.js +569 -0
  23. package/target/impl/AjaxImpl.js.map +1 -0
  24. package/target/impl/PushImpl.js +215 -0
  25. package/target/impl/PushImpl.js.map +1 -0
  26. package/target/impl/core/Const.js +135 -0
  27. package/target/impl/core/Const.js.map +1 -0
  28. package/target/impl/core/ImplTypes.js +43 -0
  29. package/target/impl/core/ImplTypes.js.map +1 -0
  30. package/target/impl/i18n/Messages.js +114 -0
  31. package/target/impl/i18n/Messages.js.map +1 -0
  32. package/target/impl/util/Assertions.js +90 -0
  33. package/target/impl/util/Assertions.js.map +1 -0
  34. package/target/impl/util/AsyncQueue.js +104 -0
  35. package/target/impl/util/AsyncQueue.js.map +1 -0
  36. package/target/impl/util/AsyncRunnable.js +18 -0
  37. package/target/impl/util/AsyncRunnable.js.map +1 -0
  38. package/target/impl/util/ExtDomQuery.js +129 -0
  39. package/target/impl/util/ExtDomQuery.js.map +1 -0
  40. package/target/impl/util/Lang.js +215 -0
  41. package/target/impl/util/Lang.js.map +1 -0
  42. package/target/impl/util/ListenerQueue.js +3 -0
  43. package/target/impl/util/ListenerQueue.js.map +1 -0
  44. package/target/impl/xhrCore/ErrorData.js +89 -0
  45. package/target/impl/xhrCore/ErrorData.js.map +1 -0
  46. package/target/impl/xhrCore/EventData.js +30 -0
  47. package/target/impl/xhrCore/EventData.js.map +1 -0
  48. package/target/impl/xhrCore/IResponseProcessor.js +3 -0
  49. package/target/impl/xhrCore/IResponseProcessor.js.map +1 -0
  50. package/target/impl/xhrCore/RequestDataResolver.js +143 -0
  51. package/target/impl/xhrCore/RequestDataResolver.js.map +1 -0
  52. package/target/impl/xhrCore/ResonseDataResolver.js +103 -0
  53. package/target/impl/xhrCore/ResonseDataResolver.js.map +1 -0
  54. package/target/impl/xhrCore/Response.js +167 -0
  55. package/target/impl/xhrCore/Response.js.map +1 -0
  56. package/target/impl/xhrCore/ResponseProcessor.js +368 -0
  57. package/target/impl/xhrCore/ResponseProcessor.js.map +1 -0
  58. package/target/impl/xhrCore/XhrFormData.js +272 -0
  59. package/target/impl/xhrCore/XhrFormData.js.map +1 -0
  60. package/target/impl/xhrCore/XhrRequest.js +281 -0
  61. package/target/impl/xhrCore/XhrRequest.js.map +1 -0
  62. package/target/main/typescript/api/Jsf.js +258 -0
  63. package/target/main/typescript/api/Jsf.js.map +1 -0
  64. package/target/main/typescript/impl/AjaxImpl.js +569 -0
  65. package/target/main/typescript/impl/AjaxImpl.js.map +1 -0
  66. package/target/main/typescript/impl/PushImpl.js +215 -0
  67. package/target/main/typescript/impl/PushImpl.js.map +1 -0
  68. package/target/main/typescript/impl/core/Const.js +135 -0
  69. package/target/main/typescript/impl/core/Const.js.map +1 -0
  70. package/target/main/typescript/impl/core/ImplTypes.js +43 -0
  71. package/target/main/typescript/impl/core/ImplTypes.js.map +1 -0
  72. package/target/main/typescript/impl/i18n/Messages.js +114 -0
  73. package/target/main/typescript/impl/i18n/Messages.js.map +1 -0
  74. package/target/main/typescript/impl/util/Assertions.js +90 -0
  75. package/target/main/typescript/impl/util/Assertions.js.map +1 -0
  76. package/target/main/typescript/impl/util/AsyncQueue.js +104 -0
  77. package/target/main/typescript/impl/util/AsyncQueue.js.map +1 -0
  78. package/target/main/typescript/impl/util/AsyncRunnable.js +18 -0
  79. package/target/main/typescript/impl/util/AsyncRunnable.js.map +1 -0
  80. package/target/main/typescript/impl/util/ExtDomQuery.js +129 -0
  81. package/target/main/typescript/impl/util/ExtDomQuery.js.map +1 -0
  82. package/target/main/typescript/impl/util/Lang.js +215 -0
  83. package/target/main/typescript/impl/util/Lang.js.map +1 -0
  84. package/target/main/typescript/impl/util/ListenerQueue.js +3 -0
  85. package/target/main/typescript/impl/util/ListenerQueue.js.map +1 -0
  86. package/target/main/typescript/impl/xhrCore/ErrorData.js +89 -0
  87. package/target/main/typescript/impl/xhrCore/ErrorData.js.map +1 -0
  88. package/target/main/typescript/impl/xhrCore/EventData.js +30 -0
  89. package/target/main/typescript/impl/xhrCore/EventData.js.map +1 -0
  90. package/target/main/typescript/impl/xhrCore/IResponseProcessor.js +3 -0
  91. package/target/main/typescript/impl/xhrCore/IResponseProcessor.js.map +1 -0
  92. package/target/main/typescript/impl/xhrCore/RequestDataResolver.js +143 -0
  93. package/target/main/typescript/impl/xhrCore/RequestDataResolver.js.map +1 -0
  94. package/target/main/typescript/impl/xhrCore/ResonseDataResolver.js +103 -0
  95. package/target/main/typescript/impl/xhrCore/ResonseDataResolver.js.map +1 -0
  96. package/target/main/typescript/impl/xhrCore/Response.js +167 -0
  97. package/target/main/typescript/impl/xhrCore/Response.js.map +1 -0
  98. package/target/main/typescript/impl/xhrCore/ResponseProcessor.js +368 -0
  99. package/target/main/typescript/impl/xhrCore/ResponseProcessor.js.map +1 -0
  100. package/target/main/typescript/impl/xhrCore/XhrFormData.js +272 -0
  101. package/target/main/typescript/impl/xhrCore/XhrFormData.js.map +1 -0
  102. package/target/main/typescript/impl/xhrCore/XhrRequest.js +281 -0
  103. package/target/main/typescript/impl/xhrCore/XhrRequest.js.map +1 -0
  104. package/target/test/typescript/frameworkBase/LangTest.js +112 -0
  105. package/target/test/typescript/frameworkBase/LangTest.js.map +1 -0
  106. package/target/test/typescript/frameworkBase/_ext/monadish/DomQueryTest.js +293 -0
  107. package/target/test/typescript/frameworkBase/_ext/monadish/DomQueryTest.js.map +1 -0
  108. package/target/test/typescript/frameworkBase/_ext/monadish/LangTest.js +89 -0
  109. package/target/test/typescript/frameworkBase/_ext/monadish/LangTest.js.map +1 -0
  110. package/target/test/typescript/frameworkBase/_ext/monadish/MappingProbes.js +115 -0
  111. package/target/test/typescript/frameworkBase/_ext/monadish/MappingProbes.js.map +1 -0
  112. package/target/test/typescript/frameworkBase/_ext/monadish/MappingTest.js +39 -0
  113. package/target/test/typescript/frameworkBase/_ext/monadish/MappingTest.js.map +1 -0
  114. package/target/test/typescript/frameworkBase/_ext/monadish/MonadTest.js +155 -0
  115. package/target/test/typescript/frameworkBase/_ext/monadish/MonadTest.js.map +1 -0
  116. package/target/test/typescript/frameworkBase/_ext/monadish/StreamTest.js +176 -0
  117. package/target/test/typescript/frameworkBase/_ext/monadish/StreamTest.js.map +1 -0
  118. package/target/test/typescript/frameworkBase/_ext/monadish/XmlQueryTest.js +1 -0
  119. package/target/test/typescript/frameworkBase/_ext/monadish/XmlQueryTest.js.map +1 -0
  120. package/target/test/typescript/frameworkBase/_ext/shared/StandardInits.js +264 -0
  121. package/target/test/typescript/frameworkBase/_ext/shared/StandardInits.js.map +1 -0
  122. package/target/test/typescript/frameworkBase/_ext/shared/XmlResponses.js +23 -0
  123. package/target/test/typescript/frameworkBase/_ext/shared/XmlResponses.js.map +1 -0
  124. package/target/test/typescript/impl/ImplTest.js +98 -0
  125. package/target/test/typescript/impl/ImplTest.js.map +1 -0
  126. package/target/test/typescript/impl/SeparatorCharsTest.js +72 -0
  127. package/target/test/typescript/impl/SeparatorCharsTest.js.map +1 -0
  128. package/target/test/typescript/queue/AsynchronousProbe.js +99 -0
  129. package/target/test/typescript/queue/AsynchronousProbe.js.map +1 -0
  130. package/target/test/typescript/queue/AsynchronousQueueTest.js +130 -0
  131. package/target/test/typescript/queue/AsynchronousQueueTest.js.map +1 -0
  132. package/target/test/typescript/xhrCore/EventTests.js +155 -0
  133. package/target/test/typescript/xhrCore/EventTests.js.map +1 -0
  134. package/target/test/typescript/xhrCore/FakeWebsocket.js +25 -0
  135. package/target/test/typescript/xhrCore/FakeWebsocket.js.map +1 -0
  136. package/target/test/typescript/xhrCore/FileUploadTest.js +166 -0
  137. package/target/test/typescript/xhrCore/FileUploadTest.js.map +1 -0
  138. package/target/test/typescript/xhrCore/RequestParamsTest.js +151 -0
  139. package/target/test/typescript/xhrCore/RequestParamsTest.js.map +1 -0
  140. package/target/test/typescript/xhrCore/RequestTest.js +318 -0
  141. package/target/test/typescript/xhrCore/RequestTest.js.map +1 -0
  142. package/target/test/typescript/xhrCore/ResponseTest.js +257 -0
  143. package/target/test/typescript/xhrCore/ResponseTest.js.map +1 -0
  144. package/target/test/typescript/xhrCore/ShadowDomTest.js +122 -0
  145. package/target/test/typescript/xhrCore/ShadowDomTest.js.map +1 -0
  146. package/target/test/typescript/xhrCore/WebsocketTest.js +182 -0
  147. package/target/test/typescript/xhrCore/WebsocketTest.js.map +1 -0
  148. package/target/test/typescript/xhrCore/XhrFormDataTest.js +58 -0
  149. package/target/test/typescript/xhrCore/XhrFormDataTest.js.map +1 -0
  150. package/webpack.config.js +71 -0
  151. package/webpack.config.js.map +1 -0
  152. package/webpack.config.ts +4 -6
  153. package/dist/window/jsf-development.js.LICENSE.txt +0 -135
  154. package/dist/window/jsf-development.js.br +0 -0
@@ -0,0 +1,58 @@
1
+ "use strict";
2
+ /* Licensed to the Apache Software Foundation (ASF) under one or more
3
+ * contributor license agreements. See the NOTICE file distributed with
4
+ * this work for additional information regarding copyright ownership.
5
+ * The ASF licenses this file to you under the Apache License, Version 2.0
6
+ * (the "License"); you may not use this file except in compliance with
7
+ * the License. You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ var mocha_1 = require("mocha");
19
+ var mona_dish_1 = require("mona-dish");
20
+ var sinon = require("sinon");
21
+ var XhrFormData_1 = require("../../../main/typescript/impl/xhrCore/XhrFormData");
22
+ var chai_1 = require("chai");
23
+ var jsdom = require("jsdom");
24
+ var JSDOM = jsdom.JSDOM;
25
+ (0, mocha_1.describe)('XhrFormData tests', function () {
26
+ beforeEach(function () {
27
+ var _this = this;
28
+ var dom = new JSDOM("\n <!DOCTYPE html>\n <html lang=\"en\">\n <head>\n <meta charset=\"UTF-8\">\n <title>Title</title>\n </head>\n <body>\n <div id=\"id_1\"></div>\n <div id=\"id_2\" booga=\"blarg\"></div>\n <div id=\"id_3\"></div>\n <div id=\"id_4\"></div>\n </body>\n </html>\n \n ", {
29
+ contentType: "text/html",
30
+ runScripts: "dangerously"
31
+ });
32
+ var window = dom.window;
33
+ global.window = window;
34
+ global.body = window.document.body;
35
+ global.document = window.document;
36
+ global.navigator = {
37
+ language: "en-En"
38
+ };
39
+ this.xhr = sinon.useFakeXMLHttpRequest();
40
+ this.requests = [];
41
+ this.xhr.onCreate = function (xhr) {
42
+ _this.requests.push(xhr);
43
+ };
44
+ global.XMLHttpRequest = this.xhr;
45
+ window.XMLHttpRequest = this.xhr;
46
+ });
47
+ this.afterEach(function () {
48
+ global.XMLHttpRequest = window.XMLHttpRequest = this.xhr.restore();
49
+ });
50
+ (0, mocha_1.it)("must have multiple values for a name", function () {
51
+ window.document.body.innerHTML = "<form id=\"page::form\">\n <tobago-select-many-checkbox id=\"page:animals\">\n <label for=\"page:animals\">Checkbox Group</label>\n <label><input type=\"checkbox\" name=\"page:animals\" id=\"page:animals::0\" value=\"Cat\" checked=\"checked\">Cat</label>\n <label><input type=\"checkbox\" name=\"page:animals\" id=\"page:animals::1\" value=\"Dog\">Dog</label>\n <label><input type=\"checkbox\" name=\"page:animals\" id=\"page:animals::2\" value=\"Fox\" checked=\"checked\">Fox</label>\n <label><input type=\"checkbox\" name=\"page:animals\" id=\"page:animals::3\" value=\"Rabbit\">Rabbit</label>\n </tobago-select-many-checkbox>\n <div id=\"page:animalsOutput\">\n <label for=\"page:animalsOutput\">Selected Animals</label>\n <span>Cat, Fox</span>\n </div>\n </form>";
52
+ var xhrFormData = new XhrFormData_1.XhrFormData(mona_dish_1.DQ.byId("page::form"));
53
+ var formData = xhrFormData.toString();
54
+ (0, chai_1.expect)(formData).to.contain("animals=Cat");
55
+ (0, chai_1.expect)(formData).to.contain("animals=Fox");
56
+ });
57
+ });
58
+ //# sourceMappingURL=XhrFormDataTest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"XhrFormDataTest.js","sourceRoot":"","sources":["../../../../src/test/typescript/xhrCore/XhrFormDataTest.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;GAcG;;AAEH,+BAAmC;AACnC,uCAA6B;AAC7B,6BAA+B;AAC/B,iFAA8E;AAC9E,6BAA4B;AAE5B,IAAM,KAAK,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;AACxB,IAAA,KAAK,GAAI,KAAK,MAAT,CAAU;AAEtB,IAAA,gBAAQ,EAAC,mBAAmB,EAAE;IAE5B,UAAU,CAAC;QAAA,iBAsCV;QApCC,IAAI,GAAG,GAAG,IAAI,KAAK,CAAC,uaAenB,EAAE;YACD,WAAW,EAAE,WAAW;YACxB,UAAU,EAAE,aAAa;SAC1B,CAAC,CAAC;QAEH,IAAI,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;QAElB,MAAO,CAAC,MAAM,GAAG,MAAM,CAAC;QACxB,MAAO,CAAC,IAAI,GAAG,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC;QACpC,MAAO,CAAC,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC;QACnC,MAAO,CAAC,SAAS,GAAG;YACxB,QAAQ,EAAE,OAAO;SAClB,CAAC;QAEF,IAAI,CAAC,GAAG,GAAG,KAAK,CAAC,qBAAqB,EAAE,CAAC;QACzC,IAAI,CAAC,QAAQ,GAAG,EAAE,CAAC;QACnB,IAAI,CAAC,GAAG,CAAC,QAAQ,GAAG,UAAC,GAAG;YACtB,KAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QAC1B,CAAC,CAAC;QACI,MAAO,CAAC,cAAc,GAAG,IAAI,CAAC,GAAG,CAAC;QAClC,MAAO,CAAC,cAAc,GAAG,IAAI,CAAC,GAAG,CAAC;IAC1C,CAAC,CAAC,CAAC;IAEH,IAAI,CAAC,SAAS,CAAC;QACP,MAAO,CAAC,cAAc,GAAS,MAAO,CAAC,cAAc,GAAG,IAAI,CAAC,GAAG,CAAC,OAAO,EAAE,CAAC;IACnF,CAAC,CAAC,CAAC;IAEH,IAAA,UAAE,EAAC,sCAAsC,EAAE;QACzC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,SAAS,GAAG,w0BAYzB,CAAC;QAET,IAAM,WAAW,GAAG,IAAI,yBAAW,CAAC,cAAE,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC;QAC3D,IAAM,QAAQ,GAAG,WAAW,CAAC,QAAQ,EAAE,CAAC;QAExC,IAAA,aAAM,EAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC;QAC3C,IAAA,aAAM,EAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC;IAC7C,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
@@ -0,0 +1,71 @@
1
+ "use strict";
2
+ exports.__esModule = true;
3
+ var path = require("path");
4
+ var CompressionPlugin = require('compression-webpack-plugin');
5
+ /**
6
+ * we need to define the export in a function
7
+ * because the mode parameter is passed down via the argv
8
+ *
9
+ * @param env the environment
10
+ * @param argv the arguments list
11
+ */
12
+ function build(env, argv) {
13
+ var _a;
14
+ var libraryTarget = (_a = env.TARGET_TYPE) !== null && _a !== void 0 ? _a : "window";
15
+ var config = {
16
+ context: __dirname,
17
+ entry: "./src/main/typescript/api/Jsf.ts",
18
+ devtool: "source-map",
19
+ output: {
20
+ path: path.resolve(__dirname, './dist/' + libraryTarget),
21
+ libraryTarget: libraryTarget,
22
+ filename: (argv.mode == "production") ? "jsf.js" : "jsf-development.js"
23
+ },
24
+ resolve: {
25
+ extensions: [".tsx", ".ts", ".json"],
26
+ alias: {
27
+ /*we load the reduced core, because there are some parts we simply do not need*/
28
+ "mona-dish": path.resolve(__dirname, "node_modules/mona-dish/dist/js/commonjs/index_core.js")
29
+ }
30
+ },
31
+ externals: {
32
+ "rxjs": "RxJS"
33
+ },
34
+ module: {
35
+ rules: [
36
+ // all files with a '.ts' or '.tsx' extension will be handled by 'ts-loader'
37
+ {
38
+ test: /\.tsx?$/, use: [{
39
+ loader: "ts-loader"
40
+ }], exclude: /node_modules/
41
+ }, {
42
+ test: /jsf\.js$/,
43
+ loader: 'string-replace-loader',
44
+ options: {
45
+ search: 'jsf.js.map',
46
+ replace: 'jsf.js.map\n//# sourceMappingURL=jsf.js.map.jsf?ln=scripts'
47
+ }
48
+ }
49
+ ]
50
+ },
51
+ plugins: [
52
+ new CompressionPlugin({
53
+ filename: 'jsf.js.gz[query]',
54
+ algorithm: 'gzip',
55
+ test: /\.js$|\.css$|\.html$|\.eot?.+$|\.ttf?.+$|\.woff?.+$|\.svg?.+$/,
56
+ threshold: 10240,
57
+ minRatio: 0.3
58
+ }),
59
+ new CompressionPlugin({
60
+ filename: 'jsf.js.br[query]',
61
+ algorithm: 'brotliCompress',
62
+ test: /\.(js|css|html|svg)$/,
63
+ threshold: 10240,
64
+ minRatio: 0.8
65
+ })
66
+ ]
67
+ };
68
+ return config;
69
+ }
70
+ exports["default"] = build;
71
+ //# sourceMappingURL=webpack.config.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"webpack.config.js","sourceRoot":"","sources":["webpack.config.ts"],"names":[],"mappings":";;AACA,2BAA4B;AAE5B,IAAI,iBAAiB,GAAG,OAAO,CAAC,4BAA4B,CAAC,CAAC;AAI9D;;;;;;GAMG;AACH,SAAS,KAAK,CAAC,GAA2B,EAAE,IAA4B;;IAEpE,IAAI,aAAa,GAAG,MAAA,GAAG,CAAC,WAAW,mCAAI,QAAQ,CAAC;IAEhD,IAAM,MAAM,GAA0B;QAClC,OAAO,EAAE,SAAS;QAClB,KAAK,EAAE,kCAAkC;QACzC,OAAO,EAAE,YAAY;QAErB,MAAM,EAAE;YACJ,IAAI,EAAE,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,SAAS,GAAG,aAAa,CAAC;YACxD,aAAa,EAAE,aAAa;YAC5B,QAAQ,EAAE,CAAC,IAAI,CAAC,IAAI,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,oBAAoB;SAC1E;QACD,OAAO,EAAE;YACL,UAAU,EAAE,CAAC,MAAM,EAAE,KAAK,EAAE,OAAO,CAAC;YACpC,KAAK,EAAE;gBACH,gFAAgF;gBACjF,WAAW,EAAE,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,uDAAuD,CAAC;aAC/F;SACJ;QACD,SAAS,EAAE;YACP,MAAM,EAAE,MAAM;SACjB;QAED,MAAM,EAAE;YACJ,KAAK,EAAE;gBACH,4EAA4E;gBAC5E;oBACI,IAAI,EAAE,SAAS,EAAE,GAAG,EAAE,CAAC;4BACnB,MAAM,EAAE,WAAW;yBACtB,CAAC,EAAE,OAAO,EAAE,cAAc;iBAC9B,EAAE;oBACC,IAAI,EAAE,UAAU;oBAChB,MAAM,EAAE,uBAAuB;oBAC/B,OAAO,EAAE;wBACL,MAAM,EAAE,YAAY;wBACpB,OAAO,EAAE,4DAA4D;qBACxE;iBACJ;aACJ;SACJ;QAOD,OAAO,EAAE;YAEJ,IAAI,iBAAiB,CAAC;gBACnB,QAAQ,EAAE,kBAAkB;gBAC5B,SAAS,EAAE,MAAM;gBACjB,IAAI,EAAE,+DAA+D;gBACrE,SAAS,EAAE,KAAK;gBAChB,QAAQ,EAAE,GAAG;aAEhB,CAAC;YACF,IAAI,iBAAiB,CAAC;gBAClB,QAAQ,EAAE,kBAAkB;gBAC5B,SAAS,EAAE,gBAAgB;gBAC3B,IAAI,EAAE,sBAAsB;gBAC5B,SAAS,EAAE,KAAK;gBAChB,QAAQ,EAAE,GAAG;aAChB,CAAC;SACL;KACJ,CAAA;IACD,OAAO,MAAM,CAAC;AAClB,CAAC;AAED,qBAAe,KAAK,CAAC"}
package/webpack.config.ts CHANGED
@@ -1,9 +1,6 @@
1
1
  import * as webpack from 'webpack';
2
2
  import * as path from 'path'
3
- import { IgnorePlugin } from 'webpack';
4
3
 
5
- //let TerserPlugin = require('terser-webpack-plugin');
6
- let BrotliPlugin = require('brotli-webpack-plugin');
7
4
  let CompressionPlugin = require('compression-webpack-plugin');
8
5
 
9
6
 
@@ -15,7 +12,7 @@ let CompressionPlugin = require('compression-webpack-plugin');
15
12
  * @param env the environment
16
13
  * @param argv the arguments list
17
14
  */
18
- function build(env, argv) {
15
+ function build(env: {[key:string]: string}, argv: {[key:string]: string}) {
19
16
 
20
17
  let libraryTarget = env.TARGET_TYPE ?? "window";
21
18
 
@@ -73,8 +70,9 @@ function build(env, argv) {
73
70
  minRatio: 0.3
74
71
 
75
72
  }),
76
- new BrotliPlugin({
77
- asset: 'jsf.js.br[query]',
73
+ new CompressionPlugin({
74
+ filename: 'jsf.js.br[query]',
75
+ algorithm: 'brotliCompress',
78
76
  test: /\.(js|css|html|svg)$/,
79
77
  threshold: 10240,
80
78
  minRatio: 0.8
@@ -1,135 +0,0 @@
1
- /*! ../AjaxImpl */
2
-
3
- /*! ../api/Jsf */
4
-
5
- /*! ../core/Const */
6
-
7
- /*! ../core/ImplTypes */
8
-
9
- /*! ../i18n/Messages */
10
-
11
- /*! ../impl/AjaxImpl */
12
-
13
- /*! ../impl/PushImpl */
14
-
15
- /*! ../util/Assertions */
16
-
17
- /*! ../util/ExtDomQuery */
18
-
19
- /*! ../util/Lang */
20
-
21
- /*! ../xhrCore/RequestDataResolver */
22
-
23
- /*! ./Const */
24
-
25
- /*! ./ErrorData */
26
-
27
- /*! ./EventData */
28
-
29
- /*! ./Lang */
30
-
31
- /*! ./RequestDataResolver */
32
-
33
- /*! ./ResonseDataResolver */
34
-
35
- /*! ./ResponseProcessor */
36
-
37
- /*! ./XhrFormData */
38
-
39
- /*! ./core/Const */
40
-
41
- /*! ./util/Assertions */
42
-
43
- /*! ./util/AsyncQueue */
44
-
45
- /*! ./util/ExtDomQuery */
46
-
47
- /*! ./util/Lang */
48
-
49
- /*! ./xhrCore/ErrorData */
50
-
51
- /*! ./xhrCore/RequestDataResolver */
52
-
53
- /*! ./xhrCore/Response */
54
-
55
- /*! ./xhrCore/XhrFormData */
56
-
57
- /*! ./xhrCore/XhrRequest */
58
-
59
- /*! mona-dish */
60
-
61
- /*!****************************************!*\
62
- !*** ./src/main/typescript/api/Jsf.ts ***!
63
- \****************************************/
64
-
65
- /*!**********************************************!*\
66
- !*** ./src/main/typescript/impl/AjaxImpl.ts ***!
67
- \**********************************************/
68
-
69
- /*!**********************************************!*\
70
- !*** ./src/main/typescript/impl/PushImpl.ts ***!
71
- \**********************************************/
72
-
73
- /*!***********************************************!*\
74
- !*** ./src/main/typescript/impl/util/Lang.ts ***!
75
- \***********************************************/
76
-
77
- /*!************************************************!*\
78
- !*** ./src/main/typescript/impl/core/Const.ts ***!
79
- \************************************************/
80
-
81
- /*!***************************************************!*\
82
- !*** ./src/main/typescript/impl/i18n/Messages.ts ***!
83
- \***************************************************/
84
-
85
- /*!****************************************************!*\
86
- !*** ./src/main/typescript/impl/core/ImplTypes.ts ***!
87
- \****************************************************/
88
-
89
- /*!*****************************************************!*\
90
- !*** ./src/main/typescript/impl/util/Assertions.ts ***!
91
- \*****************************************************/
92
-
93
- /*!*****************************************************!*\
94
- !*** ./src/main/typescript/impl/util/AsyncQueue.ts ***!
95
- \*****************************************************/
96
-
97
- /*!******************************************************!*\
98
- !*** ./src/main/typescript/impl/util/ExtDomQuery.ts ***!
99
- \******************************************************/
100
-
101
- /*!******************************************************!*\
102
- !*** ./src/main/typescript/impl/xhrCore/Response.ts ***!
103
- \******************************************************/
104
-
105
- /*!*******************************************************!*\
106
- !*** ./src/main/typescript/impl/xhrCore/ErrorData.ts ***!
107
- \*******************************************************/
108
-
109
- /*!*******************************************************!*\
110
- !*** ./src/main/typescript/impl/xhrCore/EventData.ts ***!
111
- \*******************************************************/
112
-
113
- /*!********************************************************!*\
114
- !*** ./src/main/typescript/impl/xhrCore/XhrRequest.ts ***!
115
- \********************************************************/
116
-
117
- /*!*********************************************************!*\
118
- !*** ./src/main/typescript/impl/xhrCore/XhrFormData.ts ***!
119
- \*********************************************************/
120
-
121
- /*!***************************************************************!*\
122
- !*** ./node_modules/mona-dish/dist/js/commonjs/index_core.js ***!
123
- \***************************************************************/
124
-
125
- /*!***************************************************************!*\
126
- !*** ./src/main/typescript/impl/xhrCore/ResponseProcessor.ts ***!
127
- \***************************************************************/
128
-
129
- /*!*****************************************************************!*\
130
- !*** ./src/main/typescript/impl/xhrCore/RequestDataResolver.ts ***!
131
- \*****************************************************************/
132
-
133
- /*!*****************************************************************!*\
134
- !*** ./src/main/typescript/impl/xhrCore/ResonseDataResolver.ts ***!
135
- \*****************************************************************/
Binary file