mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
Detect legacy aspnet-prerendering mode earlier to fix #470
This commit is contained in:
@@ -71,7 +71,8 @@
|
|||||||
// a certain flag is attached to the function instance.
|
// a certain flag is attached to the function instance.
|
||||||
function renderToStringImpl(callback, applicationBasePath, bootModule, absoluteRequestUrl, requestPathAndQuery, customDataParameter, overrideTimeoutMilliseconds) {
|
function renderToStringImpl(callback, applicationBasePath, bootModule, absoluteRequestUrl, requestPathAndQuery, customDataParameter, overrideTimeoutMilliseconds) {
|
||||||
try {
|
try {
|
||||||
var renderToStringFunc = findRenderToStringFunc(applicationBasePath, bootModule);
|
var forceLegacy = isLegacyAspNetPrerendering();
|
||||||
|
var renderToStringFunc = !forceLegacy && findRenderToStringFunc(applicationBasePath, bootModule);
|
||||||
var isNotLegacyMode = renderToStringFunc && renderToStringFunc['isServerRenderer'];
|
var isNotLegacyMode = renderToStringFunc && renderToStringFunc['isServerRenderer'];
|
||||||
if (isNotLegacyMode) {
|
if (isNotLegacyMode) {
|
||||||
// Current (non-legacy) mode - we invoke the exported function directly (instead of going through aspnet-prerendering)
|
// Current (non-legacy) mode - we invoke the exported function directly (instead of going through aspnet-prerendering)
|
||||||
@@ -81,9 +82,9 @@
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Legacy mode - just hand off execution to 'aspnet-prerendering' v1.x, which must exist in node_modules at runtime
|
// Legacy mode - just hand off execution to 'aspnet-prerendering' v1.x, which must exist in node_modules at runtime
|
||||||
renderToStringFunc = __webpack_require__(3).renderToString;
|
var aspNetPrerenderingV1RenderToString = __webpack_require__(3).renderToString;
|
||||||
if (renderToStringFunc) {
|
if (aspNetPrerenderingV1RenderToString) {
|
||||||
renderToStringFunc(callback, applicationBasePath, bootModule, absoluteRequestUrl, requestPathAndQuery, customDataParameter, overrideTimeoutMilliseconds);
|
aspNetPrerenderingV1RenderToString(callback, applicationBasePath, bootModule, absoluteRequestUrl, requestPathAndQuery, customDataParameter, overrideTimeoutMilliseconds);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
callback('If you use aspnet-prerendering >= 2.0.0, you must update your server-side boot module to call createServerRenderer. '
|
callback('If you use aspnet-prerendering >= 2.0.0, you must update your server-side boot module to call createServerRenderer. '
|
||||||
@@ -141,6 +142,24 @@
|
|||||||
}
|
}
|
||||||
return renderToStringFunc;
|
return renderToStringFunc;
|
||||||
}
|
}
|
||||||
|
function isLegacyAspNetPrerendering() {
|
||||||
|
var version = getAspNetPrerenderingPackageVersion();
|
||||||
|
return version && /^1\./.test(version);
|
||||||
|
}
|
||||||
|
function getAspNetPrerenderingPackageVersion() {
|
||||||
|
try {
|
||||||
|
var packageEntryPoint = require.resolve('aspnet-prerendering');
|
||||||
|
var packageDir = path.dirname(packageEntryPoint);
|
||||||
|
var packageJsonPath = path.join(packageDir, 'package.json');
|
||||||
|
var packageJson = require(packageJsonPath);
|
||||||
|
return packageJson.version.toString();
|
||||||
|
}
|
||||||
|
catch (ex) {
|
||||||
|
// Implies aspnet-prerendering isn't in node_modules at all (or node_modules itself doesn't exist,
|
||||||
|
// which will be the case in production based on latest templates).
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/***/ },
|
/***/ },
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
/// <reference path="../npm/aspnet-prerendering/src/PrerenderingInterfaces.d.ts" />
|
/// <reference path="../npm/aspnet-prerendering/src/PrerenderingInterfaces.d.ts" />
|
||||||
import * as url from 'url';
|
import * as url from 'url';
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
|
import * as fs from 'fs';
|
||||||
declare var __non_webpack_require__;
|
declare var __non_webpack_require__;
|
||||||
|
|
||||||
// Separate declaration and export just to add type checking on function signature
|
// Separate declaration and export just to add type checking on function signature
|
||||||
@@ -22,7 +23,8 @@ export const renderToString: RenderToStringFunc = renderToStringImpl;
|
|||||||
// a certain flag is attached to the function instance.
|
// a certain flag is attached to the function instance.
|
||||||
function renderToStringImpl(callback: RenderToStringCallback, applicationBasePath: string, bootModule: BootModuleInfo, absoluteRequestUrl: string, requestPathAndQuery: string, customDataParameter: any, overrideTimeoutMilliseconds: number) {
|
function renderToStringImpl(callback: RenderToStringCallback, applicationBasePath: string, bootModule: BootModuleInfo, absoluteRequestUrl: string, requestPathAndQuery: string, customDataParameter: any, overrideTimeoutMilliseconds: number) {
|
||||||
try {
|
try {
|
||||||
let renderToStringFunc = findRenderToStringFunc(applicationBasePath, bootModule);
|
const forceLegacy = isLegacyAspNetPrerendering();
|
||||||
|
const renderToStringFunc = !forceLegacy && findRenderToStringFunc(applicationBasePath, bootModule);
|
||||||
const isNotLegacyMode = renderToStringFunc && renderToStringFunc['isServerRenderer'];
|
const isNotLegacyMode = renderToStringFunc && renderToStringFunc['isServerRenderer'];
|
||||||
|
|
||||||
if (isNotLegacyMode) {
|
if (isNotLegacyMode) {
|
||||||
@@ -32,9 +34,9 @@ function renderToStringImpl(callback: RenderToStringCallback, applicationBasePat
|
|||||||
renderToStringFunc.apply(null, arguments);
|
renderToStringFunc.apply(null, arguments);
|
||||||
} else {
|
} else {
|
||||||
// Legacy mode - just hand off execution to 'aspnet-prerendering' v1.x, which must exist in node_modules at runtime
|
// Legacy mode - just hand off execution to 'aspnet-prerendering' v1.x, which must exist in node_modules at runtime
|
||||||
renderToStringFunc = require('aspnet-prerendering').renderToString;
|
const aspNetPrerenderingV1RenderToString = require('aspnet-prerendering').renderToString;
|
||||||
if (renderToStringFunc) {
|
if (aspNetPrerenderingV1RenderToString) {
|
||||||
renderToStringFunc(callback, applicationBasePath, bootModule, absoluteRequestUrl, requestPathAndQuery, customDataParameter, overrideTimeoutMilliseconds);
|
aspNetPrerenderingV1RenderToString(callback, applicationBasePath, bootModule, absoluteRequestUrl, requestPathAndQuery, customDataParameter, overrideTimeoutMilliseconds);
|
||||||
} else {
|
} else {
|
||||||
callback('If you use aspnet-prerendering >= 2.0.0, you must update your server-side boot module to call createServerRenderer. '
|
callback('If you use aspnet-prerendering >= 2.0.0, you must update your server-side boot module to call createServerRenderer. '
|
||||||
+ 'Either update your boot module code, or revert to aspnet-prerendering version 1.x');
|
+ 'Either update your boot module code, or revert to aspnet-prerendering version 1.x');
|
||||||
@@ -92,3 +94,22 @@ function findRenderToStringFunc(applicationBasePath: string, bootModule: BootMod
|
|||||||
|
|
||||||
return renderToStringFunc;
|
return renderToStringFunc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function isLegacyAspNetPrerendering() {
|
||||||
|
const version = getAspNetPrerenderingPackageVersion();
|
||||||
|
return version && /^1\./.test(version);
|
||||||
|
}
|
||||||
|
|
||||||
|
function getAspNetPrerenderingPackageVersion() {
|
||||||
|
try {
|
||||||
|
const packageEntryPoint = __non_webpack_require__.resolve('aspnet-prerendering');
|
||||||
|
const packageDir = path.dirname(packageEntryPoint);
|
||||||
|
const packageJsonPath = path.join(packageDir, 'package.json');
|
||||||
|
const packageJson = __non_webpack_require__(packageJsonPath);
|
||||||
|
return packageJson.version.toString();
|
||||||
|
} catch(ex) {
|
||||||
|
// Implies aspnet-prerendering isn't in node_modules at all (or node_modules itself doesn't exist,
|
||||||
|
// which will be the case in production based on latest templates).
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user