Skip to content

Instantly share code, notes, and snippets.

@drd
Last active September 23, 2015 17:43
Show Gist options
  • Save drd/ac470e06099a41c4961d to your computer and use it in GitHub Desktop.
Save drd/ac470e06099a41c4961d to your computer and use it in GitHub Desktop.
Fun with builder
const babel = require('babel');
const ast = require('./ast');
const extraction = require('./extraction');
const freeVariables = require('./free-variables');
module.exports = function({Plugin, types: t}) {
return new Plugin('transformation', {
visitor: {
JSXElement: function(node, parent) {
if (ast.isElementMarker(node)) {
const vars = freeVariables.freeVariablesInMessage(node);
const message = extraction.extractElementMessage(node);
return t.callExpression(
t.memberExpression(
t.identifier('React'),
t.identifier('createElement')
),
[
t.literal('I18N'),
t.objectExpression([
t.property('init', t.identifier('message'), t.literal(message)),
t.property('init', t.identifier('context'), t.arrayExpression(
vars.map(v => t.identifier(v))
)),
t.property('init', t.identifier('fallback'), t.functionExpression(
null,
[],
t.blockStatement([
t.returnStatement(
t.callExpression(
t.memberExpression(
t.identifier('React'),
t.identifier('createElement')
),
[
t.literal('span'),
t.identifier('null'),
t.arrayExpression(node.children)
]
)
)
])
))
]),
t.identifier('null')
]
)
}
}
}
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment