Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ronin-co/tailwindcss-constants
Apply TailwindCSS utilities only if they match a constant.
https://github.com/ronin-co/tailwindcss-constants
tailwindcss tailwindcss-plugin
Last synced: about 17 hours ago
JSON representation
Apply TailwindCSS utilities only if they match a constant.
- Host: GitHub
- URL: https://github.com/ronin-co/tailwindcss-constants
- Owner: ronin-co
- License: mit
- Created: 2022-03-30T13:10:28.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-23T14:44:30.000Z (9 months ago)
- Last Synced: 2024-05-30T02:12:54.158Z (6 months ago)
- Topics: tailwindcss, tailwindcss-plugin
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/tailwindcss-constants
- Size: 84 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tailwindcss-constants
Applying utility classes provided by [TailwindCSS](https://tailwindcss.com) (like `bg-white`) conditionally doesn't require a lot of effort, because it's only a matter of enabling strings conditionally.
For simple apps, that's usually enough. For more advanced ones, however, you might find yourself wanting to do one of the following things:
- Share utility classes between multiple places in your code
- Construct a utility class from a constantThis package lets you accomplish all of those things with ease.
## Setup
First, install the package:
```bash
npm install tailwindcss-constants
```Then invoke it from your application code:
```jsx
import TailwindConstant from 'tailwindcss-constants';const transitionDuration == new TailwindConstant(300);
// This is non-working pseudo-code and only supposed to show off the usage.
const Component = () => {
useEffect(() => {
setTimeout(() => {
console.log('Test');
}, transitionDuration.value);
});return Test;
};
```This will ensure that the applied `duration` utility class always uses a value of `300`, otherwise an error will be thrown — effectively preventing values from diverging in multiple places, just like a constant would.
**NOTE:** It is highly recommended to use this package in combition with [clsx](https://www.npmjs.com/package/clsx) if you're applying lots of utility classes.
## Why is this needed?
When using TailwindCSS' [Just-in-Time Mode](https://v2.tailwindcss.com/docs/just-in-time-mode), it will scan your template files and automatically only generate the CSS that is needed for the utility classes it finds.
If it doesn't find a particular utility class (like `bg-black`), it won't generate CSS for it.
That's one of the main purposes of this mode (generating as little CSS as possible), and it's amazing. However, that also means that TailwindCSS has to be able to see all of your utility classes upfront in your code, otherwise it will consider them non-existent.
If you're applying a class name conditionally like so...
```js
const Component = () => {
return Test;
};
```...then TailwindCSS would still be able to generate the CSS, because it can see the utility class.
Once you start doing something like this, however...
```js
const Component = () => {
return Test;
};
```...TailwindCSS won't be able to detect it, because the actual name of the class is only known at runtime.
The package right here lets you accomplish the things mentioned in the intro, while still letting TailwindCSS detect the utility classes upfront.
## Additional Options
By default, `.util` matches utility classes against your defined constant by checking if one of them ends in the suffix `-[your-constant]`, where `[your-constant]` is the constant value you've passed as the first argument to `new TailwindConstant`.
If you'd like to assert with a custom suffix, you can pass it like this:
```jsx
const darkBackground = new TailwindConstant(500, "-dark");
```Now the second argument you've passed will be used instead of `-[your-constant]`.
Additionally, `.util` also allows for passing extra conditions as a second argument:
```jsx
const Component = () => {
const [state, setState] = useState(null);
return (
Test
);
};
```As you can see, this especially comes in handy when applying a utility class depending on some state.
## Author
Created by [Leo Lamprecht (@leo)](https://leo.im)