# jss! [![Latest Version](https://img.shields.io/crates/v/jss.svg)](https://crates.io/crates/jss) [![Build Status](https://github.com/ivanceras/jss/actions/workflows/rust.yml/badge.svg)](https://github.com/ivanceras/jss/actions/workflows/rust.yml) [![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE) This crate provides an easy way to write dynamic css using json notation. This gives you more convenient than you think. Considering using a dynamic width for our layer class ```css .layer { width: 10px; } ``` You will have to write it using the `format!` macro ```rust let width = 10; let css = format!(" .layer {{ width: {}px; }} ", width); let expected = r#" .layer { width: 10px; } "#; assert_eq!(expected,css); ``` Oh!, we forgot that escaping braces in rust strings is done with braces and we will have double braces all over our dynamic css. It will just get worse when there are more variables added into it, keeping track the order of the format argument. `jss!` to the rescue: ```rust use jss::prelude::*; let width = 10; let css = jss!{ ".layer": { width: px(width), } }; let expected = ".layer{width:10px;}"; assert_eq!(expected,css); ``` Non-identifier style names can be written with `snake_case`, or using quotes on them. ```rust use jss::prelude::*; let css = jss!( ".layer": { border: "1px solid green", background_color: "red", "width": percent(100), "border-color": "red!important", margin: px(5) + " auto" }, ".hide .layer": { opacity: 0, }, ); let expected = ".layer{border:1px solid green;background-color:red;width:100%;border-color:red!important;margin:5px auto;}.hide .layer{opacity:0;}"; assert_eq!(expected, css); ``` Use of name spaces in class selector to prevent collision with similar class names in other components. ```rust use jss::{jss_ns, units::percent}; let css = jss::jss_ns_pretty!("frame", ".": { display: "block", }, ".layer": { background_color: "red", border: "1px solid green", }, "@media screen and (max-width: 800px)": { ".layer": { width: percent(100), } }, ".hide .layer": { opacity: 0, }, ); let expected = r#" .frame { display: block; } .frame__layer { background-color: red; border: 1px solid green; } @media screen and (max-width: 800px) { .frame__layer { width: 100%; } } .frame__hide .frame__layer { opacity: 0; } "#; assert_eq!(expected, css); ``` Feature `strict` will prevent you from making typo on the style name. Using invalid style names will panic. ```sh cargo test all --features = "strict" ``` ```rust,ignore use jss::prelude::*; let width = 10; let css = jss!{ ".layer": { "not-soo-awesome-style-name": px(width), // panicked at 'invalid style name: not-soo-awesome-style-name' } }; ``` License: MIT