1.1.4 • Published 4 years ago

babel-plugin-styled-props-conditions v1.1.4

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

babel-plugin-styled-props-conditions

GitHub release Build Status Coverage Status

A plugin for Babel that provides another syntax for getting access to styled-components props.

Installation

$ npm install --save-dev babel-plugin-styled-props-conditions

Usage

Add babel-plugin-styled-props-conditions to plugins list in your .babelrc:

{
  "plugins": ["babel-plugin-styled-props-conditions"]
}

Syntax

@if <prop_name> [<javascript code>] {
  <styles>
}

How it works

This plugin searches for Tagged Templates Literals containing conditional blocks written with syntax described above. When blocks are found the plugin replaces them with ${expression} blocks.

Input

@if <prop_name> [<javascript code>] {
  <styles>
}

Output

${({ <prop_name> }) => <prop_name> [<javascript code>] && css`
  <styles>
`}

Examples

Example #1: Boolean conditions

styled.button`
  @if primary {
    color: green;
  }

  @if secondary {
    color: grey;
  }
`

Instead of

import { css } from 'styled-components';

styled.button`
  ${({ primary }) => primary && css`
    color: green;
  `}

  ${({ secondary }) => secondary && css`
    color: grey;
  `}
`

Example #2: Conditions with expressions

styled.button`
  @if theme == 'light' {
    color: black;
    background-color: white;
  }

  @if theme == 'dark' {
    color: white;
    background-color: black;
  }

  @if theme == getTheme() {
    color: ${getColor()};
  }
`

Instead of

import { css } from 'styled-components';

styled.button`
  ${({ theme }) => theme == 'light' && css`
    color: black;
    background-color: white;
  `}

  ${({ theme }) => theme == 'dark' && css`
    color: white;
    background-color: black;
  `}

  ${({ theme }) => theme == getTheme() && css`
    color: ${getColor()};
  `}
`

Example #3: Nested conditions

styled.button`
  @if primary {
    @if theme == 'light' {
      color: black;
      background-color: white;
    }

    @if theme == 'dark' {
      color: white;
      background-color: black;
    }
  }
`

Instead of

import { css } from 'styled-components';

styled.button`
  ${({ primary }) => primary && css`
    ${({ theme }) => theme == 'light' && css`
      color: black;
      background-color: white;
    `}

    ${({ theme }) => theme == 'dark' && css`
      color: white;
      background-color: black;
    `}
  `}
`

Real project example

Check the example folder to see how this plugin works in the real project.

Linting styles

To make @if keyword as known to stylelint, add

"ignoreAtRules": ["/^if$/"]

option to at-rule-no-unknown rule in .stylelintrc, like so:

{
  "rules": {
    "at-rule-no-unknown": [true, {
      "ignoreAtRules": ["/^if$/"]
    }]
  }
}