Classnames

Current Crates.io Version

An library for generating BEM style classnames, in Rust.

If you don't know BEM, it is a set of naming conventions for CSS names. You can find a guide on it's naming conventions here.

Using Classnames

There are two main things to import ...

The way classnames works, is internally it wraps each Class with a different Class type. Adding on "__child" and "--attr" classes, and so on.

This is to avoid needing to build lots of strings internally, in order to make it more efficient.

The crux of using Classnames ...

  1. You call classname to create a base classname.
  2. You may then call .el to generate a child classname.
  3. You may also call .attr to add on any BEM attributes.
  4. You can then add classes together, to allow printing multiple different classnames in a component.
  5. Finally all of the above; the base class, the child names, attributes, and classes added together. All support being turned into a String, or being printed with ::std::fmt::Display. That's how you get the formatted classname out.

Here is the above again in code ...

``` use ::classnames::Class; use ::classnames::classname;

fn example() { // 1. Prints "banner" let baseclass = classname("banner"); println!("{}", baseclass);

// 2. Prints "banner_header" let header = baseclass.el("header"); println!("{}", header);

// 3. Prints "bannerheader bannerheader--bold" let boldheader = baseclass.el("header").attr("bold"); println!("{}", bold_header);

// 4. Prints "banner pricing-banner" let pricingbanner = baseclass + classname("pricing-banner"); println!("{}", pricing_banner);

// 5. Prints out HTML with the classes included. format!(r#"

Pricing Information

    <p>Example copy</p>
  </div>

"#, baseclass = pricingbanner, headerclass = boldheader); } ```

Passing classnames to other functions

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( class: Option, children: Children, ) -> impl Render { let base_class = classname("card");

rsx! {
  <div
    class={base_class + class}
  >
    {children}
  </div>
}

} ```

Example with RSX

Classnames is intended to be used with something else for rendering HTML. For example with the render crate.

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" />

```