@eui/tools 6.7.3 → 6.7.5

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.
@@ -1 +1 @@
1
- 6.7.3
1
+ 6.7.5
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## 6.7.5 (2023-03-09)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * adapted csdr app phase 3 - finalized custom init json - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([d64762e8](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/d64762e8de1716e46d227186bbdbc1adf17efd22))
7
+
8
+ * * *
9
+ * * *
10
+ ## 6.7.4 (2023-03-09)
11
+
12
+ ##### Bug Fixes
13
+
14
+ * **other:**
15
+ * missing globals in polyfills - MWP-9204 [MWP-9204](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-9204) ([8056e56b](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/8056e56b400ea78a9fed4ae97f1f8d48ff2da4d3))
16
+
17
+ * * *
18
+ * * *
1
19
  ## 6.7.3 (2023-03-09)
2
20
 
3
21
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.7.3",
3
+ "version": "6.7.5",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -36,7 +36,7 @@
36
36
  <label class="col-sm-2 col-form-label">App</label>
37
37
  <div class="col-sm-10">
38
38
  <select disabled class="form-select" v-model="selectedProject">
39
- <option value="my-workplace">MyWorkplace</option>
39
+ <option value="my-workplace-host-playground-custom">MyWorkplace</option>
40
40
  </select>
41
41
  </div>
42
42
  </div>
@@ -63,7 +63,7 @@
63
63
  <thead>
64
64
  <tr>
65
65
  <th scope="col">Remote</th>
66
- <th scope="col">Participant</th>
66
+ <!-- <th scope="col">Participant</th> -->
67
67
  <th scope="col">Full SK</th>
68
68
  <th scope="col">Local</th>
69
69
  <th scope="col">Installed</th>
@@ -72,9 +72,9 @@
72
72
  <tbody>
73
73
  <tr v-for="remote in remotes">
74
74
  <td>{{ remote.name }}</td>
75
- <td>
75
+ <!-- <td>
76
76
  <div :class="{ 'text-primary fw-bold': remote.participant }">{{ remote.participant }}</div>
77
- </td>
77
+ </td> -->
78
78
  <td>
79
79
  <div :class="{ 'text-success fw-bold': remote.fullSkeletonSources }">
80
80
  {{ remote.fullSkeletonSources }}
@@ -87,6 +87,7 @@
87
87
  type="checkbox"
88
88
  :value="remote.name"
89
89
  :id="remote.name"
90
+ :disabled="isInstallRemoteSelected(remote.name)"
90
91
  v-model="selectedRemotes" />
91
92
  </div>
92
93
  </td>
@@ -97,6 +98,7 @@
97
98
  type="checkbox"
98
99
  :value="remote.name"
99
100
  :id="remote.name"
101
+ :disabled="isRemoteSelected(remote.name)"
100
102
  v-model="selectedInstalledRemotes" />
101
103
  </div>
102
104
  </td>
@@ -108,12 +110,12 @@
108
110
 
109
111
  <div class="col-6">
110
112
  <h5 class="mt-5 mb-3">
111
- Selected local remotes (intialized as sources):
113
+ Selected remotes - intialized as sources:
112
114
  <span class="text-primary fw-bold">{{ selectedRemotes.length }}</span>
113
115
  </h5>
114
116
  {{ selectedRemotes }}
115
117
  <h5 class="mt-5 mb-3">
116
- Selected local remotes (intialized as dependencies):
118
+ Selected "to-be-installed" remotes - intialized as dependencies:
117
119
  <span class="text-primary fw-bold">{{ selectedInstalledRemotes.length }}</span>
118
120
  </h5>
119
121
  {{ selectedInstalledRemotes }}
@@ -151,7 +153,7 @@
151
153
  </p>
152
154
  <p>
153
155
  Execute after the
154
- <strong>npm run init -- --custom</strong> from your command line to follow progress of installation
156
+ <strong>npm run init -- --custom [--git local]</strong> from your command line to follow progress of installation
155
157
  </p>
156
158
  </div>
157
159
  </div>
@@ -40,14 +40,14 @@ new Vue({
40
40
  if (Object.keys(finalRes).length !== 0) {
41
41
  this.selectedApp = finalRes.project;
42
42
  this.selectedEuiVersion = finalRes.euiVersion;
43
- this.selectedLocalRemotes = finalRes.remotes;
43
+ this.selectedRemotes = finalRes.remotes;
44
44
  this.selectedInstalledRemotes = finalRes.installedRemotes;
45
45
  this.deps = finalRes.deps;
46
46
  this.packages = finalRes.packages;
47
47
  }
48
48
  },
49
49
  async getPackages() {
50
- const res = await fetch("http://localhost:3000/api/remotes/packages", getRequestBody(this.selectedLocalRemotes));
50
+ const res = await fetch("http://localhost:3000/api/remotes/packages", getRequestBody(this.selectedRemotes));
51
51
  const finalRes = await res.json();
52
52
  this.packages = finalRes.packages.filter(
53
53
  (p) => p.indexOf("csdr-") < 0 && p.indexOf("cc-shared-ui") < 0 && p.indexOf("mywp-shared-ui") < 0
@@ -55,7 +55,7 @@ new Vue({
55
55
  this.deps = finalRes.deps;
56
56
  },
57
57
  reset() {
58
- this.selectedLocalRemotes = [];
58
+ this.selectedRemotes = [];
59
59
  this.selectedInstalledRemotes = [];
60
60
  this.packages = [];
61
61
  this.deps = [];
@@ -83,9 +83,15 @@ new Vue({
83
83
  }
84
84
  this.saveConfigSubmitted = true;
85
85
  },
86
+ isRemoteSelected(remoteName) {
87
+ return this.selectedRemotes.includes(remoteName);
88
+ },
89
+ isInstallRemoteSelected(remoteName) {
90
+ return this.selectedInstalledRemotes.includes(remoteName);
91
+ }
86
92
  },
87
93
  watch: {
88
- selectedLocalRemotes: {
94
+ selectedRemotes: {
89
95
  handler: function (val) {
90
96
  this.saveConfigOK = false;
91
97
  this.saveConfigSubmitted = false;
@@ -21,16 +21,16 @@ router.get('/remotes', function (req, res) {
21
21
  })
22
22
  .then((fetchedRemotes) => {
23
23
  let remotes = tools.sortArray(fetchedRemotes, 'name');
24
- remotes = remotes.map((r) => {
24
+ remotes = remotes.filter((r) => {
25
25
  let participant = false;
26
26
  if (r.fullSkeletonSources) {
27
27
  if (r.skeletonConfig.options && r.skeletonConfig.options.participant) {
28
28
  participant = true;
29
29
  }
30
30
  }
31
- return {
32
- ...r,
33
- participant,
31
+
32
+ if (r.fullSkeletonSources && !participant) {
33
+ return true;
34
34
  }
35
35
  })
36
36
  res.send(remotes);
@@ -151,29 +151,36 @@ module.exports.isLocalRemote = (npmPkg) => {
151
151
  }
152
152
 
153
153
  module.exports.getRemotesPackages = (remotes) => {
154
- let packages = [], deps = [];
154
+ let packages = [], deps = {};
155
155
 
156
- remotes.forEach((r) => {
156
+ remotes.forEach((r) => {
157
157
  const remote = this.getRemote(r);
158
- const npmPkgs = Object.keys(remote.dependencies.composite);
159
158
 
160
- deps = [...deps, ...npmPkgs];
159
+ // check sub-entry declared rootNpmPkg in config, in that case we take the real root npmPkg
160
+ const rootNpmPkg = remote.skeletonConfig.rootNpmPkg;
161
+ let rootNpmPkgName = rootNpmPkg;
162
+ if (rootNpmPkg.split('/').length > 2) {
163
+ rootNpmPkgName = rootNpmPkg.substr(0, rootNpmPkg.lastIndexOf('/'));
164
+ }
161
165
 
162
- npmPkgs.forEach((npmPkg) => {
163
- const pkg = innerPackages.getPackageByNpmPkg(npmPkg, true);
164
- if (pkg) {
165
- packages.push(pkg.name);
166
+ // adding dependencies except the rootPkg dep (as it's installed as source)
167
+ const npmPkgs = Object.keys(remote.dependencies.composite);
168
+ npmPkgs.forEach((n) => {
169
+ if (n !== rootNpmPkgName) {
170
+ deps[n] = remote.dependencies.composite[n];
166
171
  }
167
- })
168
- })
172
+ });
173
+
174
+ // adding the deps-base if the remote as any
175
+ deps = { ...deps, ...remote.dependencies.base };
169
176
 
170
- packages = packages.filter((pkg) => {
171
- return pkg.indexOf('eui') < 0;
177
+ // adding the package root as source
178
+ const pkg = innerPackages.getPackageByNpmPkg(rootNpmPkgName, true);
179
+ packages.push(pkg.name);
172
180
  });
173
181
 
174
182
  return {
175
- deps: tools.removeArrayDuplicates(deps),
183
+ deps,
176
184
  packages: tools.removeArrayDuplicates(packages)
177
185
  }
178
186
  }
179
-
@@ -2,6 +2,7 @@
2
2
 
3
3
  const tools = require('../../utils/tools');
4
4
  const configUtils = require('../config/config-utils');
5
+ const installUtils = require('../install/install-utils');
5
6
 
6
7
  const innerInitProject = require('./init-project');
7
8
  const innerRemotes = require('./remotes');
@@ -41,10 +42,8 @@ module.exports.init = (finalResponse) => {
41
42
  })
42
43
 
43
44
  .then(() => {
44
- // this is only executed for local dev installation,
45
- // in case of release the initialisation is managed by the application / package themselves
46
45
  if (!build && !skipInstall) {
47
- return installUtils.localDev.install();
46
+ return installUtils.localDev.install(customConfig.deps);
48
47
  }
49
48
  })
50
49
 
@@ -85,3 +85,4 @@ import 'zone.js/dist/zone'; // Included with Angular CLI.
85
85
  * Need to import at least one locale-data with intl.
86
86
  */
87
87
  // import 'intl/locale-data/jsonp/en';
88
+ (window as any).global = window;
@@ -52,9 +52,13 @@ module.exports.installRemote = (remoteName) => {
52
52
  }
53
53
 
54
54
 
55
- module.exports.install = () => {
55
+ module.exports.install = (providedDeps) => {
56
56
  let finalDeps = {}, resolvedDeps = {}, remoteDeps = {};
57
57
 
58
+ if (providedDeps) {
59
+ resolvedDeps = providedDeps;
60
+ }
61
+
58
62
  return Promise.resolve()
59
63
 
60
64
  .then(() => {