I've enabled postCSS with ModularCSS and webpack:
{
test: /\.css$/,
exclude: /node_modules/,
loader: "style-loader!css-loader?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]!postcss-loader"
}
This means that I can now import "CSS Modules" like so:
ponents/app.js
import '../style/bootstrap.css';
This will ensure that the entire app is based on bootstrap's "global css", like resetting.
Furthermore, within ponents I can clearly define their dependencies on Bootstrap, e.g.:
ponents/control.js
import Bootstrap from '../style/bootstrap.css';
class Control extends Component {
render() {
return (
<button className={Bootstrap.btn + ' ' + Bootstrap['btn-primary']}>choose me</button>
);
}
}
However, the syntax className={Bootstrap.btn + ' ' + Bootstrap['btn-primary']}
is hard to read and not easy to work with.
Has this issue been tackled before? Any suggestions on how to make it more readable and workable?
I've enabled postCSS with ModularCSS and webpack:
{
test: /\.css$/,
exclude: /node_modules/,
loader: "style-loader!css-loader?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]!postcss-loader"
}
This means that I can now import "CSS Modules" like so:
ponents/app.js
import '../style/bootstrap.css';
This will ensure that the entire app is based on bootstrap's "global css", like resetting.
Furthermore, within ponents I can clearly define their dependencies on Bootstrap, e.g.:
ponents/control.js
import Bootstrap from '../style/bootstrap.css';
class Control extends Component {
render() {
return (
<button className={Bootstrap.btn + ' ' + Bootstrap['btn-primary']}>choose me</button>
);
}
}
However, the syntax className={Bootstrap.btn + ' ' + Bootstrap['btn-primary']}
is hard to read and not easy to work with.
Has this issue been tackled before? Any suggestions on how to make it more readable and workable?
Share Improve this question edited May 1, 2016 at 9:50 Tom asked May 1, 2016 at 9:19 TomTom 8,16736 gold badges140 silver badges237 bronze badges2 Answers
Reset to default 1Have you looked at React CSS modules?
Using the decorator, it seems to be very usable.
https://github./gajus/react-css-modules#decorator
You will need to set this option to true for multiple class names
https://github./gajus/react-css-modules#allowmultiple
You could try to use classNames
import Bootstrap from '../style/bootstrap.css';
let cx = classNames.bind(Bootstrap);
class Control extends Component {
render() {
let className = cx({
btn: true,
'btn-primary': true
});
return (
<button className={className}>choose me</button>
);
}
}
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745386811a4625475.html
评论列表(0条)