Skip to content

Commit 8a374ac

Browse files
authored
Merge pull request #25 from javierav/readme
improve readme with latest changes
2 parents 71c290e + 92e1533 commit 8a374ac

File tree

1 file changed

+54
-22
lines changed

1 file changed

+54
-22
lines changed

readme.md

+54-22
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ Inspired by [variant-classnames](https://github.com/mattvalleycodes/variant-clas
88

99
* [DRY up your tailwind CSS using this awesome gem](https://www.youtube.com/watch?v=cFcwNH6x77g)
1010

11-
1211
## Installation
1312

1413
Add this line to your application's Gemfile:
@@ -34,9 +33,9 @@ $ gem install class_variants
3433
We create an object from the class or helper where we define the configuration using four arguments:
3534

3635
1. The `base` keyword argument with default classes that should be applied to each variant.
37-
1. The `variants` keyword argument where we declare the variants with their option and classes.
38-
1. The `compound_variants` keyword argument where we declare the compound variants with their conditions and classes
39-
1. The `defaults` keyword argument (optional) where we declare the default value for each variant.
36+
2. The `variants` keyword argument where we declare the variants with their option and classes.
37+
3. The `compound_variants` keyword argument where we declare the compound variants with their conditions and classes
38+
4. The `defaults` keyword argument (optional) where we declare the default value for each variant.
4039

4140
Below we'll implement the [button component](https://tailwindui.com/components/application-ui/elements/buttons) from Tailwind UI.
4241

@@ -185,6 +184,14 @@ end
185184
</div>
186185
```
187186

187+
## Merge definitions
188+
189+
```ruby
190+
alert_classes = ClassVariants.build(base: "bg-white")
191+
alert_classes.merge(base: "text-black")
192+
alert_classes.render # => "bg-white text-black"
193+
```
194+
188195
## Full API
189196

190197
```ruby
@@ -303,6 +310,10 @@ end
303310
<%= link_to :Avo, "https://avohq.io", class: button_classes.render(color: :red, size: :xl) %>
304311
```
305312

313+
### Output
314+
315+
### ![](sample.jpg)
316+
306317
## Helper module
307318

308319
If you're developing something more complex you might want to use composition more. You might want to use the helper module for that.
@@ -311,19 +322,43 @@ If you're developing something more complex you might want to use composition mo
311322
class MyClass
312323
include ClassVariants::Helper
313324

314-
class_variants {
315-
base: {},
316-
variants: {}
317-
}
325+
class_variants(
326+
base: "bg-white",
327+
variants: {
328+
color: {
329+
red: "text-red",
330+
blue: "text-blue"
331+
}
332+
}
333+
)
318334
end
319335

320-
MyClass.new.class_variants(:container, color: :red, class: "shadow")
336+
MyClass.new.class_variants(color: :red, class: "shadow") # => "bg-white text-red shadow"
337+
```
338+
339+
This helper supports class inheritance, so that the subclass receives a copy of the class_variants config that the parent class had at the time of inheritance. From that point on, the settings are kept separate for both. Successive calls to class_variants helper method, will cause the configuration to be merged.
340+
341+
```ruby
342+
class A
343+
include ClassVariants::Helper
344+
345+
class_variants(base: "bg-red")
346+
end
347+
348+
class B < A
349+
class_variants(base: "text-black")
350+
end
351+
352+
A.class_variants(base: "text-white")
353+
354+
A.new.class_variants # => "bg-red text-white"
355+
B.new.class_variants # => "bg-red text-black"
321356
```
322357

323358
## `tailwind_merge`
324359

325360
By default, the classes are merged using `concat`, but you can use the awesome [TailwindMerge](https://github.com/gjtorikian/tailwind_merge) gem.
326-
Install the gem using `bundle add tailwind_merge` and use this configuration to enable it.
361+
Install the gem using `bundle add tailwind_merge` and use this configuration to enable it. If you're using Rails, you can put this in an initializer.
327362

328363
```ruby
329364
ClassVariants.configure do |config|
@@ -333,16 +368,12 @@ ClassVariants.configure do |config|
333368
end
334369
```
335370

336-
### Output
337-
338-
![](sample.jpg)
339-
340371
## Other packages
341372

342-
- [`active_storage-blurhash`](https://github.com/avo-hq/active_storage-blurhash) - A plug-n-play [blurhash](https://blurha.sh/) integration for images stored in ActiveStorage
343-
- [`avo`](https://github.com/avo-hq/avo) - Build Content management systems with Ruby on Rails
344-
- [`prop_initializer`](https://github.com/avo-hq/prop_initializer) - A flexible tool for defining properties on Ruby classes.
345-
- [`stimulus-confetti`](https://github.com/avo-hq/stimulus-confetti) - The easiest way to add confetti to your StimulusJS app
373+
- [`active_storage-blurhash`](https://github.com/avo-hq/active_storage-blurhash) - A plug-n-play [blurhash](https://blurha.sh/) integration for images stored in ActiveStorage
374+
- [`avo`](https://github.com/avo-hq/avo) - Build Content management systems with Ruby on Rails
375+
- [`prop_initializer`](https://github.com/avo-hq/prop_initializer) - A flexible tool for defining properties on Ruby classes.
376+
- [`stimulus-confetti`](https://github.com/avo-hq/stimulus-confetti) - The easiest way to add confetti to your StimulusJS app
346377

347378
## Try Avo ⭐️
348379

@@ -353,12 +384,13 @@ If you enjoyed this gem try out [Avo](https://github.com/avo-hq/avo). It helps d
353384
## Contributing
354385

355386
1. Fork it `git clone https://github.com/avo-hq/class_variants`
356-
1. Create your feature branch `git checkout -b my-new-feature`
357-
1. Commit your changes `git commit -am 'Add some feature'`
358-
1. Push to the branch `git push origin my-new-feature`
359-
1. Create new Pull Request
387+
2. Create your feature branch `git checkout -b my-new-feature`
388+
3. Commit your changes `git commit -am 'Add some feature'`
389+
4. Push to the branch `git push origin my-new-feature`
390+
5. Create new Pull Request
360391

361392
## License
393+
362394
This package is available as open source under the terms of the MIT License.
363395

364396
## Cutting a release

0 commit comments

Comments
 (0)