An Ember CLI addon which allows you to specify component-specific style sheets in an app, addon, engine, or in-repo addon.
Contributions are welcome! Feel free to open up a pull request or issue, and join the #e-component-css channel in the Ember Slack community if you have further questions, concerns, or ideas. Thanks! 😄
ember install ember-component-css
Rules defined in the style-sheets will automatically be namespaced with an autogenerated class. That autogenerated class will also be injected into your component's classNames
property. This enables you to worry less about rules clashing across component styles.
For example, given this app/my-component/styles.scss
file for 'pods',
or this app/styles/component-styles/my-component.scss
file for 'classic':
& { // ampersand refers to the component itself (parent selector)
padding: 2px;
}
.urgent {
color: red;
span {
text-decoration: underline;
}
}
Your generated CSS output will look something like:
.__my-component__a34fba {
padding: 2px;
}
.__my-component__a34fba .urgent {
color: red;
}
.__my-component__a34fba .urgent span {
text-decoration: underline;
}
A typical component invocation that looks like this:
{{my-component}}
will generated markup like:
<div class="__my-component__a34fba"></div>
To use this addon you MUST, import pod-styles
into your base stylesheet.
// app/styles/app.scss
@import "pod-styles";
// app/styles/app.less
@import "pod-styles";
// app/styles/app.styl
@import 'pod-styles'
// app/styles/app.css
@import "pod-styles";
And that is it! The pod-styles
file is generated during the build and will then be pulled into your other stylesheet to be processed like normal.
Note: If you are using more than one type of component style files (ie a .less file and a .scss file) then you will need to add the extension to the @import. Otherwise the extension can be left off.
To use this with pods, you just need to include a style file in your component pods directory alongside your template.hbs
or component.js
files.
You can use classic Ember app structure by placing component styles in
app/styles/component-styles
. Name your style files after the component name,
for example my-component.scss
. The directory where styles are fetched from can
be configured as shown below. It's possible to use a mixture
of classic and pod structured styles in the same app, if you use both styles for
the same component both are included but the pod style will take precedence.
In order to use this inside of an addon, you need to add your style files inside of the components in the
addon directory. You will then be able to import the 'pod-styles' file inside of your addon style file which
is in the /addon/styles
directory. These styles will then be added to the vendor.css
file like normal.
If you are using classic (non pod) structure, your addon directory structure might look like:
yourAddonDirectory
│ index.js
│ ... etc
└───addon
│ └───components
│ │ yourAddonComponent.js
│ └───templates
│ │ yourAddonComponent.hbs
│ └───styles
│ │ addon.scss (includes the 'pod-styles' import)
│ └───component-styles (this dir name is configurable)
│ │ yourAddonComponent.scss
└───app
└───components
│ yourAddonComponent.js
If you are extending the include
method in your addon, please make sure you call the super like this
included: function(app) {
this._super.included.apply(this, arguments);
...
}
Finally, be sure "ember-component-css" is listed under the "dependencies" key of your addon's package.json
file, rather than "devDependencies".
In order to use this with plain css files, you need to install ember-cli-postcss
and configure it with postcss-import
.
ember install ember-component-css
ember install ember-cli-postcss
npm install postcss-import --save-dev
Then in your ember-cli-build.js
you can configure it as such.
var EmberAddon = require('ember-cli/lib/broccoli/ember-addon');
var CssImport = require('postcss-import');
module.exports = function(defaults) {
var app = new EmberAddon(defaults, {
postcssOptions: {
compile: {
enabled: true,
plugins: [{
module: CssImport,
}]
}
}
});
return app.toTree();
};
You can also add in postcss-cssnext
or any other
postcss plugins in this way too.
Things like ember-cli-autoprefixer
will work out of the box and do not need to be added in as a postcss plugin.
You also have access to the generated class name to use in your templates. There is a computed property componentCssClassName
This can be used to pass the class name to things like ember-wormhole
or for use in BEM style classnames.
An example of BEM usage would be
my-component/template.hbs
my-component/styles.scss
&__button {
display: inline-block;
border-radius: 3px;
padding: 7px 12px;
border: 1px solid #D5D5D5;
background-image: linear-gradient(#EEE, #DDD);
font: 700 13px/18px Helvetica, arial;
&--state-success {
color: #FFF;
background: #569E3D linear-gradient(#79D858, #569E3D) repeat-x;
border-color: #4A993E;
}
&--state-danger {
color: #900;
}
}
You can build your own computed properties on top of componentCssClassName
. One use case is using it to build a classNameBinding
:
my-component/component.hbs
classNameBindings: ['customBinding'],
stateProperty: false,
customBinding: computed('componentCssClassName', 'stateProperty', function() {
if (this.get('stateProperty') {
return `${this.get('componentCssClassName')}--state`;
} else {
return '';
}
}),
my-component/styles.scss
& {
background: blue;
}
&--state {
background: red;
}
You can set the following configuration options in your config/environment.js
file:
ENV['ember-component-css'] = {
option: 'value'
}
namespacing(enabled)
Defaults to true. Set this option to false
to disable the namespacing feature of Ember Component CSS.
ENV['ember-component-css'] = {
namespacing: false
}
This changes the default behavior changes in two ways:
- The autogenerated component class is no longer added to your component's HTML
- Your pod CSS files are no longer are namespaced using the autogenerated component class.
classicStyleDir
Defaults to component-styles
. Set this to the directory where your classically
structured styles live (within /app/styles
). For example:
ENV['ember-component-css'] = {
classicStyleDir: 'my-styles'
}