File tree 4 files changed +25
-8
lines changed
4 files changed +25
-8
lines changed Original file line number Diff line number Diff line change 1
1
## Unreleased
2
2
- Add support for merging ([ #23 ] ( https://github.com/avo-hq/class_variants/pull/23 ) )
3
+ - Add support for subclass inheritance in helper ([ #24 ] ( https://github.com/avo-hq/class_variants/pull/24 ) )
3
4
4
5
## 1.0.0 (2024-11-13)
5
6
- Add support for slots ([ #15 ] ( https://github.com/avo-hq/class_variants/pull/15 ) )
Original file line number Diff line number Diff line change @@ -2,22 +2,22 @@ module ClassVariants
2
2
module Helper
3
3
module ClassMethods
4
4
def class_variants ( ...)
5
- @_class_variants_instance = ClassVariants . build ( ...)
6
- end
7
-
8
- def _class_variants_instance
9
- @_class_variants_instance
5
+ singleton_class . instance_variable_get ( :@_class_variants_instance ) . merge ( ...)
10
6
end
11
7
end
12
8
13
9
def self . included ( base )
14
10
base . extend ( ClassMethods )
11
+ base . singleton_class . instance_variable_set ( :@_class_variants_instance , ClassVariants ::Instance . new )
12
+ base . define_singleton_method ( :inherited ) do |subclass |
13
+ subclass . singleton_class . instance_variable_set (
14
+ :@_class_variants_instance , base . singleton_class . instance_variable_get ( :@_class_variants_instance ) . dup
15
+ )
16
+ end
15
17
end
16
18
17
19
def class_variants ( ...)
18
- raise "You must configure class_variants in class definition" unless self . class . _class_variants_instance
19
-
20
- self . class . _class_variants_instance . render ( ...)
20
+ self . class . singleton_class . instance_variable_get ( :@_class_variants_instance ) . render ( ...)
21
21
end
22
22
end
23
23
end
Original file line number Diff line number Diff line change @@ -8,6 +8,14 @@ def initialize(...)
8
8
merge ( ...)
9
9
end
10
10
11
+ def dup
12
+ self . class . new . tap do |copy |
13
+ copy . instance_variable_set ( :@bases , @bases . dup )
14
+ copy . instance_variable_set ( :@variants , @variants . dup )
15
+ copy . instance_variable_set ( :@defaults , @defaults . dup )
16
+ end
17
+ end
18
+
11
19
def merge ( **options , &block )
12
20
raise ArgumentError , "Use of hash config and code block is not supported" if !options . empty? && block_given?
13
21
Original file line number Diff line number Diff line change @@ -7,7 +7,15 @@ class DemoClass
7
7
class_variants base : "rounded border"
8
8
end
9
9
10
+ class Subclass < DemoClass
11
+ class_variants base : "bg-black"
12
+ end
13
+
10
14
def test_call_from_instance
11
15
assert_equal "rounded border" , DemoClass . new . class_variants
12
16
end
17
+
18
+ def test_call_from_subclass
19
+ assert_equal "rounded border bg-black" , Subclass . new . class_variants
20
+ end
13
21
end
You can’t perform that action at this time.
0 commit comments