babel-plugin-transform-react-fela-display-name

1.2.0 • Public • Published

npm version codecov MIT Licence

babel-plugin-transform-react-fela-display-name

Introduction

This plugin transforms the display names of all react-fela components created with createComponent or createComponentWithProxy to the name of the variable to which they are assigned.

For example, given:

import { createComponent } from 'react-fela';
 
const MyComponent = createComponent(() => ({}), 'input');

<MyComponent .../> typically renders as:

<FelaComponent ...>
  <FelaComponent ...>
    <input ... />
  </FelaComponent>
</FelaComponent>

With this plugin, it renders as:

<MyComponent ...>
  <FelaComponent ...>
    <input ... />
  </FelaComponent>
</MyComponent>

Installation

npm install babel-plugin-transform-react-fela-display-name --save-dev
yarn add -D babel-plugin-transfrom-react-fela-display-name

How It Works

This plugin works by injecting an extra line of code that sets the displayName after the component declaration.

For instance:

import { createComponentWithProxy } from 'react-fela';
 
const MyComponent = createComponentWithProxy(() => ({}), 'input');

becomes:

import { createComponentWithProxy } from 'react-fela';
 
const MyComponent = createComponentWithProxy(() => ({}), 'input');
MyComponent.displayName = 'MyComponent';

Usage

Via .babelrc (Recommended)

{
  "plugins": ["transform-react-fela-display-name"]
}

Via CLI

babel --plugins transform-react-fela-display-name script.js

Via Node API

require('babel-core').transform('code', {
  plugins: ['transform-react-fela-display-name']
});

Options

globalSource

If you happen to be providing the react-fela package globally, you can specify the variable name under which is made so.

For instance, the following allows for this plugin to latch onto usage of ReactFela.createComponent or ReactFela.createComponentWithProxy:

{
  "plugins": [
    [
      "transform-react-fela-display-name",
      {
        "globalSource": "ReactFela"
      }
    ]
  ]
}

functionNameRegEx

You can provide a custom regular expression to check against for function usage instead of the original one which will only match createComponent and createComponentWithProxy.

For instance, the following allows for this plugin to latch onto usage of customFunction.

{
  "plugins": [
    [
      "transform-react-fela-display-name",
      {
        "functionNameRegEx": "customFunction"
      }
    ]
  ]
}

reactFelaPackageRegEx

You can provide a custom regular expression to check against instead of the original one for package name which will only match react-fela.

For instance, the following allows for this plugin to latch onto usage of createComponent imported from custom-package.

{
  "plugins": [
    [
      "transform-react-fela-display-name",
      {
        "reactFelaPackageRegEx": "custom-package"
      }
    ]
  ]
}

Changelog

Changes to this package are recorded in the CHANGELOG.md.

Contributing

All pull requests must pass the CI status checks.

Package Sidebar

Install

npm i babel-plugin-transform-react-fela-display-name

Weekly Downloads

673

Version

1.2.0

License

MIT

Unpacked Size

247 kB

Total Files

22

Last publish

Collaborators

  • louisscruz