Skip to content

Commit

Permalink
[K7] BEM mixin (#12884)
Browse files Browse the repository at this point in the history
Bemify mixin for handling namespacing in our sass.
  • Loading branch information
snide authored Jul 17, 2017
1 parent 10a8964 commit a240cf9
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@
"@elastic/eslint-plugin-kibana-custom": "1.0.3",
"angular-mocks": "1.4.7",
"babel-eslint": "7.2.3",
"bemify": "0.1.4",
"chai": "3.5.0",
"chance": "1.0.6",
"cheerio": "0.22.0",
Expand Down
38 changes: 38 additions & 0 deletions style_guides/scss_style_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,44 @@ Our style guide is an extension of [Sass Guidelines by Hugo Giraudel](https://sa
The Sass Guidelines site recommends using RBG and HSL values to format colors, but we're using
hex values.

### Bemify for namespacing

We use [bemify](https://github.com/franzheidl/bemify) for namespacing the sass into a BEM format. We use `component`, `child`, `modifier` and `state` as our mixin names. We've adjusted the plugin's state mixin so that you need to write out the full selector (`@include state('isHappening')`).

#### Example

```
// Generates .kuiButton
@include component('kuiButton') {
color: white;
background: gray;
padding: 20px;
// Generates .kuiButton__icon
@include child('icon') {
display: inline-block;
margin-right: 4px;
color: white;
// Generates .kuiButton__icon--danger
@include modifier('danger') {
color: red;
}
}
// Generates .kuiButton--primary
@include modifier('primary') {
background: blue;
}
// Generates .kuiButton.isLoading
@include state('isLoading') {
opacity: .5;
cursor: not-allowed;
}
}
```

## Dealing with extends

Don't extend classes. The only time use should use an extend is when you are extending a placeholder. Even then, do it rarely and only for code maintainability.
15 changes: 15 additions & 0 deletions ui_framework/src/global_styling/mixins/_bemify.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// Bemify lets us use mixins to define namespacing
// https://github.com/franzheidl/bemify

$state-prefix: null;

@import '../../../../node_modules/bemify/sass/_bemify';

@mixin state($state) {
@at-root {
&.#{$state} {
@content;
}
}
}

1 change: 1 addition & 0 deletions ui_framework/src/global_styling/mixins/_index.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@import 'bemify';
@import 'naming';
@import 'responsive';
@import 'typography';

0 comments on commit a240cf9

Please sign in to comment.