fix(core): update
This commit is contained in:
parent
6e1dcccd81
commit
e8191187a1
@ -46,8 +46,12 @@ export class SmartSSR {
|
||||
console.log(`${urlArg}: ${msg.text()}`);
|
||||
});
|
||||
|
||||
page.on('load', async (...args) => {
|
||||
await plugins.smartdelay.delayFor(5000);
|
||||
const renderTimeMeasurement = new plugins.smarttime.HrtMeasurement();
|
||||
renderTimeMeasurement.start();
|
||||
await page.goto(urlArg, {
|
||||
waitUntil: 'networkidle2',
|
||||
});
|
||||
|
||||
let screenshotBuffer: Buffer;
|
||||
|
||||
if (this.options.debug) {
|
||||
@ -61,19 +65,7 @@ export class SmartSSR {
|
||||
const renderedPageString = pageContent;
|
||||
resultDeferred.resolve(renderedPageString);
|
||||
|
||||
if (this.options.debug) {
|
||||
plugins.smartfile.memory.toFsSync(
|
||||
renderedPageString,
|
||||
plugins.path.join(paths.noGitDir, 'test.html')
|
||||
);
|
||||
const fs = await import('fs');
|
||||
fs.writeFileSync(plugins.path.join(paths.noGitDir, 'test.png'), screenshotBuffer);
|
||||
}
|
||||
});
|
||||
|
||||
const renderTimeMeasurement = new plugins.smarttime.HrtMeasurement();
|
||||
renderTimeMeasurement.start();
|
||||
await page.goto(urlArg);
|
||||
const result = await resultDeferred.promise;
|
||||
renderTimeMeasurement.stop();
|
||||
|
||||
@ -87,6 +79,17 @@ export class SmartSSR {
|
||||
console.log(
|
||||
`The rendering alone took ${renderTimeMeasurement.milliSeconds} milliseconds for ${urlArg}`
|
||||
);
|
||||
|
||||
// debug
|
||||
if (this.options.debug) {
|
||||
plugins.smartfile.memory.toFsSync(
|
||||
renderedPageString,
|
||||
plugins.path.join(paths.noGitDir, 'test.html')
|
||||
);
|
||||
const fs = await import('fs');
|
||||
fs.writeFileSync(plugins.path.join(paths.noGitDir, 'test.png'), screenshotBuffer);
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
@ -56,9 +56,6 @@ export function serializeFunction(rootNode) {
|
||||
if (childNode.tagName === 'STYLE') {
|
||||
childNode.textContent = prependCss(nodeUUID, childNode.textContent);
|
||||
} else {
|
||||
if (nodeArg.tagName?.includes('ARTICLEGRID')) {
|
||||
console.log('hello ' + childNode.id);
|
||||
}
|
||||
serializeNode(childNode, logThis);
|
||||
}
|
||||
noteForAppending.push(childNode);
|
||||
|
Loading…
Reference in New Issue
Block a user