File tree 3 files changed +29
-3
lines changed
3 files changed +29
-3
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,13 @@ module ClassVariants
21
21
blue : "text-white bg-blue-500 border-blue-700 hover:bg-blue-600" ,
22
22
red : "text-white bg-red-500 border-red-700 hover:bg-red-600" ,
23
23
} ,
24
+ block : "justify-center w-full" ,
25
+ "!block" : "justify-between" ,
24
26
} ,
25
27
defaults : {
26
28
size : :base ,
27
29
color : :white ,
30
+ block : false ,
28
31
}
29
32
)
30
33
@@ -33,6 +36,6 @@ module ClassVariants
33
36
end
34
37
35
38
x . report ( "rendering with overrides" ) do
36
- button_classes . render ( size : :sm , color : :red )
39
+ button_classes . render ( size : :sm , color : :red , block : true )
37
40
end
38
41
end
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ class ClassVariants::Instance
5
5
6
6
def initialize ( classes = "" , variants : { } , defaults : { } )
7
7
@classes = classes
8
- @variants = variants
8
+ @variants = expand_boolean_variants ( variants )
9
9
@defaults = defaults
10
10
end
11
11
@@ -26,4 +26,20 @@ def render(**overrides)
26
26
# Return the final token list
27
27
result . join " "
28
28
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
29
45
end
Original file line number Diff line number Diff line change @@ -52,17 +52,24 @@ button_classes = ClassVariants.build(
52
52
red: " bg-red-600 hover:bg-red-700 focus:ring-red-500" ,
53
53
blue: " bg-blue-600 hover:bg-blue-700 focus:ring-blue-500" ,
54
54
},
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" ,
55
61
},
56
62
defaults: {
57
63
size: :md ,
58
64
color: :indigo ,
65
+ icon: false
59
66
}
60
67
)
61
68
62
69
# Call it with our desired variants
63
70
button_classes.render(color: :blue , size: :sm )
64
71
button_classes.render
65
- button_classes.render(color: :red , size: :xl )
72
+ button_classes.render(color: :red , size: :xl , icon: true )
66
73
```
67
74
68
75
## Use with Rails
You can’t perform that action at this time.
0 commit comments