A lLibrary for generating BEM style classnames, in Rust.
If you don't know BEM, BEM it is a set of naming conventions for CSS names. Please read the DEM guide linked for an explination of the naming conventions.
Why?
There are two main things to import ...
::classnames::classname
- A function for creating classnames.::classnames::Class
- A trait all classnames implement. Use this for when you want to pass classnames around.Calling each of these creates Class
types (or similar). These can then be printed, or turned into a string, to retrieve the full class name as a string.
classname
for creating a new base classname. It returns a class..el
on it to generate a child classname..attr
to generate the class for that component, and the componnt with an attribute.``` use ::classnames::Class;
fn example() { // ".my-component" let base_class = classname("my-component");
// ".my-component .my-component--large" let baseclasslarge = base_class.attr("large");
// ".my-component_child-name" let childclass = base_class.el("child-name");
// ".my-componentchild-name .my-componentchild-name--red" let childclassred = child_class.attr("red"); } ```
Classnames is intended to be used with something else for rendering HTML. For example with the render crate, which is used in the example here.
This is an example for the HTML to a hypothetical TextInput
component, which can be optionally disabled.
``` use ::classnames::Class; use ::render::{rsx, Render, component};
#[component] pub fn TextInput( isdisabled: bool, error: &'static str, ) -> impl Render { let baseclass = classname("text-input");
rsx! {
<div
class={base_class}
>
<input class={base_class.el("input").maybe_attr("disabled", is_disabled)} type={"text"} />
<div class={base_class.el("error")}>
{error}
</div>
<img src={"/input-icon.svg"} class={base_class.el("icon").attr("large")} />
</div>
}
} ```
Running render( true, &"Some error has occured" )
will produce HTML like ...
```
<div class="text-input__error">
{"Some error has occured"}
</div>
<img src={"/input-icon.svg"} class="text-input__icon text-input__icon--large" />
```
All of the internal Classname types implement ::classnames::Class
. They can be passed by using this type, which you can also wrap in an Option
for convenience.
For example ...
``` use ::classnames::Class; use ::classnames::classname;
#[component]
pub fn Card
rsx! {
<div
class={base_class + class}
>
{children}
</div>
}
} ```