fix(core): update

This commit is contained in:
Philipp Kunz 2020-08-06 15:30:54 +00:00
parent 6e1dcccd81
commit e8191187a1
2 changed files with 29 additions and 29 deletions

View File

@ -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;
}
}

View File

@ -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);