Skip to content

Commit 899a9b1

Browse files
authored
Merge pull request #3 from willcosgrove/boolean-variants
2 parents a8681df + 55fc9a8 commit 899a9b1

File tree

3 files changed

+29
-3
lines changed

3 files changed

+29
-3
lines changed

bench.rb

+4-1
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,13 @@ module ClassVariants
2121
blue: "text-white bg-blue-500 border-blue-700 hover:bg-blue-600",
2222
red: "text-white bg-red-500 border-red-700 hover:bg-red-600",
2323
},
24+
block: "justify-center w-full",
25+
"!block": "justify-between",
2426
},
2527
defaults: {
2628
size: :base,
2729
color: :white,
30+
block: false,
2831
}
2932
)
3033

@@ -33,6 +36,6 @@ module ClassVariants
3336
end
3437

3538
x.report("rendering with overrides") do
36-
button_classes.render(size: :sm, color: :red)
39+
button_classes.render(size: :sm, color: :red, block: true)
3740
end
3841
end

lib/class_variants/instance.rb

+17-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class ClassVariants::Instance
55

66
def initialize(classes = "", variants: {}, defaults: {})
77
@classes = classes
8-
@variants = variants
8+
@variants = expand_boolean_variants(variants)
99
@defaults = defaults
1010
end
1111

@@ -26,4 +26,20 @@ def render(**overrides)
2626
# Return the final token list
2727
result.join " "
2828
end
29+
30+
private
31+
32+
def expand_boolean_variants(variants)
33+
variants.each.map { |key, value|
34+
case value
35+
when String
36+
s_key = key.to_s
37+
{ s_key.delete_prefix("!").to_sym => { !s_key.start_with?("!") => value } }
38+
else
39+
{ key => value }
40+
end
41+
}.reduce do |variants, more_variants|
42+
variants.merge!(more_variants) { |_key, v1, v2| v1.merge!(v2) }
43+
end
44+
end
2945
end

readme.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -52,17 +52,24 @@ button_classes = ClassVariants.build(
5252
red: "bg-red-600 hover:bg-red-700 focus:ring-red-500",
5353
blue: "bg-blue-600 hover:bg-blue-700 focus:ring-blue-500",
5454
},
55+
# A variant whose value is a string will be expanded into a hash that looks
56+
# like { true => "classes" }
57+
block: "w-full justify-center",
58+
# Unless the key starts with !, in which case it will expand into
59+
# { false => "classes" }
60+
"!block": "w-auto",
5561
},
5662
defaults: {
5763
size: :md,
5864
color: :indigo,
65+
icon: false
5966
}
6067
)
6168

6269
# Call it with our desired variants
6370
button_classes.render(color: :blue, size: :sm)
6471
button_classes.render
65-
button_classes.render(color: :red, size: :xl)
72+
button_classes.render(color: :red, size: :xl, icon: true)
6673
```
6774

6875
## Use with Rails

0 commit comments

Comments
 (0)