A collection of files that make it easy to rapidly prototype front-end components using JavaScript, Sass and CSStyle's implementation of the BEM methodology.
HTML to make a component called "my fancy component" with two pieces of text in, one with a fancy option and one without.
File: components/my-fancy-component.php
<div class="my-fancy-component">
<span class="my-fancy-component__my-fancy-part">Hello</span>
<span class="my-fancy-component__my-fancy-part --inactive">Hello</span>
</div>
The sass below sets up the component: "my-fancy-component", the parts of the component: "my-fancy-part" and an option that can be applied to the parts: "inactive".
File: assets/styles/scss/components/_my-fancy-component.scss
@include component('my-fancy-component') {
@include part('my-fancy-part') {
color: green;
@include option('inactive') {
color: #444;
}
}
}
Clone/download the repo into a folder somewhere on your machine. Open a command window, Git Bash is recommended if you're using windows.
Open gulpfile.js and check that the "appUrl" variable on line 4 is set to where you access the project in your browser.
Do what you want.