Skip to content

vdux/babel-plugin-vdux-transform

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

babel-plugin-vdux-transform

Forked from the excellent babel-plugin-react-transform. Does the same thing but works with components that aren't passed to any sort of constructor (e.g. React.createClass) so that it can be used with vdux and other things like deku.

Usage

This plugin doesn't do anything on its own, it just enables you to write transforms for your components. You apply those transforms like this:

{
  "plugins": [
    ["vdux-transform", {
      "transforms": [{
        // can be an NPM module name or a local path
        "transform": "vdux-transform-hmr"
      }, {
        // can be an NPM module name or a local path
        "transform": "./src/my-custom-transform"
      }]
    }]
  ]
}

Writing transforms

A trivial transform to add displayName's to components looks like this:

function transform (opts) {
  return (component) => {
    const parts = opts.filename.split('/')
    const file = parts[parts.length - 1]
    const name = file.slice(0, file.indexOf('.'))
    const displayName = name[0].toUpperCase() + name.slice(1)

    return {
      displayName,
      ...component,
    }
  }
}

Higher-order components

You may also specify an hoc config option which allows you to specify which functions return higher-order components (an example would be vdux-summon):

{
  "plugins": [
    ["vdux-transform", {
      "hoc": ["summon"],
      "transforms": [{
        "transform": "vdux-transform-hmr"
      }]
    }]
  ]
}

About

Babel plugin to instrument React components with custom transforms

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%