2020-02-12 21:31:22 +00:00
|
|
|
import * as plugins from './smartssr.plugins';
|
|
|
|
import * as paths from './smartssr.paths';
|
|
|
|
|
|
|
|
import { serializeFunction } from './smartssr.function.serialize';
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
export class SmartSSR {
|
|
|
|
public browser: plugins.smartpuppeteer.puppeteer.Browser;
|
|
|
|
public async start() {
|
|
|
|
this.browser = await plugins.smartpuppeteer.getEnvAwareBrowserInstance();
|
|
|
|
}
|
|
|
|
public async stop() {
|
|
|
|
if (this.browser) {
|
|
|
|
await plugins.smartdelay.delayFor(3000);
|
|
|
|
await this.browser.close();
|
|
|
|
this.browser = null;
|
|
|
|
} else {
|
|
|
|
console.log('browser was not in started mode');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public async renderPage(urlArg: string) {
|
|
|
|
const resultDeferred = plugins.smartpromise.defer<string>();
|
|
|
|
const page = await this.browser.newPage();
|
|
|
|
page.on('console', (event: any) => console.log(event._text));
|
|
|
|
|
|
|
|
page.on('load', async (...args) => {
|
|
|
|
// await plugins.smartdelay.delayFor(2000);
|
|
|
|
await page.$eval('body', serializeFunction);
|
|
|
|
const pageContent = await page.content();
|
|
|
|
const renderedPageString = pageContent;
|
|
|
|
resultDeferred.resolve(renderedPageString);
|
2020-02-12 21:32:25 +00:00
|
|
|
plugins.smartfile.memory.toFsSync(
|
|
|
|
renderedPageString,
|
|
|
|
plugins.path.join(paths.noGitDir, 'test.html')
|
|
|
|
);
|
2020-02-12 21:31:22 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
await page.goto(urlArg);
|
2020-02-12 21:32:25 +00:00
|
|
|
const result = await resultDeferred.promise;
|
2020-02-12 21:31:22 +00:00
|
|
|
page.close();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|