babel-plugin-transform-jade-to-react
v0.1.0
Published
Babel plugin for jade to react
Downloads
8
Maintainers
Readme
babel-plugin-transform-jade-to-react
Babel plugin for jade to react
Usage
jade`.simple(data='{yoyo}')`
// compiles to
React.createElement("div", {
data: yoyo,
className: "simple"
});
Difference from jade
http://jade-lang.com/reference
Attributes
some='{this.props.some}'
Case
switch (this.props.some) {
case 'a': {
return jade`p hoge`
}
case 'b': {
return jade`p fuga`
}
}
Code
this.props.xs.map((x) => {
return jade`p(x='{x}')`
})
Comments
If you want.
Conditionals
if (this.props.some) {
return jade`p xxx`
} else {
return jade`p yyy`
}
Doctype
If you want.
Extends
?
Filters
?
Includes
?
Template inheritance
?
Interpolation
Do not use
Iteration
this.props.xs.map((x) => {
return jade`p(x='{x}')`
})
Mixins
?
Plain Text
:+1:
Tags
?
With Browserify
$ browserify -t [ babelify --plugins [ transform-jade-to-react ] ] file
with ES2015
Example:
import React from 'react'
import Foo from './foo.js'
export default class App extends React.Component {
constructor () {
super()
}
render () {
return jade`
.awesome#app
Foo
`
}
}
$ browserify -t [ babelify --plugins [ transform-jade-to-react ] --presets [ es2015 ] ] file
Installation
% npm install babel-plugin-transform-jade-to-react
Requirements
- Node.js
Build
% npm run build
Test
% npm test
Author
- jigsaw (http://jgs.me, @e-jigsaw)
License
MIT
The MIT License (MIT)
Copyright (c) 2016 Takaya Kobayashi
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.