Skip to content

dwaynejs/babel-plugin-transform-dwayne-jsx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

babel-plugin-transform-dwayne-jsx

Babel plugin for transforming JSX into Dwayne-compatible js.

It's recommended to use babel-preset-dwayne instead of the plugin itself.

Example

Input:

const tmpl = (
  <div Class:active={active}>
    {text}
    <OtherBlock/>
  </div>
);

Output:

let _tmpl, _mixin;

const tmpl = (_tmpl = [{
  type: "div",
  args: {
    "Class:active": (_mixin = _ => _.active, _mixin.mixin = Class, _mixin.__source = "source.js:2:8", _mixin)
  },
  children: [{
    type: "#text",
    value: _ => _.text
  }, {
    type: OtherBlock,
    args: {
      __source: "source.js:4:6"
    }
  }]
}], _tmpl.vars = ["active", "text"], _tmpl);

Transformer

It's similar to transform-dwayne-js, but for babel and JSX only.

All the options passed to the plugin are passed to the transformer itself.

By default the plugin sets options.useES6 to true.

About

Babel plugin for transforming jsx

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published