1
+ # frozen_string_literal: true
2
+
1
3
module ClassVariants
2
4
class Instance
3
5
def initialize ( ...)
4
6
@bases = [ ]
5
7
@variants = [ ]
6
8
@defaults = { }
9
+ @slots = nil
7
10
8
11
merge ( ...)
9
12
end
@@ -17,7 +20,7 @@ def dup
17
20
end
18
21
19
22
def merge ( **options , &block )
20
- raise ArgumentError , "Use of hash config and code block is not supported" if !options . empty? && block_given?
23
+ raise ArgumentError , "Use of hash config and code block is not supported" if !options . empty? && block
21
24
22
25
( base = options . fetch ( :base , nil ) ) && @bases << { class : base , slot : :default }
23
26
@variants += [
@@ -26,7 +29,7 @@ def merge(**options, &block)
26
29
] . inject ( :+ )
27
30
@defaults . merge! ( options . fetch ( :defaults , { } ) )
28
31
29
- instance_eval ( &block ) if block_given?
32
+ instance_eval ( &block ) if block
30
33
31
34
self
32
35
end
@@ -46,9 +49,15 @@ def render(slot = :default, **overrides)
46
49
@variants . each do |candidate |
47
50
next unless candidate [ :slot ] == slot
48
51
49
- if ( candidate . keys - [ :class , :slot ] ) . all? { |key | criteria [ key ] == candidate [ key ] }
50
- result << candidate [ :class ]
52
+ match = false
53
+
54
+ candidate . each_key do |key |
55
+ next if key == :class || key == :slot
56
+ match = criteria [ key ] == candidate [ key ]
57
+ break unless match
51
58
end
59
+
60
+ result << candidate [ :class ] if match
52
61
end
53
62
54
63
# add the passed in classes to the result
@@ -64,9 +73,9 @@ def render(slot = :default, **overrides)
64
73
private
65
74
66
75
def base ( klass = nil , &block )
67
- raise ArgumentError , "Use of positional argument and code block is not supported" if klass && block_given?
76
+ raise ArgumentError , "Use of positional argument and code block is not supported" if klass && block
68
77
69
- if block_given?
78
+ if block
70
79
with_slots ( &block ) . each do |slot |
71
80
@bases << slot
72
81
end
@@ -76,9 +85,9 @@ def base(klass = nil, &block)
76
85
end
77
86
78
87
def variant ( **options , &block )
79
- raise ArgumentError , "Use of class option and code block is not supported" if options . key? ( :class ) && block_given?
88
+ raise ArgumentError , "Use of class option and code block is not supported" if options . key? ( :class ) && block
80
89
81
- if block_given?
90
+ if block
82
91
with_slots ( &block ) . each do |slot |
83
92
@variants << options . merge ( slot )
84
93
end
@@ -98,9 +107,10 @@ def slot(name = :default, **options)
98
107
end
99
108
100
109
def with_slots
101
- @slots = [ ]
110
+ new_slots = [ ]
111
+ @slots = new_slots
102
112
yield
103
- @slots
113
+ new_slots
104
114
end
105
115
106
116
def expand_variants ( variants )
0 commit comments