Package Exports
- esformatter-jsx
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (esformatter-jsx) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
esformatter-jsx
esformatter plugin: format javascript files that contain React JSX blocks
Demo
Live demo: esformatter-jsx
Notes
Nested jsx elements and ternary operators
The following construct will be a bit problematic
return <div>
{ this.state.allSaved ? <div> some content </div> : null }
</div>;
this will be beautified as
return <div>
{ this.state.allSaved ?
<div> all Saved! </div> : null }
</div>;
Where possible try to assign that content from outside and use something like this
var allSaved = this.state.allSaved ? <div>All Saved!</div> : null;
return <div>
{allSaved}
</div>
The previous will be beautified as
var allSaved = this.state.allSaved ? <div>All Saved!</div> : null;
return <div>
{allSaved}
</div>
Which IMHO looks better.
best configuration
If you're running into troubles with the formatting applied to your files I found this configuration to work the best:
{
"jsx": {
"formatJSX": true, //Duh! that's the deafault
"attrsOnSameLineAsTag": false, // move each attribute to its own line
"maxAttrsOnTag": 3, // if lower or equal than 3 attributes, they will be kept on a single line
"firstAttributeOnSameLine": true, // keep the first attribute in the same line as the tag
"alignWithFirstAttribute": false, // do not align attributes with the first tag
"htmlOptions": {
"unformatted": [] // let's format all tags, the default in `js-beautify.html` is to leave unformatted a lot of tags
// which sometimes will not work fine with all jsx structures. By forcing the formatting of all tags
// this will prevent the introduction of undesired spans in the generated output
//
// example:
// <a><span>Some</span></a> // this is ok
// <a> <span>Some</span> </a> // this is not ok. React will generate extra spans for the
// the empty space characters around the span.
}
}
}
Overview
Esformatter-jsx is a plugin for esformatter meant to allow the code formatting of jsx files or js files with React code blocks, using js-beautify to beautify the html like syntax of the react components. Use at your own risk. I have tested this against complex JSX structures and seems to be workfing fine, but bugs might appear, so don't blame me :). It works for my main use case and I hope it works for you too.
This plugin is based on esformatter-jsx-ignore
If you want a bit of history about what this plugin was develop, check:
- https://github.com/millermedeiros/esformatter/issues/242
- https://github.com/facebook/esprima/issues/74
So this plugin will turn this:
var React = require('react');
var Hello = React.createClass({
render: function () {
return <div
className="hello-div">{this.props.message}</div>;
}
});
React.render(<Hello
message="world"/>, document.body);
into:
var React = require('react');
var Hello = React.createClass({
render: function() {
return <div className="hello-div">{this.props.message}</div>;
}
});
React.render(<Hello message="world"/>, document.body);
Installation
$ npm install esformatter-jsx --save-dev
Config
Newest esformatter versions autoload plugins from your node_modules
See this
Add to your esformatter config file:
In order for this to work, this plugin should be the first one! (I Know too picky, but who isn't).
{
"plugins": [
"esformatter-jsx"
],
// this is the section this plugin will use to store the settings for the jsx formatting
"jsx": {
// by default is true if set to false it works the same as esformatter-jsx-ignore
"formatJSX": true,
// keep the node attributes on the same line as the open tag. Default is true.
// Setting this to false will put each one of the attributes on a single line
"attrsOnSameLineAsTag": true,
// how many attributes should the node have before having to put each
// attribute in a new line. Default 1
"maxAttrsOnTag": 1,
// if the attributes are going to be put each one on its own line, then keep the first
// on the same line as the open tag
"firstAttributeOnSameLine": false,
// align the attributes with the first attribute (if the first attribute was kept on the same line as on the open tag)
"alignWithFirstAttribute": true,
"htmlOptions": { // same as the ones passed to jsbeautifier.html
"brace_style": "collapse",
"indent_char": " ",
//indentScripts: "keep",
"indent_size": 2,
"max_preserve_newlines": 2,
"preserve_newlines": true
//unformatted: ["a", "sub", "sup", "b", "i", "u" ],
//wrapLineLength: 0
}
}
}
The htmlOptions
are passed directly to js-beautify, please check his
documentation for all the possible options.
Or you can manually register your plugin:
// register plugin
esformatter.register(require('esformatter-jsx'));
Usage
var fs = require('fs');
var esformatter = require('esformatter');
//register plugin manually
esformatter.register(require('esformatter-jsx'));
var str = fs.readFileSync('someKewlFile.js').toString();
var output = esformatter.format(str);
//-> output will now contain the formatted code
See esformatter for more options and further usage.
License
MIT @Roy Riojas