Merge remote-tracking branch 'origin/gh-pages' into gh-pages
This commit is contained in:
commit
e451c9b4a1
|
@ -31,15 +31,18 @@ var templatePJSTemplate = _.template('var <%= name %> = function () {\n' +
|
|||
'return <%= body %>\n' +
|
||||
'};\n');
|
||||
var templateTypescriptTemplate = _.template('<%= vars %>\n\n<%= injectedFunctions %>\nvar fn = function() { return <%= body %> };\nexport = fn\n');
|
||||
var templateJSRTTemplate = _.template('(function () {\n <%= injectedFunctions %>\n return function(){\nreturn <%= body %>}}\n)()');
|
||||
|
||||
var templates = {
|
||||
amd: templateAMDTemplate,
|
||||
commonjs: templateCommonJSTemplate,
|
||||
typescript: templateTypescriptTemplate,
|
||||
es6: templateES6Template,
|
||||
none: templatePJSTemplate
|
||||
none: templatePJSTemplate,
|
||||
jsrt: templateJSRTTemplate
|
||||
};
|
||||
|
||||
|
||||
var htmlSelfClosingTags = ['area', 'base', 'br', 'col', 'command', 'embed', 'hr', 'img', 'input', 'keygen', 'link', 'meta', 'param', 'source', 'track', 'wbr'];
|
||||
|
||||
var templateProp = 'rt-repeat';
|
||||
|
@ -443,18 +446,36 @@ function convertTemplateToReact(html, options) {
|
|||
var data = {body: body, injectedFunctions: '', requireNames: requireVars, requirePaths: requirePaths, vars: vars, name: options.name};
|
||||
data.injectedFunctions = context.injectedFunctions.join('\n');
|
||||
var code = generate(data, options);
|
||||
if (options.modules !== 'typescript') {
|
||||
if (options.modules !== 'typescript' && options.modules !== 'jsrt') {
|
||||
try {
|
||||
var tree = esprima.parse(code, {range: true, tokens: true, comment: true});
|
||||
tree = escodegen.attachComments(tree, tree.comments, tree.tokens);
|
||||
code = escodegen.generate(tree, {comment: true});
|
||||
} catch (e) {
|
||||
console.log(code);
|
||||
throw new RTCodeError(e.message, e.index, -1);
|
||||
}
|
||||
}
|
||||
return code;
|
||||
}
|
||||
|
||||
function convertJSRTToJS(text, options) {
|
||||
options = _.defaults({}, options, defaultOptions);
|
||||
options.modules = 'jsrt';
|
||||
var templateMatcherJSRT = /<template>([^]+)<\/template>/gm;
|
||||
var code = text.replace(templateMatcherJSRT, function (template, html) {
|
||||
return convertTemplateToReact(html, options).replace(/;$/,'');
|
||||
});
|
||||
try {
|
||||
var tree = esprima.parse(code, {range: true, tokens: true, comment: true});
|
||||
tree = escodegen.attachComments(tree, tree.comments, tree.tokens);
|
||||
code = escodegen.generate(tree, {comment: true});
|
||||
} catch (e) {
|
||||
throw new RTCodeError(e.message, e.index, -1);
|
||||
}
|
||||
return code;
|
||||
}
|
||||
|
||||
function generate(data, options) {
|
||||
var template = templates[options.modules];
|
||||
return template(data);
|
||||
|
@ -483,6 +504,7 @@ function normalizeName(name) {
|
|||
|
||||
module.exports = {
|
||||
convertTemplateToReact: convertTemplateToReact,
|
||||
convertJSRTToJS: convertJSRTToJS,
|
||||
RTCodeError: RTCodeError,
|
||||
normalizeName: normalizeName,
|
||||
_test: {
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
define([
|
||||
'react',
|
||||
'lodash'
|
||||
], function (React, _) {
|
||||
var comp = React.createClass({
|
||||
render: function () {
|
||||
return function () {
|
||||
return React.createElement('div', {}, 'hello world');
|
||||
};
|
||||
}()
|
||||
});
|
||||
return comp;
|
||||
});
|
|
@ -0,0 +1,10 @@
|
|||
define(['react','lodash'], function (React, _) {
|
||||
var comp = React.createClass({
|
||||
render:
|
||||
<template>
|
||||
<div>hello world</div>
|
||||
</template>
|
||||
});
|
||||
|
||||
return comp;
|
||||
});
|
|
@ -148,6 +148,21 @@ test('convert div with all module types', function (t) {
|
|||
}
|
||||
});
|
||||
|
||||
test('convert jsrt and test source results', function (t) {
|
||||
var files = ['simple.jsrt'];
|
||||
t.plan(files.length);
|
||||
files.forEach(check);
|
||||
|
||||
function check(file) {
|
||||
var filename = path.join(dataPath, file);
|
||||
var js = readFileNormalized(filename);
|
||||
var expected = readFileNormalized(path.join(dataPath, file.replace('.jsrt','.js')));
|
||||
// var expected = fs.readFileSync(filename.replace(".html", ".js")).toString();
|
||||
var actual = reactTemplates.convertJSRTToJS(js).replace(/\r/g, '').trim();
|
||||
compareAndWrite(t, actual, expected, filename);
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* @param {string} html
|
||||
* @return {string}
|
||||
|
|
Loading…
Reference in New Issue