A reactive helper that ensures normalized class list strings in frontend frameworks like Leptos.
Examples provided will be for the Leptos framework post-{context removal}, but it will work pre-{context removal} and might work in other similar frameworks.
This library is meant to be agnostic and has no runtime dependencies, but it has only been tested with Leptos.
bash
cargo add class_list
class_list![]
by default wraps itself in a move closure, meaning it will be reactive by default.
```rs let (count, setcount) = createsignal(0);
setinterval( move || { setcount.update(|count| *count += 1); }, Duration::from_millis(100), );
let countclass = move || format!("count-{}", count()); let countis_even = move || count() % 2 == 0;
view! {
count_is_even()
is true.
// You also don't need to call closures here.
"even" <=> countiseven
] />
}
```
Each option must be followed by a ;
.
To generate a non-reactive String, add the raw
option to the beginning.
rs
class_list![
raw;
"default-class-names",
]
Rarely, you may need to clone something before passing it in.
The macro makes this easy with the clone
option which clones the variable before it gets moved into the closure.
If possible try to avoid needing this option in the first place.
rs
class_list![
clone[count_class];
"default-class-names",
]
This should never be needed because it's automatically supplied by a wrapper macro_rules!
.
In a case where the trait imports cannot be resolved--such as when used inside of another library--, the path can be redefined.
The path should lead to the root of this library.
rs
__class_list![
crate = ::your_lib::class_list;
"default-class-names",
]
If you'd like to simply pass a type to the macro instead of converting it every time, you can implement the ClassList
and ClassToggle
types.
Check out traits.rs to see the default implementations which are good examples of implementing them.
```rs // If you're using a type you don't own, // you must wrap it in a new struct. struct Bool(bool);
impl ClassList for Bool {
fn toclasslist(&self, normalize: bool) -> String {
// If the string could contain multiple class names
// you should use normalize
to determine whether
// or not to call .to_class_list()
on it before
// returning.
// If you're lazy you could always normalize, but
// then the string will be normalized multiple
// times for every update in the macro.
if self.0 {
"true".into()
} else {
"false".into()
}
}
}
impl ClassToggle for Bool {
fn toclasstoggle(&self) -> bool {
self.0
}
}
// Option, Result, and Fn are implemented in a way which
// allows any new type you implement to be automatically
// passed through.
asserteq!(
classlist,
"false true class list".to_string()
);
```