-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tailwind class prefix support #12
Comments
I have to improve the docs for this. The macro Take a look at this https://docs.rs/tailwind_fuse/latest/tailwind_fuse/merge/fn.tw_merge_with_options.html |
I am not sure how I could support this with the macro. If you have any ideas lmk |
what do you think about this? It's pretty annoying to supply the options everywhere though. The arrow symbol can be replaced for something else if there's a better alternative #[test]
fn test_override_config_macro() {
let config = MergeOptions {
prefix: "tw-",
separator: "|",
};
let result = tw_merge!(config => "hover|lg|tw-bg-blue-100", "hover|lg|tw-bg-red-500");
assert_eq!("hover|lg|tw-bg-red-500", result);
} |
Hi @nicoburniske, sorry for only looping back now. I'm not a big fan of your Here's my full solution I'm currently using: // prelude.rs
macro_rules! tw_mymerge {
($($item:expr),+ $(,)?) => {{
let joined = tailwind_fuse::tw_join!($($item),+);
tailwind_fuse::merge::tw_merge_with_options(joined.as_str(), tailwind_fuse::merge::MergeOptions {
prefix: "tw-",
separator: ":",
})
}};
} # clippy.toml
disallowed-methods = ["tailwind_fuse::IntoTailwindClass::with_class"]
disallowed-macros = ["tailwind_fuse::tw_merge"] Effectively I'm just banning usage of Feel free to close this if I've hit on the least painful way to deal with this :) |
I've actually had to disable the |
Hey, thanks for using the crate and giving me feedback. It's clear that this needs to be improved. You're spot on with the In order for you to use the derive macros Using TailwindOptions with Derive MacrosRight now, you can supply a custom This lets you opt out of the merge logic if you don't need it. #[derive(TwClass, Default)]
#[tw(merger = TailwindJoin)]
struct Btn {
size: BtnSize,
color: BtnColor,
} The two options provided to you are /// Used to Fuse Tailwind Classes together.
pub trait TailwindFuse {
/// Strings are not guaranteed to be single class nor free of whitespace.
fn fuse_classes(&self, class: &[&str]) -> String;
} So you could implement your own version of this with your custom options /// Will merge Tailwind classes and handle conflicts using [`tw_merge()`]
pub struct CustomMerge;
impl TailwindFuse for CustomMerge {
fn fuse_classes(&self, class: &[&str]) -> String {
tailwind_fuse::merge::tw_merge_with_override(class, tailwind_fuse::merge::MergeOptions {
prefix: "tw-",
separator: ":",
})
}
} Then you could use it in all your structs like this #[derive(TwClass, Default)]
#[tw(merger = CustomMerge)]
struct Btn {
size: BtnSize,
color: BtnColor,
} |
Awesome! I'll give that a go, means for me with my macro and the clippy lint on tw_merge this seems to be all sorted.
Haha makes sense. To be honest I've never seen a different prefix than |
@nicoburniske I actually just thought of a cool way to deal with this: use linkme::distributed_slice;
// UPSTREAM IN TAILWIND_FUSE
#[distributed_slice]
pub static PREFIX_OVERRIDE: [&'static str];
// UPSTREAM IN TAILWIND_FUSE
// Internally in tailwind fuse use this to get prefix, either the one from the slice a user set, or defaulting to nothing like normal.
pub fn get_prefix() -> &'static str {
PREFIX_OVERRIDE.first().unwrap_or(&"")
}
/// UPSTREAM IN TAILWIND_FUSE
/// Hiding the implementation behind a simple macro.
macro_rules! set_tw_custom_prefix {
($prefix:expr) => {
const _: () = {
use linkme::distributed_slice;
#[distributed_slice(PREFIX_OVERRIDE)]
static TAILWIND_FUSE_DEFAULT_PREFIX: &str = $prefix;
};
};
}
// DOWNSTREAM IN USER CODE
set_tw_custom_prefix!("tw-"); https://github.com/dtolnay/linkme It's pretty cool this crate and I use this approach for something else too. Could it work here and remove the need for any of this? |
Wow that's insanely cool @zakstucke This seems like a better approach to me than the env variables PR I linked because it's code first. |
Yeah I saw that come in at the same time I sent this! I'd agree imo this is a slightly cleaner approach, but I think either would work. |
Hm @zakstucke linkme doesn't have WASM support unfortunately. |
Ah such a shame, I hadn't seen that. |
@zakstucke see #21 |
Both your issues (Option in macros, and Prefix) should be solved in |
@nicoburniske OnceLock was a great middle ground! I've just setup with 0.3 and both this prefixing and the re-support of |
Cool library! Can prefixes be supported?
I use
"tw-"
prefix on tailwind classes.tw_merge!()
seems to not recognise prefixed classes correctly, and acts liketw_join!()
instead.E.g.
tw_merge!("tw-bg-red-500", "tw-bg-black-500")
comes out as"tw-bg-red-500 tw-bg-black-500"
The text was updated successfully, but these errors were encountered: