postcss-topcoat-naming

0.3.0 • Public • Published

postcss-topcoat-naming

Build Status codecov Dependency Status npm version


A PostCSS plugin to collapse BEM @rules and corresponding Topdoc comments

Examples

/* topdoc
name: Button
description: a simple button
markup: |
  {{#state}}<button class="{{ blockName }}"/>
  {{/state}}
*/
@block Button {
  color: #333;
  @state :disabled {
    opacity: 0.1;
  }
  /* topdoc
  name: Secondary Button
  description: a secondary button
  */
  @modifier secondary {
    color: #666;
  }
}

is collapsed to this:

/* topdoc
name: Button
description: a simple button
markup: |
  <button class="Button"/>
  <button class="Button is-disabled"/>
*/
.Button {
  color: #333;
}
.Button:disabled.Button.is-disabled {
  opacity: 0.1;
}

and if a modifier is passed through, it is collapsed to this:

/* topdoc
name: Secondary Button
description: a secondary button
markup: |
  <button class="Button--secondary"/>
  <button class="Button--secondary is-disabled"/>
*/
.Button--secondary {
  color: #333;
  color: #666;
}
.Button--secondary:disabled.Button--secondary.is-disabled {
  opacity: 0.1;
}

Usage

Using it as a PostCSS plugin.

import postcss from 'postcss';
import TopcoatNaming from 'postcss-topcoat-naming';
 
postcss([
  TopcoatNaming({modifier: 'secondary'}),
]).process(input);

Option

Options that can be passed to the plugin.

{modifier} (String)

If the modifier matches a @modifier value, the rules will be combined.

In this example, when the modifier value is set to secondary:

@block Button {
  color: #333;
  @modifier secondary {
    color: #666;
    @state :disabled {
      outline: none;
    }
  }
  @state :disabled {
    opacity: 0.1;
  }
}

The result is:

.Button--secondary {
  color: #333;
  color: #666;
}
.Button--secondary:disabled.Button--secondary.is-disabled {
  opacity: 0.1;
  outline: none;
}

If the provided modifier value does not match a modifier in the source css the modifier value is still appended to the class, but the rule is not actually modified.

In this example, when the modifier value is set to tertiary:

@block Button {
  color: #333;
  @modifier secondary {
    color: #666;
    @state :disabled {
      outline: none;
    }
  }
  @state :disabled {
    opacity: 0.1;
  }
}

The result is:

.Button--tertiary {
color: #333;
}
.Button--tertiary:disabled.Button--tertiary.is-disabled {
opacity: 0.1;
}

Topdoc

Provided Topdoc comments that correspond to @Block atRules.

States

TODO: write

Modifiers

TODO: write

Package Sidebar

Install

npm i postcss-topcoat-naming

Weekly Downloads

0

Version

0.3.0

License

Apache-2.0

Last publish

Collaborators

  • garthdb