@griddo/cx 1.75.210 → 1.75.211
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/build/index.js +1 -1
- package/gatsby-node.ts +1 -9
- package/package.json +4 -4
- package/src/services/distributors.ts +3 -2
- package/src/services/store.ts +13 -27
package/build/index.js
CHANGED
|
@@ -25,7 +25,7 @@ GFS4: `),console.error(e)});G[Q]||(ea=global[Q]||[],ra(G,ea),G.close=function(e)
|
|
|
25
25
|
\u2502 Access credentials failure \u2502
|
|
26
26
|
\u2502 Check that the login details are correct in your .env file \u2502
|
|
27
27
|
\u2570\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u256F
|
|
28
|
-
`)),process.exit(1)}}},hr=new On;var Yu=Y(Rn()),Xu=Y(mt()),Ku=Y(Gt());var fp=Y(mt()),Uu=Y(Gt()),hp=Y(eu()),Gu=Y($u());var Hu="1.75.
|
|
28
|
+
`)),process.exit(1)}}},hr=new On;var Yu=Y(Rn()),Xu=Y(mt()),Ku=Y(Gt());var fp=Y(mt()),Uu=Y(Gt()),hp=Y(eu()),Gu=Y($u());var Hu="1.75.211";Uu.default.config();var dp=!!process.env.GRIDDO_BUILD_LOGS&&!!JSON.parse(process.env.GRIDDO_BUILD_LOGS);function zu(...e){dp&&console.info(...e)}function Wu(e){return new Promise(t=>setTimeout(t,e))}function ai(e,t=3){return(e/1e3).toFixed(t)}function Ju(e){return"site"in e&&e.site?e?.site:void 0}function ci(...e){let t=performance.now();return e.forEach(r=>r()),ai(performance.now()-t)}function Vu(){let e=`
|
|
29
29
|
\xB7\xB7
|
|
30
30
|
\xB7\xB7
|
|
31
31
|
\xB7\xB7
|
package/gatsby-node.ts
CHANGED
|
@@ -22,24 +22,16 @@ const GRIDDO_STORE_MODE = (process.env.GRIDDO_STORE_MODE ||
|
|
|
22
22
|
const PUBLIC_FOLDER = path.resolve(__dirname, "./public");
|
|
23
23
|
const STORE_DIR_PATH = path.resolve(__dirname, "./store/");
|
|
24
24
|
const REPORT_FILE = path.resolve(PUBLIC_FOLDER, "__build-report__.json");
|
|
25
|
-
const GRIDDO_SANITIZE_PAGES = false;
|
|
26
|
-
const envVars: Record<string, any> = {};
|
|
27
25
|
|
|
28
26
|
// -----------------------------------------------------------------------------
|
|
29
27
|
// onPreInit
|
|
30
28
|
// -----------------------------------------------------------------------------
|
|
31
29
|
export const onPreInit = async () => {
|
|
32
|
-
console.log("Envs");
|
|
33
|
-
Object.keys(process.env)
|
|
34
|
-
.filter((key) => key.startsWith("GRIDDO_") || key.startsWith("GATSBY"))
|
|
35
|
-
.forEach((key) => (envVars[key] = process.env[key]));
|
|
36
|
-
console.log(envVars);
|
|
37
|
-
|
|
38
30
|
splash();
|
|
39
31
|
initCache();
|
|
40
32
|
prepareStaticFolder();
|
|
41
33
|
StoreService.init(STORE_DIR_PATH, {
|
|
42
|
-
sanitize:
|
|
34
|
+
sanitize: true,
|
|
43
35
|
mode: GRIDDO_STORE_MODE,
|
|
44
36
|
});
|
|
45
37
|
await StoreService.createBuildSource();
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@griddo/cx",
|
|
3
3
|
"description": "Griddo SSG based on Gatsby",
|
|
4
|
-
"version": "1.75.
|
|
4
|
+
"version": "1.75.211",
|
|
5
5
|
"authors": [
|
|
6
6
|
"Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
|
|
7
7
|
"Diego M. Béjar <diego.bejar@secuoyas.com>",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@babel/preset-env": "^7.14.5",
|
|
34
34
|
"@babel/preset-react": "^7.14.5",
|
|
35
35
|
"@babel/preset-typescript": "^7.16.5",
|
|
36
|
-
"@griddo/core": "^1.75.
|
|
36
|
+
"@griddo/core": "^1.75.211",
|
|
37
37
|
"@svgr/webpack": "^5.5.0",
|
|
38
38
|
"babel-loader": "^8.0.6",
|
|
39
39
|
"babel-plugin-styled-components": "^1.10.7",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"react-helmet": "^6.0.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@griddo/eslint-config-back": "^1.75.
|
|
66
|
+
"@griddo/eslint-config-back": "^1.75.211",
|
|
67
67
|
"@types/babel__core": "^7.20.0",
|
|
68
68
|
"@types/babel__preset-env": "^7.9.2",
|
|
69
69
|
"@types/csvtojson": "^2.0.0",
|
|
@@ -111,5 +111,5 @@
|
|
|
111
111
|
"publishConfig": {
|
|
112
112
|
"access": "public"
|
|
113
113
|
},
|
|
114
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "bbe568da45299c7f190e9e6b6c8e421105b56904"
|
|
115
115
|
}
|
|
@@ -14,7 +14,8 @@ import { logBox } from "../utils/shared";
|
|
|
14
14
|
*/
|
|
15
15
|
class DistributorService {
|
|
16
16
|
/**
|
|
17
|
-
* Get the body data from a ReferenceField
|
|
17
|
+
* Get the body data from a ReferenceField.
|
|
18
|
+
* `auto`, `manual` or `navigation` mode.
|
|
18
19
|
*
|
|
19
20
|
* @param data The ReferenceField props.
|
|
20
21
|
* @returns The props for one of the ReferenceField mode.
|
|
@@ -78,7 +79,7 @@ class DistributorService {
|
|
|
78
79
|
* @param props.page The Page object
|
|
79
80
|
* @param props.component.data The ReferenceField, always in the data prop.
|
|
80
81
|
* @param props.cached Boolean that indicates cache use.
|
|
81
|
-
* @returns The
|
|
82
|
+
* @returns The ContentType data.
|
|
82
83
|
*/
|
|
83
84
|
static async fetchContentTypeData(props: FetchDataProps) {
|
|
84
85
|
const {
|
package/src/services/store.ts
CHANGED
|
@@ -68,20 +68,20 @@ const BUILD_PROCESS_DATA: BuildProcessData = {};
|
|
|
68
68
|
const UNWANTED_PAGE_PROPS = ["editorID", "parentEditorID"];
|
|
69
69
|
|
|
70
70
|
/**
|
|
71
|
-
* Store service to fetch, process and save
|
|
72
|
-
*
|
|
71
|
+
* Store service to fetch, process and save object pages and sites data to be
|
|
72
|
+
* consumed by other services (Griddo itself, Gatsby, etc.)
|
|
73
73
|
*
|
|
74
74
|
* Modes:
|
|
75
|
-
* - File mode
|
|
76
|
-
* - Memory mode
|
|
75
|
+
* - { File mode } save the objects as json files in the file system (json DB)
|
|
76
|
+
* - { Memory mode } save the objects in an array.
|
|
77
77
|
*
|
|
78
78
|
* @example
|
|
79
79
|
* import { StoreService } from "./store"
|
|
80
80
|
*
|
|
81
81
|
* // Init the store service.
|
|
82
|
-
* StoreService.init("foo/pages", { mode: "file" })
|
|
82
|
+
* StoreService.init("foo/pages", { mode: "file", ... })
|
|
83
83
|
* // Save the data into files.
|
|
84
|
-
* await StoreService.
|
|
84
|
+
* await StoreService.createBuildSource()
|
|
85
85
|
* // Consume the pages as an interator.
|
|
86
86
|
* const pages = StoreService.getPages()
|
|
87
87
|
*/
|
|
@@ -94,8 +94,6 @@ class StoreService {
|
|
|
94
94
|
static buildProcessData: BuildProcessData;
|
|
95
95
|
static createdPages: Array<number>;
|
|
96
96
|
|
|
97
|
-
// Public methods
|
|
98
|
-
|
|
99
97
|
/**
|
|
100
98
|
* Initialize the Store with a path to save files (file mode) and an option object to configure the Store.
|
|
101
99
|
*
|
|
@@ -164,6 +162,7 @@ class StoreService {
|
|
|
164
162
|
);
|
|
165
163
|
|
|
166
164
|
// Unpublish (API) and delete sites
|
|
165
|
+
// TODO: Manage this to save end data to the __report-build__ file ???
|
|
167
166
|
await unpublishSites(sitesToUnpublish);
|
|
168
167
|
|
|
169
168
|
// Delete (clean) sites to publish
|
|
@@ -172,7 +171,6 @@ class StoreService {
|
|
|
172
171
|
// Set robots information to use later in the `onPostBuild` phase.
|
|
173
172
|
await RobotsService.loadRobots();
|
|
174
173
|
|
|
175
|
-
// const siteToPublishPromises = sitesToPublish.map(async (site) => {
|
|
176
174
|
for (const site of sitesToPublish) {
|
|
177
175
|
const { id: siteId, slug: siteSlug, theme, favicon } = site;
|
|
178
176
|
|
|
@@ -373,14 +371,6 @@ class StoreService {
|
|
|
373
371
|
|
|
374
372
|
await Promise.all(pagesToRender);
|
|
375
373
|
}
|
|
376
|
-
|
|
377
|
-
// Create the pLimit array of promises
|
|
378
|
-
// const limit = pLimit(1);
|
|
379
|
-
// const sitesToPublishAwaited = siteToPublishPromises.map((site) =>
|
|
380
|
-
// limit(() => site)
|
|
381
|
-
// );
|
|
382
|
-
|
|
383
|
-
// await Promise.all(sitesToPublishAwaited);
|
|
384
374
|
} catch (e) {
|
|
385
375
|
const error = e as { message: string };
|
|
386
376
|
|
|
@@ -396,11 +386,9 @@ class StoreService {
|
|
|
396
386
|
* If the Store is in memory mode `getPages` will return an array of pages.
|
|
397
387
|
*/
|
|
398
388
|
public static getPages() {
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
return this.getPagesFromMemory();
|
|
403
|
-
}
|
|
389
|
+
return this.mode === "file"
|
|
390
|
+
? this.getPagesFromFiles()
|
|
391
|
+
: this.getPagesFromMemory();
|
|
404
392
|
}
|
|
405
393
|
|
|
406
394
|
/**
|
|
@@ -415,11 +403,9 @@ class StoreService {
|
|
|
415
403
|
pages.forEach((page) => removeProperties(page, UNWANTED_PAGE_PROPS));
|
|
416
404
|
}
|
|
417
405
|
|
|
418
|
-
|
|
419
|
-
await this.savePagesToFiles(pages)
|
|
420
|
-
|
|
421
|
-
this.savePagesToMemory(pages);
|
|
422
|
-
}
|
|
406
|
+
return this.mode === "file"
|
|
407
|
+
? await this.savePagesToFiles(pages)
|
|
408
|
+
: this.savePagesToMemory(pages);
|
|
423
409
|
}
|
|
424
410
|
|
|
425
411
|
/**
|