@pixui-dev/pxw 0.1.20 → 0.1.21

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 (95) hide show
  1. package/bin/pxw.js +199 -199
  2. package/bin/wpbuild.js +10 -10
  3. package/config/default.conf +20 -20
  4. package/config/devops.js +372 -361
  5. package/config/h5es.js +10 -10
  6. package/config/index.html +183 -181
  7. package/config/pfbs.js +245 -245
  8. package/config/util.js +140 -140
  9. package/config/webpack.js +325 -309
  10. package/lib/assets/check.html +62 -62
  11. package/lib/assets/preact.js +4354 -4354
  12. package/lib/check/main.less +62 -62
  13. package/lib/check/main.tsx +41 -41
  14. package/lib/check/tool.js +3 -3
  15. package/lib/check/util.tsx +110 -110
  16. package/lib/grpc-web/dist/ChunkParser.js +117 -117
  17. package/lib/grpc-web/dist/Code.js +58 -58
  18. package/lib/grpc-web/dist/client.js +299 -299
  19. package/lib/grpc-web/dist/debug.js +16 -16
  20. package/lib/grpc-web/dist/detach.js +7 -7
  21. package/lib/grpc-web/dist/index.js +29 -29
  22. package/lib/grpc-web/dist/invoke.js +32 -32
  23. package/lib/grpc-web/dist/message.js +3 -3
  24. package/lib/grpc-web/dist/metadata.js +5 -5
  25. package/lib/grpc-web/dist/service.js +3 -3
  26. package/lib/grpc-web/dist/transports/Transport.js +15 -15
  27. package/lib/grpc-web/dist/transports/http/fetch.js +117 -117
  28. package/lib/grpc-web/dist/transports/http/http.js +15 -15
  29. package/lib/grpc-web/dist/transports/http/xhr.js +136 -136
  30. package/lib/grpc-web/dist/transports/http/xhrUtil.js +36 -36
  31. package/lib/grpc-web/dist/transports/websocket/websocket.js +95 -95
  32. package/lib/grpc-web/dist/typings/ChunkParser.d.ts +17 -17
  33. package/lib/grpc-web/dist/typings/Code.d.ts +20 -20
  34. package/lib/grpc-web/dist/typings/client.d.ts +25 -25
  35. package/lib/grpc-web/dist/typings/debug.d.ts +1 -1
  36. package/lib/grpc-web/dist/typings/detach.d.ts +1 -1
  37. package/lib/grpc-web/dist/typings/index.d.ts +45 -45
  38. package/lib/grpc-web/dist/typings/invoke.d.ts +20 -20
  39. package/lib/grpc-web/dist/typings/message.d.ts +8 -8
  40. package/lib/grpc-web/dist/typings/metadata.d.ts +2 -2
  41. package/lib/grpc-web/dist/typings/service.d.ts +16 -16
  42. package/lib/grpc-web/dist/typings/transports/Transport.d.ts +22 -22
  43. package/lib/grpc-web/dist/typings/transports/http/fetch.d.ts +6 -6
  44. package/lib/grpc-web/dist/typings/transports/http/http.d.ts +5 -5
  45. package/lib/grpc-web/dist/typings/transports/http/xhr.d.ts +27 -27
  46. package/lib/grpc-web/dist/typings/transports/http/xhrUtil.d.ts +3 -3
  47. package/lib/grpc-web/dist/typings/transports/websocket/websocket.d.ts +2 -2
  48. package/lib/grpc-web/dist/typings/unary.d.ts +23 -23
  49. package/lib/grpc-web/dist/typings/util.d.ts +2 -2
  50. package/lib/grpc-web/dist/unary.js +44 -44
  51. package/lib/grpc-web/dist/util.js +11 -11
  52. package/lib/grpcTransport/PixHttp2Transport.ts +107 -107
  53. package/lib/grpcTransport/PixLuaTransport.ts +82 -82
  54. package/lib/h5es-types/v1.9.2/h5es.d.ts +1698 -1698
  55. package/lib/h5es-types/v3.5.0/h5es.d.ts +1788 -1788
  56. package/lib/pi_component/tinyList/tinyList.js +483 -483
  57. package/lib/pi_component/tinyList/tinyList.tsx +517 -517
  58. package/lib/preact-router.js +395 -395
  59. package/lib/preact.js +4355 -4355
  60. package/lib/preact.tq.js +4385 -4385
  61. package/lib/react-window/src/FixedSizeGrid.js +172 -172
  62. package/lib/react-window/src/FixedSizeList.js +91 -91
  63. package/lib/react-window/src/VariableSizeGrid.js +329 -329
  64. package/lib/react-window/src/VariableSizeList.js +231 -231
  65. package/lib/react-window/src/__tests__/FixedSizeGrid.js +942 -942
  66. package/lib/react-window/src/__tests__/FixedSizeList.js +749 -749
  67. package/lib/react-window/src/__tests__/VariableSizeGrid.js +598 -598
  68. package/lib/react-window/src/__tests__/VariableSizeList.js +345 -345
  69. package/lib/react-window/src/__tests__/__snapshots__/FixedSizeGrid.js.snap +912 -912
  70. package/lib/react-window/src/__tests__/__snapshots__/FixedSizeList.js.snap +568 -568
  71. package/lib/react-window/src/__tests__/__snapshots__/VariableSizeGrid.js.snap +542 -542
  72. package/lib/react-window/src/__tests__/__snapshots__/VariableSizeList.js.snap +331 -331
  73. package/lib/react-window/src/__tests__/areEqual.js +28 -28
  74. package/lib/react-window/src/__tests__/shouldComponentUpdate.js +32 -32
  75. package/lib/react-window/src/areEqual.js +13 -13
  76. package/lib/react-window/src/createGridComponent.js +657 -657
  77. package/lib/react-window/src/createListComponent.js +574 -574
  78. package/lib/react-window/src/domHelpers.js +69 -69
  79. package/lib/react-window/src/index.js +9 -9
  80. package/lib/react-window/src/shallowDiffers.js +17 -17
  81. package/lib/react-window/src/shouldComponentUpdate.js +11 -11
  82. package/lib/react-window/src/test.js.flow +382 -382
  83. package/lib/react-window/src/timer.js +36 -36
  84. package/lib/types/dom.ts +17 -17
  85. package/lib/types/ext.d.ts +81 -81
  86. package/lib/types/preact/css.d.ts +7476 -7476
  87. package/lib/types/preact/index.d.ts +340 -340
  88. package/lib/types/preact/internal.d.ts +94 -94
  89. package/lib/types/preact/jsx.d.ts +309 -309
  90. package/lib/types/preact-router/index.d.ts +84 -84
  91. package/package.json +113 -113
  92. package/scripts/pack.js +40 -40
  93. package/scripts/postinstall.js +11 -11
  94. package/scripts/run-pxw.js +12 -12
  95. package/tsconfig.json +30 -30
package/config/util.js CHANGED
@@ -1,140 +1,140 @@
1
- let fs = require('fs');
2
- let cp = require('child_process');
3
- let path = require('path');
4
- let pfbs = require('./pfbs');
5
-
6
- module.exports.getLocalIP = function () {
7
- let os = require('os');
8
- let ifaces = os.networkInterfaces();
9
-
10
- let ipList = [];
11
- Object.keys(ifaces).forEach(function (ifname) {
12
- let alias = 0;
13
-
14
- ifaces[ifname].forEach(function (iface) {
15
- // console.log(iface);
16
- if ('IPv4' !== iface.family || iface.internal !== false) {
17
- // skip over internal (i.e. 127.0.0.1) and non-ipv4 addresses
18
- return;
19
- }
20
- if (iface.address.indexOf('255') >= 0) return;
21
- if (iface.address.indexOf('169.254') >= 0) return;
22
- ipList.push(iface.address);
23
- });
24
- });
25
- console.log('iplist', ipList);
26
- return ipList;
27
- };
28
-
29
- module.exports.readRegKey = function (path, key) {
30
- const powerShellScript = `
31
- $ErrorActionPreference = 'Stop'
32
- $keyPath = "HKLM:\\${path}"
33
- $key = "${key}"
34
-
35
- try {
36
- $value = Get-ItemProperty -Path $keyPath -Name $key
37
- if ($value -ne $null) {
38
- Write-Output $value.$key
39
- } else {
40
- Write-Error "Registry value not found."
41
- }
42
- } catch {
43
- Write-Error "Error accessing the registry: $_"
44
- }
45
- `;
46
- try {
47
- let out = cp.execSync(powerShellScript, {
48
- shell: 'powershell.exe',
49
- windowsHide: true,
50
- });
51
- return out.toString();
52
- }
53
- catch (error) {
54
- console.error('Error executing PowerShell script:', error.message);
55
- return '';
56
- }
57
- };
58
-
59
- module.exports.isInParalles = function () {
60
- if (process.platform != 'win32') return false;
61
- let v = module.exports.readRegKey('SYSTEM\\CurrentControlSet\\Control\\SystemInformation', 'SystemProductName');
62
- return /Parallels/.test(v);
63
- };
64
-
65
- let projectConfig;
66
- module.exports.loadProjectConfig = function () {
67
- if (projectConfig) return projectConfig;
68
- let pienv = {};
69
- try {
70
- let cwd = process.cwd();
71
- let ep = cwd + '/entry';
72
- console.log('read entry.js', ep);
73
- projectConfig = require(ep);
74
- // projectConfig.pages.forEach((p) => {
75
- // p.entry = `${cwd}/${p.entry}`;
76
- // p.template = `${cwd}/${p.template}`;
77
- // appDef.push(p);
78
- // });
79
-
80
- let env = projectConfig.env;
81
-
82
- Object.entries(env || {}).forEach(([k, v]) => {
83
- pienv['process.env.' + k] = JSON.stringify(v);
84
- });
85
- }
86
- catch (e) {
87
- console.warn('read entry.js failed');
88
- if (!/Cannot find module/.test(e.message)) {
89
- console.error(e);
90
- }
91
- projectConfig = { pages: [] };
92
- }
93
- finally {
94
- }
95
- return projectConfig;
96
- };
97
-
98
- module.exports.getH5esType = function() {
99
- const { parse } = require('comment-json');
100
- const tsconfigPath = path.resolve(process.cwd(), 'tsconfig.json');
101
- const fileContent = fs.readFileSync(tsconfigPath, 'utf8');
102
- const tsconfig = parse(fileContent);
103
- tsconfig.compilerOptions = tsconfig.compilerOptions || {};
104
- const existingTypeRoots = tsconfig.compilerOptions.typeRoots || [];
105
- const h5esTypeRoot = existingTypeRoots.find(root => root.includes('h5es-types'));
106
- let slashIndex = h5esTypeRoot.lastIndexOf('/');
107
- if (slashIndex !== -1) {
108
- h5esType = h5esTypeRoot.substring(slashIndex + 1);
109
- }
110
- return h5esType;
111
- }
112
-
113
- module.exports.setH5esType = function (newType) {
114
- const { stringify, parse } = require('comment-json');
115
- const tsconfigPath = path.resolve(process.cwd(), 'tsconfig.json');
116
- const fileContent = fs.readFileSync(tsconfigPath, 'utf8');
117
- const tsconfig = parse(fileContent);
118
- tsconfig.compilerOptions = tsconfig.compilerOptions || {};
119
- const existingTypeRoots = tsconfig.compilerOptions.typeRoots || [];
120
- let h5esTypeRoot = existingTypeRoots.find(root => root.includes('h5es-types'));
121
- const updateTypeRoots = existingTypeRoots.filter(root => !root.includes('h5es-types'));
122
- if (h5esTypeRoot === undefined || h5esTypeRoot != newType) {
123
- updateTypeRoots.push(newType);
124
- console.log('newType ', newType)
125
- h5esTypeRoot = newType;
126
- tsconfig.compilerOptions.typeRoots = updateTypeRoots;
127
- fs.writeFileSync(tsconfigPath, stringify(tsconfig, null, 2));
128
- try {
129
- cp.execSync('npx prettier-eslint --write tsconfig.json', {});
130
- }
131
- catch (e) {
132
- console.error('prettier-eslint failed:', e.message);
133
- }
134
- }
135
- let slashIndex = h5esTypeRoot.lastIndexOf('/');
136
- if (slashIndex !== -1) {
137
- h5esType = h5esTypeRoot.substring(slashIndex + 1);
138
- }
139
- return h5esType;
140
- };
1
+ let fs = require('fs');
2
+ let cp = require('child_process');
3
+ let path = require('path');
4
+ let pfbs = require('./pfbs');
5
+
6
+ module.exports.getLocalIP = function () {
7
+ let os = require('os');
8
+ let ifaces = os.networkInterfaces();
9
+
10
+ let ipList = [];
11
+ Object.keys(ifaces).forEach(function (ifname) {
12
+ let alias = 0;
13
+
14
+ ifaces[ifname].forEach(function (iface) {
15
+ // console.log(iface);
16
+ if ('IPv4' !== iface.family || iface.internal !== false) {
17
+ // skip over internal (i.e. 127.0.0.1) and non-ipv4 addresses
18
+ return;
19
+ }
20
+ if (iface.address.indexOf('255') >= 0) return;
21
+ if (iface.address.indexOf('169.254') >= 0) return;
22
+ ipList.push(iface.address);
23
+ });
24
+ });
25
+ console.log('iplist', ipList);
26
+ return ipList;
27
+ };
28
+
29
+ module.exports.readRegKey = function (path, key) {
30
+ const powerShellScript = `
31
+ $ErrorActionPreference = 'Stop'
32
+ $keyPath = "HKLM:\\${path}"
33
+ $key = "${key}"
34
+
35
+ try {
36
+ $value = Get-ItemProperty -Path $keyPath -Name $key
37
+ if ($value -ne $null) {
38
+ Write-Output $value.$key
39
+ } else {
40
+ Write-Error "Registry value not found."
41
+ }
42
+ } catch {
43
+ Write-Error "Error accessing the registry: $_"
44
+ }
45
+ `;
46
+ try {
47
+ let out = cp.execSync(powerShellScript, {
48
+ shell: 'powershell.exe',
49
+ windowsHide: true,
50
+ });
51
+ return out.toString();
52
+ }
53
+ catch (error) {
54
+ console.error('Error executing PowerShell script:', error.message);
55
+ return '';
56
+ }
57
+ };
58
+
59
+ module.exports.isInParalles = function () {
60
+ if (process.platform != 'win32') return false;
61
+ let v = module.exports.readRegKey('SYSTEM\\CurrentControlSet\\Control\\SystemInformation', 'SystemProductName');
62
+ return /Parallels/.test(v);
63
+ };
64
+
65
+ let projectConfig;
66
+ module.exports.loadProjectConfig = function () {
67
+ if (projectConfig) return projectConfig;
68
+ let pienv = {};
69
+ try {
70
+ let cwd = process.cwd();
71
+ let ep = cwd + '/entry';
72
+ console.log('read entry.js', ep);
73
+ projectConfig = require(ep);
74
+ // projectConfig.pages.forEach((p) => {
75
+ // p.entry = `${cwd}/${p.entry}`;
76
+ // p.template = `${cwd}/${p.template}`;
77
+ // appDef.push(p);
78
+ // });
79
+
80
+ let env = projectConfig.env;
81
+
82
+ Object.entries(env || {}).forEach(([k, v]) => {
83
+ pienv['process.env.' + k] = JSON.stringify(v);
84
+ });
85
+ }
86
+ catch (e) {
87
+ console.warn('read entry.js failed');
88
+ if (!/Cannot find module/.test(e.message)) {
89
+ console.error(e);
90
+ }
91
+ projectConfig = { pages: [] };
92
+ }
93
+ finally {
94
+ }
95
+ return projectConfig;
96
+ };
97
+
98
+ module.exports.getH5esType = function() {
99
+ const { parse } = require('comment-json');
100
+ const tsconfigPath = path.resolve(process.cwd(), 'tsconfig.json');
101
+ const fileContent = fs.readFileSync(tsconfigPath, 'utf8');
102
+ const tsconfig = parse(fileContent);
103
+ tsconfig.compilerOptions = tsconfig.compilerOptions || {};
104
+ const existingTypeRoots = tsconfig.compilerOptions.typeRoots || [];
105
+ const h5esTypeRoot = existingTypeRoots.find(root => root.includes('h5es-types'));
106
+ let slashIndex = h5esTypeRoot.lastIndexOf('/');
107
+ if (slashIndex !== -1) {
108
+ h5esType = h5esTypeRoot.substring(slashIndex + 1);
109
+ }
110
+ return h5esType;
111
+ }
112
+
113
+ module.exports.setH5esType = function (newType) {
114
+ const { stringify, parse } = require('comment-json');
115
+ const tsconfigPath = path.resolve(process.cwd(), 'tsconfig.json');
116
+ const fileContent = fs.readFileSync(tsconfigPath, 'utf8');
117
+ const tsconfig = parse(fileContent);
118
+ tsconfig.compilerOptions = tsconfig.compilerOptions || {};
119
+ const existingTypeRoots = tsconfig.compilerOptions.typeRoots || [];
120
+ let h5esTypeRoot = existingTypeRoots.find(root => root.includes('h5es-types'));
121
+ const updateTypeRoots = existingTypeRoots.filter(root => !root.includes('h5es-types'));
122
+ if (h5esTypeRoot === undefined || h5esTypeRoot != newType) {
123
+ updateTypeRoots.push(newType);
124
+ console.log('newType ', newType)
125
+ h5esTypeRoot = newType;
126
+ tsconfig.compilerOptions.typeRoots = updateTypeRoots;
127
+ fs.writeFileSync(tsconfigPath, stringify(tsconfig, null, 2));
128
+ try {
129
+ cp.execSync('npx prettier-eslint --write tsconfig.json', {});
130
+ }
131
+ catch (e) {
132
+ console.error('prettier-eslint failed:', e.message);
133
+ }
134
+ }
135
+ let slashIndex = h5esTypeRoot.lastIndexOf('/');
136
+ if (slashIndex !== -1) {
137
+ h5esType = h5esTypeRoot.substring(slashIndex + 1);
138
+ }
139
+ return h5esType;
140
+ };