@rws-framework/client 2.9.17 → 2.9.19
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.
- package/cfg/tsconfigSetup.js +3 -3
- package/package.json +2 -2
- package/rws.webpack.config.js +0 -4
- package/src/client/components.ts +2 -0
- package/src/client/config.ts +8 -0
- package/src/client.ts +2 -0
- package/tsconfig.json +1 -1
package/cfg/tsconfigSetup.js
CHANGED
|
@@ -35,7 +35,7 @@ function setupTsConfig(tsConfigPath, executionDir) {
|
|
|
35
35
|
tsConfig['include'] = [];
|
|
36
36
|
} else {
|
|
37
37
|
tsConfig['include'] = tsConfig['include'].filter((inc) => {
|
|
38
|
-
if(inc === 'src'){
|
|
38
|
+
if(inc === 'src/index.ts'){
|
|
39
39
|
return true;
|
|
40
40
|
}
|
|
41
41
|
|
|
@@ -44,9 +44,9 @@ function setupTsConfig(tsConfigPath, executionDir) {
|
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
|
|
47
|
-
if (!tsConfig['include'].includes('src')) {
|
|
47
|
+
if (!tsConfig['include'].includes('src/index.ts')) {
|
|
48
48
|
console.log(chalk.blueBright('[RWS TS CONFIG]'), 'adding RWS project typescript code to project tsconfig.json');
|
|
49
|
-
tsConfig['include'].unshift('src');
|
|
49
|
+
tsConfig['include'].unshift('src/index.ts');
|
|
50
50
|
changed = true;
|
|
51
51
|
}
|
|
52
52
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rws-framework/client",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.9.
|
|
4
|
+
"version": "2.9.19",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"docs": "typedoc --tsconfig ./tsconfig.json"
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"tsc-watch": "^6.0.4",
|
|
95
95
|
"tslib": "^2.6.2",
|
|
96
96
|
"uglify-js": "^3.17.4",
|
|
97
|
-
"webpack": "^5.
|
|
97
|
+
"webpack": "^5.86.0",
|
|
98
98
|
"webpack-bundle-analyzer": "^4.10.1",
|
|
99
99
|
"webpack-cli": "^5.1.4",
|
|
100
100
|
"webpack-dev-server": "^4.15.1",
|
package/rws.webpack.config.js
CHANGED
|
@@ -80,10 +80,6 @@ const RWSWebpackWrapper = async (config) => {
|
|
|
80
80
|
resourceRegExp: /.*\.es6\.js$/,
|
|
81
81
|
contextRegExp: /node_modules/
|
|
82
82
|
}),
|
|
83
|
-
// new ESBuildPlugin({
|
|
84
|
-
// 'process.env._RWS_DEFAULTS': JSON.stringify(BuildConfigurator.exportDefaultConfig()),
|
|
85
|
-
// 'process.env._RWS_BUILD_OVERRIDE': JSON.stringify(BuildConfigurator.exportBuildConfig())
|
|
86
|
-
// })
|
|
87
83
|
];
|
|
88
84
|
|
|
89
85
|
const WEBPACK_AFTER_ACTIONS = config.actions || [];
|
package/src/client/components.ts
CHANGED
|
@@ -41,6 +41,8 @@ async function loadPartedComponents(this: RWSClientInstance): Promise<RWSInfoTyp
|
|
|
41
41
|
function defineAllComponents() {
|
|
42
42
|
const richWindowComponents: RWSWindowComponentRegister = (window as Window & RWSWindow).RWS.components;
|
|
43
43
|
|
|
44
|
+
console.log({richWindowComponents})
|
|
45
|
+
|
|
44
46
|
Object.keys(richWindowComponents).map(key => richWindowComponents[key].component).forEach((el: IWithCompose<RWSViewComponent>) => {
|
|
45
47
|
el.define(el as any, el.definition);
|
|
46
48
|
});
|
package/src/client/config.ts
CHANGED
|
@@ -104,6 +104,10 @@ async function setup(this: RWSClientInstance, config: IRWSConfig = {}): Promise<
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
+
if(config?.user){
|
|
108
|
+
this.setUser(config.user);
|
|
109
|
+
}
|
|
110
|
+
|
|
107
111
|
if (this.appConfig.get('parted')) {
|
|
108
112
|
const componentParts = await this.loadPartedComponents();
|
|
109
113
|
|
|
@@ -127,6 +131,10 @@ async function start(this: RWSClientInstance, config: IRWSConfig = {}): Promise<
|
|
|
127
131
|
this.appConfig.mergeConfig(this.config);
|
|
128
132
|
}
|
|
129
133
|
|
|
134
|
+
if(!this.user && config?.user){
|
|
135
|
+
this.setUser(config.user);
|
|
136
|
+
}
|
|
137
|
+
|
|
130
138
|
if (this.config.user && !this.config.dontPushToSW) {
|
|
131
139
|
this.pushUserToServiceWorker(this.user);
|
|
132
140
|
}
|
package/src/client.ts
CHANGED
|
@@ -110,6 +110,7 @@ class RWSClient {
|
|
|
110
110
|
|
|
111
111
|
setBackendRoutes(routes: IBackendRoute[]): RWSClient {
|
|
112
112
|
this.config.backendRoutes = routes;
|
|
113
|
+
this.appConfig.set('backendRoutes', routes);
|
|
113
114
|
return this;
|
|
114
115
|
}
|
|
115
116
|
|
|
@@ -204,6 +205,7 @@ class RWSClient {
|
|
|
204
205
|
|
|
205
206
|
logout(){
|
|
206
207
|
this.user = null;
|
|
208
|
+
localStorage.removeItem('the_rws_user');
|
|
207
209
|
}
|
|
208
210
|
}
|
|
209
211
|
|