mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
work around issues with server bundling
This commit is contained in:
parent
a3733dbdd8
commit
cd855f6edf
@ -523,7 +523,7 @@ class CompileContext extends EventEmitter {
|
||||
|
||||
var templateVar;
|
||||
|
||||
if (this.options.browser) {
|
||||
if (this.options.browser || this.options.requireTemplates) {
|
||||
// When compiling a Marko template for the browser we just use `require('./template.marko')`
|
||||
templateVar = this.addStaticVar(varName, builder.require(builder.literal(relativePath)));
|
||||
} else {
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
var path = require('path');
|
||||
var resolveFrom = require('resolve-from');
|
||||
var Template = require('./html/Template');
|
||||
var Template = require('../html/Template');
|
||||
|
||||
exports.getDeps = getDeps;
|
||||
exports.resolveDep = resolveDep;
|
||||
@ -1,13 +1,15 @@
|
||||
require('./stream');
|
||||
require('./dependencies');
|
||||
|
||||
if (process.env.hasOwnProperty('MARKO_HOT_RELOAD')) {
|
||||
require('../hot-reload').enable();
|
||||
}
|
||||
if (!process.env.BUNDLE) {
|
||||
if (process.env.MARKO_HOT_RELOAD) {
|
||||
require('../hot-reload').enable();
|
||||
}
|
||||
|
||||
// If process was launched with browser refresh then automatically
|
||||
// enable browser-refresh
|
||||
require('../browser-refresh').enable();
|
||||
// If process was launched with browser refresh then automatically
|
||||
// enable browser-refresh
|
||||
require('../browser-refresh').enable();
|
||||
}
|
||||
|
||||
function fixFlush() {
|
||||
try {
|
||||
|
||||
160
runtime/loader/index-default.js
Normal file
160
runtime/loader/index-default.js
Normal file
@ -0,0 +1,160 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = function load(templatePath, templateSrc, options) {
|
||||
if (arguments.length === 1) {
|
||||
return doLoad(templatePath);
|
||||
} else if (arguments.length === 2) {
|
||||
// see if second argument is templateSrc (a String)
|
||||
// or options (an Object)
|
||||
var lastArg = arguments[arguments.length - 1];
|
||||
if (typeof lastArg === 'string') {
|
||||
return doLoad(templatePath, templateSrc);
|
||||
} else {
|
||||
var finalOptions = templateSrc;
|
||||
return doLoad(templatePath, null, finalOptions);
|
||||
}
|
||||
} else if (arguments.length === 3) {
|
||||
// assume function called according to function signature
|
||||
return doLoad(templatePath, templateSrc, options);
|
||||
} else {
|
||||
throw new Error('Illegal arguments');
|
||||
}
|
||||
};
|
||||
|
||||
var nodePath = require('path');
|
||||
var fs = require('fs');
|
||||
var Module = require('module').Module;
|
||||
var compilerPath = nodePath.join(__dirname, '../../compiler');
|
||||
var markoCompiler = require(compilerPath);
|
||||
var cwd = process.cwd();
|
||||
var fsOptions = {encoding: 'utf8'};
|
||||
|
||||
function loadSource(templatePath, compiledSrc) {
|
||||
var templateModulePath = templatePath + '.js';
|
||||
|
||||
// Short-circuit loading if the template has already been cached in the Node.js require cache
|
||||
var cached = require.cache[templateModulePath];
|
||||
if (cached) {
|
||||
return cached.exports;
|
||||
}
|
||||
|
||||
var templateModule = new Module(templateModulePath, module);
|
||||
templateModule.paths = Module._nodeModulePaths(nodePath.dirname(templateModulePath));
|
||||
templateModule.filename = templateModulePath;
|
||||
|
||||
Module._cache[templateModulePath] = templateModule;
|
||||
|
||||
templateModule._compile(
|
||||
compiledSrc,
|
||||
templateModulePath);
|
||||
|
||||
return templateModule.exports;
|
||||
}
|
||||
|
||||
function getLoadedTemplate(path) {
|
||||
var cached = require.cache[path];
|
||||
return cached && cached.exports.render ? cached.exports : undefined;
|
||||
}
|
||||
|
||||
function loadFile(templatePath, options) {
|
||||
options = Object.assign({}, markoCompiler.defaultOptions, options);
|
||||
|
||||
var targetFile = templatePath + '.js';
|
||||
|
||||
// Short-circuit loading if the template has already been cached in the Node.js require cache
|
||||
var cachedTemplate = getLoadedTemplate(targetFile) || getLoadedTemplate(templatePath);
|
||||
if (cachedTemplate) {
|
||||
return cachedTemplate;
|
||||
}
|
||||
|
||||
// Just in case the the path wasn't a fully resolved file system path...
|
||||
templatePath = nodePath.resolve(cwd, templatePath);
|
||||
targetFile = templatePath + '.js';
|
||||
|
||||
// Check the require cache again after fully resolving the path
|
||||
cachedTemplate = getLoadedTemplate(targetFile) || getLoadedTemplate(templatePath);
|
||||
if (cachedTemplate) {
|
||||
return cachedTemplate;
|
||||
}
|
||||
|
||||
// If the `assumeUpToDate` option is true then we just assume that the compiled template on disk is up-to-date
|
||||
// if it exists
|
||||
if (options.assumeUpToDate) {
|
||||
if (fs.existsSync(targetFile)) {
|
||||
return require(targetFile);
|
||||
}
|
||||
}
|
||||
|
||||
var isUpToDate = markoCompiler.checkUpToDate(targetFile);
|
||||
|
||||
if (isUpToDate) {
|
||||
return require(targetFile);
|
||||
}
|
||||
|
||||
var compiledSrc = markoCompiler.compileFile(templatePath, options);
|
||||
|
||||
// console.log('Compiled code for "' + templatePath + '":\n' + compiledSrc);
|
||||
|
||||
var filename = nodePath.basename(targetFile);
|
||||
var targetDir = nodePath.dirname(targetFile);
|
||||
var tempFile = nodePath.join(targetDir, '.' + process.pid + '.' + Date.now() + '.' + filename);
|
||||
fs.writeFileSync(tempFile, compiledSrc, fsOptions);
|
||||
fs.renameSync(tempFile, targetFile);
|
||||
|
||||
return require(targetFile);
|
||||
}
|
||||
|
||||
function createRenderProxy(template) {
|
||||
return function(data, out) {
|
||||
template._(data, out);
|
||||
};
|
||||
}
|
||||
|
||||
function doLoad(templatePath, templateSrc, options) {
|
||||
options = Object.assign({}, markoCompiler.defaultOptions, options);
|
||||
|
||||
var template;
|
||||
if (typeof templatePath.render === 'function') {
|
||||
template = templatePath;
|
||||
} else {
|
||||
var writeToDisk = options.writeToDisk;
|
||||
|
||||
|
||||
// If the template source is provided then we can compile the string
|
||||
// in memory and there is no need to read template file from disk or
|
||||
// write compiled code to disk.
|
||||
//
|
||||
// If writeToDisk is false then there will be no up-to-date check
|
||||
// since compiled source won't be written to disk.
|
||||
if ((templateSrc != null) || (writeToDisk === false)) {
|
||||
// Don't write the compiled template to disk. Instead, load it
|
||||
// directly from the compiled source using the internals of the
|
||||
// Node.js module loading system.
|
||||
if (templateSrc == null) {
|
||||
templateSrc = fs.readFileSync(templatePath, fsOptions);
|
||||
}
|
||||
|
||||
var compiledSrc = markoCompiler.compile(templateSrc, templatePath, options);
|
||||
|
||||
if (writeToDisk === true) {
|
||||
var targetFile = templatePath + '.js';
|
||||
fs.writeFileSync(targetFile, compiledSrc, fsOptions);
|
||||
}
|
||||
|
||||
template = loadSource(templatePath, compiledSrc);
|
||||
} else {
|
||||
template = loadFile(templatePath, options);
|
||||
}
|
||||
}
|
||||
|
||||
if (options.buffer === false) {
|
||||
var Template = template.constructor;
|
||||
|
||||
template = new Template(
|
||||
template.path,
|
||||
createRenderProxy(template),
|
||||
options);
|
||||
}
|
||||
|
||||
return template;
|
||||
}
|
||||
@ -1,158 +1,7 @@
|
||||
'use strict';
|
||||
module.exports = function load(templatePath, templateSrc, options) {
|
||||
if (arguments.length === 1) {
|
||||
return doLoad(templatePath);
|
||||
} else if (arguments.length === 2) {
|
||||
// see if second argument is templateSrc (a String)
|
||||
// or options (an Object)
|
||||
var lastArg = arguments[arguments.length - 1];
|
||||
if (typeof lastArg === 'string') {
|
||||
return doLoad(templatePath, templateSrc);
|
||||
} else {
|
||||
var finalOptions = templateSrc;
|
||||
return doLoad(templatePath, null, finalOptions);
|
||||
}
|
||||
} else if (arguments.length === 3) {
|
||||
// assume function called according to function signature
|
||||
return doLoad(templatePath, templateSrc, options);
|
||||
} else {
|
||||
throw new Error('Illegal arguments');
|
||||
}
|
||||
};
|
||||
|
||||
var nodePath = require('path');
|
||||
var fs = require('fs');
|
||||
var Module = require('module').Module;
|
||||
var markoCompiler = require('../../compiler');
|
||||
var cwd = process.cwd();
|
||||
var fsOptions = {encoding: 'utf8'};
|
||||
|
||||
function loadSource(templatePath, compiledSrc) {
|
||||
var templateModulePath = templatePath + '.js';
|
||||
|
||||
// Short-circuit loading if the template has already been cached in the Node.js require cache
|
||||
var cached = require.cache[templateModulePath];
|
||||
if (cached) {
|
||||
return cached.exports;
|
||||
}
|
||||
|
||||
var templateModule = new Module(templateModulePath, module);
|
||||
templateModule.paths = Module._nodeModulePaths(nodePath.dirname(templateModulePath));
|
||||
templateModule.filename = templateModulePath;
|
||||
|
||||
Module._cache[templateModulePath] = templateModule;
|
||||
|
||||
templateModule._compile(
|
||||
compiledSrc,
|
||||
templateModulePath);
|
||||
|
||||
return templateModule.exports;
|
||||
}
|
||||
|
||||
function getLoadedTemplate(path) {
|
||||
var cached = require.cache[path];
|
||||
return cached && cached.exports.render ? cached.exports : undefined;
|
||||
}
|
||||
|
||||
function loadFile(templatePath, options) {
|
||||
options = Object.assign({}, markoCompiler.defaultOptions, options);
|
||||
|
||||
var targetFile = templatePath + '.js';
|
||||
|
||||
// Short-circuit loading if the template has already been cached in the Node.js require cache
|
||||
var cachedTemplate = getLoadedTemplate(targetFile) || getLoadedTemplate(templatePath);
|
||||
if (cachedTemplate) {
|
||||
return cachedTemplate;
|
||||
}
|
||||
|
||||
// Just in case the the path wasn't a fully resolved file system path...
|
||||
templatePath = nodePath.resolve(cwd, templatePath);
|
||||
targetFile = templatePath + '.js';
|
||||
|
||||
// Check the require cache again after fully resolving the path
|
||||
cachedTemplate = getLoadedTemplate(targetFile) || getLoadedTemplate(templatePath);
|
||||
if (cachedTemplate) {
|
||||
return cachedTemplate;
|
||||
}
|
||||
|
||||
// If the `assumeUpToDate` option is true then we just assume that the compiled template on disk is up-to-date
|
||||
// if it exists
|
||||
if (options.assumeUpToDate) {
|
||||
if (fs.existsSync(targetFile)) {
|
||||
return require(targetFile);
|
||||
}
|
||||
}
|
||||
|
||||
var isUpToDate = markoCompiler.checkUpToDate(targetFile);
|
||||
|
||||
if (isUpToDate) {
|
||||
return require(targetFile);
|
||||
}
|
||||
|
||||
var compiledSrc = markoCompiler.compileFile(templatePath, options);
|
||||
|
||||
// console.log('Compiled code for "' + templatePath + '":\n' + compiledSrc);
|
||||
|
||||
var filename = nodePath.basename(targetFile);
|
||||
var targetDir = nodePath.dirname(targetFile);
|
||||
var tempFile = nodePath.join(targetDir, '.' + process.pid + '.' + Date.now() + '.' + filename);
|
||||
fs.writeFileSync(tempFile, compiledSrc, fsOptions);
|
||||
fs.renameSync(tempFile, targetFile);
|
||||
|
||||
return require(targetFile);
|
||||
}
|
||||
|
||||
function createRenderProxy(template) {
|
||||
return function(data, out) {
|
||||
template._(data, out);
|
||||
};
|
||||
}
|
||||
|
||||
function doLoad(templatePath, templateSrc, options) {
|
||||
options = Object.assign({}, markoCompiler.defaultOptions, options);
|
||||
|
||||
var template;
|
||||
if (typeof templatePath.render === 'function') {
|
||||
template = templatePath;
|
||||
} else {
|
||||
var writeToDisk = options.writeToDisk;
|
||||
|
||||
|
||||
// If the template source is provided then we can compile the string
|
||||
// in memory and there is no need to read template file from disk or
|
||||
// write compiled code to disk.
|
||||
//
|
||||
// If writeToDisk is false then there will be no up-to-date check
|
||||
// since compiled source won't be written to disk.
|
||||
if ((templateSrc != null) || (writeToDisk === false)) {
|
||||
// Don't write the compiled template to disk. Instead, load it
|
||||
// directly from the compiled source using the internals of the
|
||||
// Node.js module loading system.
|
||||
if (templateSrc == null) {
|
||||
templateSrc = fs.readFileSync(templatePath, fsOptions);
|
||||
}
|
||||
|
||||
var compiledSrc = markoCompiler.compile(templateSrc, templatePath, options);
|
||||
|
||||
if (writeToDisk === true) {
|
||||
var targetFile = templatePath + '.js';
|
||||
fs.writeFileSync(targetFile, compiledSrc, fsOptions);
|
||||
}
|
||||
|
||||
template = loadSource(templatePath, compiledSrc);
|
||||
} else {
|
||||
template = loadFile(templatePath, options);
|
||||
}
|
||||
}
|
||||
|
||||
if (options.buffer === false) {
|
||||
var Template = template.constructor;
|
||||
|
||||
template = new Template(
|
||||
template.path,
|
||||
createRenderProxy(template),
|
||||
options);
|
||||
}
|
||||
|
||||
return template;
|
||||
if (process.env.BUNDLE) {
|
||||
// you cannot load templates dynamically within a bundle
|
||||
// all templates should be pre-compiled as part of the bundle
|
||||
module.exports = function(){};
|
||||
} else {
|
||||
module.exports = require('./index-default');
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user