1.0.2 • Published 10 months ago

babel-plugin-react-gen-unique-id v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

babel-plugin-react-auto-unique-id

Example

in

const Foo = () =>
  <Bar>
    <div>
  </Bar>

out

const Foo = () =>
  <Bar data-test-id="Foo-Bar">
    <div data-test-id="Foo-Bar-div">
  </Bar>

Useful with styled-components

in

const Wrapper = styled.div`...`

const Bar = styled.div`...`

const Foo = () =>
  <Wrapper>
    <Bar>
  </Wrapper>

out

const Wrapper = styled.div`...`

const Bar = styled.div`...`

const Foo = () =>
  <Wrapper data-test="Foo-Wrapper">
    <Bar data-test="Foo-Wrapper-Bar">
  </Wrapper>

Install

yarn add davidgustys/babel-plugin-react-auto-unique-id

or

npm install davidgustys/babel-plugin-react-auto-unique-id

Usage

in .babelrc

"plugins": [
  "babel-plugin-react-auto-unique-id",
  ...