# babel-plugin-react-native-dynamic-stylename-to-style

> Dynamically resolve styleName in RN with support for multi-class selectors (for easier modifiers)

Latest version **0.14.0** (published 2020-04-27) · MIT license · 0 weekly downloads

## Install

```sh
npm install babel-plugin-react-native-dynamic-stylename-to-style
pnpm add babel-plugin-react-native-dynamic-stylename-to-style
yarn add babel-plugin-react-native-dynamic-stylename-to-style
bun add babel-plugin-react-native-dynamic-stylename-to-style
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.14.0 |
| Published | 2020-04-27 |
| First published | 2020-01-24 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 14.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Pavel Zhukov |
| Maintainers | cray0000 |
| Keywords | babel, babel-plugin, react-native, stylename, style |

## Links

- npm: https://www.npmjs.com/package/babel-plugin-react-native-dynamic-stylename-to-style
- Repository: https://github.com/dmapper/babel-plugin-react-native-dynamic-stylename-to-style
- Homepage: https://github.com/dmapper/babel-plugin-react-native-dynamic-stylename-to-style#readme
- Issues: https://github.com/dmapper/babel-plugin-react-native-dynamic-stylename-to-style/issues
- npm.io page: https://npm.io/package/babel-plugin-react-native-dynamic-stylename-to-style

## Dependencies (1)

- [react-native-dynamic-style-processor](https://npm.io/package/react-native-dynamic-style-processor.md) ^0.21.0

## Alternatives

- [@openai/codex-sdk](https://npm.io/package/@openai/codex-sdk.md) — 731.4K weekly downloads
- [babel-plugin-transform-react-jsx](https://npm.io/package/babel-plugin-transform-react-jsx.md) — 565.0K weekly downloads
- [babel-helper-remove-or-void](https://npm.io/package/babel-helper-remove-or-void.md) — 508.5K weekly downloads
- [@pnpm/store-controller-types](https://npm.io/package/@pnpm/store-controller-types.md) — 186.9K weekly downloads
- [react-native-signature-canvas](https://npm.io/package/react-native-signature-canvas.md) — 155.6K weekly downloads

## Recent versions

- 0.14.0 (latest) — 2020-04-27
- 0.13.2 — 2020-01-27
- 0.13.1 — 2020-01-24

## README

# babel-plugin-react-native-dynamic-stylename-to-style

Transform JSX `styleName` property to `style` property in react-native. The `styleName` attribute and syntax are based on [babel-plugin-react-css-modules](https://github.com/gajus/babel-plugin-react-css-modules#conventions).

## Information

This is the fork of https://github.com/kristerkari/babel-plugin-react-native-stylename-to-style

The differences are:

1. Support resolving multi-class selectors in CSS:

```jsx
import classnames from 'classnames'

function Button ({
  variant,  // [string] 'primary' | 'secondary'
  dark,     // [bool]
  disabled  // [bool]
}) {
  return (
    <Text
      styleName={classnames('button', [variant, { dark, disabled }])}
    >CLICK ME</Text>
  )
}
```

```sass
.button
  background-color: blue
  &.primary
    color: #ff0000
    &.disabled
      color: rgba(#ff0000, 0.5)
  &.secondary
    color: #00ff00
    &.disabled
      color: rgba(#00ff00, 0.5)
  &.disabled
    color: #777

.dark
  &.button
    background-color: purple
    &.primary
      color: white
      &.disabled
        color: #ddd
  &.disabled
    color: #eee
```

And what's important is that selectors` specificity is properly emulated. For example:

Styles for `.button.primary.disabled` (specificity *30*) will override styles of `.button.disabled` (specificity *20*),
even though `.button.disabled` is written later in the CSS.

This simple change brings a lot more capabilities in theming your components for a dynamic look.

2. Convert any `*StyleName` attribute to the according `*Style` attribute. This is very useful for passing the sub-element styles (which are usually exposed by react-native libraries) directly from CSS.

3. If the `styleName` value is an object or an array, automatically pipe it through the `classnames`-like library.

4. Support for multiple named css file imports is removed

## Usage

### Step 1: Install

```sh
yarn add --dev babel-plugin-react-native-dynamic-stylename-to-style
```

or

```sh
npm install --save-dev babel-plugin-react-native-dynamic-stylename-to-style
```

### Step 2: Configure `.babelrc`

You must give one or more file extensions inside an array in the plugin options.

```
{
  "presets": [
    "react-native"
  ],
  "plugins": [
    ["react-native-dynamic-stylename-to-style", {
      "extensions": ["css"]
    }]
  ]
}
```

## Syntax

## Anonymous reference

Anonymous reference can be used when there is only one stylesheet import.

### Single class

```jsx
import "./Button.css";

<View styleName="wrapper">
  <Text>Foo</Text>
</View>;
```

↓ ↓ ↓ ↓ ↓ ↓

```jsx
import Button from "./Button.css";

<View style={Button.wrapper}>
  <Text>Foo</Text>
</View>;
```

### Multiple classes

```jsx
import "./Button.css";

<View styleName="wrapper red-background">
  <Text>Foo</Text>
</View>;
```

↓ ↓ ↓ ↓ ↓ ↓

```jsx
import Button from "./Button.css";

<View style={[Button.wrapper, Button["red-background"]]}>
  <Text>Foo</Text>
</View>;
```

### Expression

```jsx
import "./Button.css";
const name = "wrapper";

<View styleName={name}>
  <Text>Foo</Text>
</View>;
```

↓ ↓ ↓ ↓ ↓ ↓

```jsx
import Button from "./Button.css";
const name = "wrapper";

<View
  style={(name || "")
    .split(" ")
    .filter(Boolean)
    .map(function(name) {
      Button[name];
    })}
>
  <Text>Foo</Text>
</View>;
```

### Expression with ternary

```jsx
import "./Button.css";

const condition = true;
const name = "wrapper";

<View styleName={condition ? name : "bar"}>
  <Text>Foo</Text>
</View>;
```

↓ ↓ ↓ ↓ ↓ ↓

```jsx
import Button from "./Button.css";

const condition = true;
const name = "wrapper";

<View
  style={((condition ? name : "bar") || "")
    .split(" ")
    .filter(Boolean)
    .map(function(name) {
      Button[name];
    })}
>
  <Text>Foo</Text>
</View>;
```

### with `styleName` and `style`:

```jsx
import "./Button.css";

<View styleName="wrapper" style={{ height: 10 }}>
  <Text>Foo</Text>
</View>;
```

↓ ↓ ↓ ↓ ↓ ↓

```jsx
import Button from "./Button.css";

<View style={[Button.wrapper, { height: 10 }]}>
  <Text>Foo</Text>
</View>;
```

---
_Source: https://npm.io/package/babel-plugin-react-native-dynamic-stylename-to-style · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
