Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/widoz/bem
BEM library - Take advantage of the bem syntax throught an object.
https://github.com/widoz/bem
bem composer library php plugin unittest wordpress
Last synced: 9 days ago
JSON representation
BEM library - Take advantage of the bem syntax throught an object.
- Host: GitHub
- URL: https://github.com/widoz/bem
- Owner: widoz
- License: mit
- Created: 2018-01-26T19:28:01.000Z (almost 7 years ago)
- Default Branch: develop
- Last Pushed: 2020-03-15T21:40:49.000Z (over 4 years ago)
- Last Synced: 2024-10-12T03:52:46.489Z (25 days ago)
- Topics: bem, composer, library, php, plugin, unittest, wordpress
- Language: PHP
- Homepage:
- Size: 154 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BEM Library
![Continuous Integration](https://github.com/widoz/bem/workflows/Continuous%20Integration/badge.svg)
[![codecov](https://img.shields.io/codecov/c/github/widoz/bem/develop.svg?style=flat-square)](https://codecov.io/gh/widoz/bem)Bem is a library that allow you to define BEM style class attribute values to use in your markup.
Let for example you want to include a class attribute value into your html tag.
You can do it by using the library.```html
```The library works with WordPress but also as a standalone library to use in your projects.
If you use it into your WordPress project you can take advantage of the `bem` filter allowing you
to manipulate the bem string depending on your needs.It's is possible to retrieve the entire class value such as the block, element and modifiers singularly.
Since Version 1.0.0 the string values are no longer sanitized, so you have to use a function like `sanitize_html_class`.
The classes now only check against the value passed in construction phase.## Requirements
PHP >= 7.1.33
## What is BEM
BEM — Block Element Modifier is a methodology that helps you to create reusable components and code sharing in front-end development.
- Block
- Encapsulates a standalone entity that is meaningful on its own. While blocks can be nested and interact with each other, semantically they remain equal; there is no precedence or hierarchy. Holistic entities without DOM representation (such as controllers or models) can be blocks as well.
- Element
- Parts of a block and have no standalone meaning. Any element is semantically tied to its block.
- Modifier
- Flags on blocks or elements. Use them to change appearance, behavior or state.
Example
```css
.block {}
.block__element {}
.block block--modifier {}
```
For more information have a look at: [getbem](http://getbem.com/)
## How it works
To use the bem value you must create a instance of a class that implements `Valuable` interface such as `Standard` then
call `value` method.
Since version 1.0.0 isn't possible to retrieve the bem's components separately, this is because the
responsibility to hold data has been moved under a different class that implements `Bem` interface.
Also, the `modifiers` are no longer an array but an instance of a class that implements `Modifiable`.
The class used to hold modifiers is `BlockModifier`.
```php
$bem = new Data('block');
$standard = new Standard($bem);
$standard->value(); // will print 'block'
$bem = new Data('block', 'element');
$standard = new Standard($bem);
$standard->value(); // will print 'block__element'
$modifiers = new BlockModifiers(['modifier'], 'block');
$bem = new Data('block', 'element', $modifiers);
$standard = new Standard($bem);
$standard->value(); // will print 'block block--modifier'
```
## Factory
To create a bem as you seen above isn't much complex but isn't simple as doing it in one line of code
(if you want to keep your code readable). For that reason you make use of a simple `Factory` class
that allow you to create all of the Bem classes you want just in one line of code by passing only
the necessary data.
```php
$standardBem = Factory::createStandard('block', 'element', ['modifier']);
```
Then you can use the object as usual, by calling the method `value`.
**Note:**
Even though it's possible to pass all of the parameters to the class that implements `Bem` interface,
when both *block* and *modifiers* are passed the *element* is ignored.
This is right and in line with the BEM requirements. Infact isn't possible to have a BEM string like `block block--modifier__element`.
## Service
Creating one object for every changes you need to make when you are building a component or a block
for you project can be quite prolix and useless because most of the time what you want to do is to have
a `block` and than change the `element` or the `modifier` parts.
For this reason `Bem` offer a configurable service with which is possible to set only the `block`
part of the bem object so you can inject it into your classes and change only the parts needed during
the component building.
```php
$service = Factory::createServiceForStandard('block');
```
Then you can make use of `forElement` and `withModifiers` methods to update the bem object.
```php
class MyBlockClass
{
private $bemService;
public function __construct(Service $bemService)
{
$this->bemService = $bemService;
}
public function buildComponentElement()
{
$element = $this->bemService->forElement('element');
$subElement = $this->bemService->forElement('sub-element');
?>
bemService->withModifiers(['modifier']);
?>
value(); // will print 'block block--modifier block--modifier-two'
```
Since version 1.0.0 there are additional checks to the *block*, *element* and *modifier* values to ensure
a valid string is passed during construction. The check is made against the pattern `[^a-zA-Z0-9\-\_]`.
### Retrieve properties.
Since version 1.0.0 it's no longer possible to retrieve the bem components from the `Valuable` instance,
you have to use `Data` instance if you want to get them.
## Bugs
To report a bug simply open an [issue on github project](https://github.com/widoz/bem/issues)
## License
This library is license under MIT
For more info read the `LICENSE` file