zachdaniel
Making components take tailwind classes is a dicey proposition at best. You can’t just put a set of tailwind classes after another set and expect them to do the right thing, because later classes in the class string don’t override earlier ones, its all based on how “specific” the CSS that class applies. In looking for an example, I found a similar package for js that illustrates the need for it: https://www.npmjs.com/package/tailwind-merge.
I’m (slowly) building a set of utilities to help make more “tailwind-y” components, and also to be able to leverage tailwind in other ways. This library isn’t published to hex yet because it will need some more love, specifically it needs a lot more merge logic. It currently only handles some basic things.
Eventually, I could also see it supporting other kinds of directives to help overriding what a component does. For example, if a component sets something like bg-blue-500 hover:bg-blue-600, but you want it to use bg-red-500 always we could support something like <Component class="all_directives:bg-red-500" />. Or if you wanted to remove a class that the component adds, you could do so with <Component class="remove_class:bg-blue-500" />.
The ideas above are dubious, not sure if they are a good idea, but the point is that the potential for them is there
The part I am sure of is that having a class merger will allow us to write better components that can take tailwind classes and use them as overrides for their own classes.
It also handles merging a list, as well as conditional classes and nested lists, so in the end you might have something like this:
class={classes([
"inline-flex items-center justify-center gap-2 text-sm font-medium font-sans transition-colors duration-300 disabled:cursor-not-allowed flex-grow-0",
handle_button_hierarchy(@hierarchy),
handle_button_size(@size, @show_label),
[
"flex-row-reverse": slot_position == "trailing",
"w-full": @expanded
],
@class
])}
The other thing it currently does is defines functions that map to your tailwind colors, if configured with a tailwind.colors.json file to use. For those trying out LiveViewNative, this means you can reuse any custom tailwind colors, i.e <text color={primary_light_600()}>{@text}</text>. We could perhaps find other ways to make tailwind the “source of truth” that can be shared between web and LiveViewNative?
Curious to hear your thoughts! If we can get a few more people interested to help build out the class merging rules, and especially if we can make it more integrated with the tailwind config, that kind of thing.
Trending in Announcing
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
trisolaran
Sounds definitely like something that could be useful. By the way, some of your ideas reminded me of this library: GitHub - cblavier/phx_component_helpers: Extensible Phoenix liveview components, without boilerplate · GitHub
which comes with utilities to manipulate CSS classes. Don’t know how similar they are to what you have in mind.
zachdaniel
That does look very similar! My only qualm that I can see is that its just doing “prefix replacements”, which won’t work for things like
So they could say
blockandhidden, and other tailwind specific things. But I do wonder if perhaps tails should just live inside of a tool like thatextend_class(..., tailwind: true)?cblavier
We actually no longer do prefix-based replacement in
phx_component_helpersextend_classinstead switched to a declarative mode where you can use a bangto override default margin and display properties.
I once opened a topic on this specific issue here: Need help with an issue on my phx_component_helpers library
Sebb
stupid question: how does this work at all? Doesn’t the tailwind compiler just deliver the CSS for the classes it sees at buildtime? So when the only tailwind class in my templates is
text-smand I dynamically addtext-xlhow can the tailwind compiler know about that…?cblavier
The tailwind CLI will only scan your source code to see what CSS classes should be bundled in the output css.
So the only risk is to get, in your bundled CSS, classes that you actually won’t use because they have been dynamically excluded.
(I replied for my own lib I didn’t looked into Tails)
Sebb
So it does not parse the HTML and looks in
@classbut just looks for the classes as text in all files?What about
can’t work, right?
cblavier
You’re right it can’t work. You should never use String concatenation with tailwind
tcoopman
No that doesn’t work. See Detecting classes in source files - Core concepts - Tailwind CSS
zachdaniel
yeah, for me personally the
!operator isn’t a great solution because the consumer of the component has to know about more than it necessarily should. I.e with tailsBut with the prefixed removal method
Separately from that, the exclamation mark actually has meaning in tailwind. Granted, its meaning is to basically do what you’re saying so that might not matter?