gajus / gajus/babel-plugin-react-css-modules
Working with state classes
- 主要言語
- JavaScript
- スター
- 2k
- フォーク
- 159
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
We are using this library in 2 of our projects and works really well.
But one of the practices that we usually use are "State classes" like http://smacss.com/book/type-state
for example if we have
```
```
this element can sometimes have this class
```
```
To try to style things like this we had to use multiple modules and have a CSS like:
```
.menu__item {
color: red;
}
.is-active {
color: blue;
}
```
ideally we would like to use
```
.menu__item {
color: red;
&.is-active {
color: blue;
}
}
```
But ok we can more or less work, the problem is when you have something inside `menu__item`
```
```
In that case we cannot do that:
```
.menu__item {
color: red;
}
.is-active {
color: blue;
.menu__icon {
color: yellow;
}
}
```
or ideally:
```
.menu {
&__item {
color: red;
&.is-active {
color: blue;
}
}
&__item.is-active &__icon {
color: yellow;
}
}
```
Are you planning some feature to "disable" selectors that start with a prefix?
For example, for us can be useful to ignore "is-", "u-", etc...
コントリビューションガイド
このリポジトリのコントリビューションガイドは索引されていません
調査の方向性
この issue では styleName の使用とネストされた CSS セレクターについて言及されていますが、リポジトリのファイルやテストは指定されていません。まず styleName 変換のエントリーポイントと既存のセレクター解決テストを見つけます。is- や u- などの接頭辞付き状態クラスを無視でき、ネストされた menu__item/menu__icon セレクターが示されているとおりに解決されれば完了です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- babel, css, javascript
- 領域
- frontend, tooling
- issue の種類
- 機能追加
- 難易度
- 5/5
- 見積もり時間
- 1週間以上
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 25/100