Skip to content

Commit 8f9a97f

Browse files
authored
Merge pull request #32 from joeldrapper/micro-perf
Micro performance optimisations
2 parents 51ff052 + 40fb446 commit 8f9a97f

File tree

9 files changed

+62
-36
lines changed

9 files changed

+62
-36
lines changed

bench.rb

100644100755
+27-25
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,37 @@
1+
#!/usr/bin/env ruby
12
# frozen_string_literal: true
23

34
require "benchmark/ips"
5+
require "class_variants"
46

5-
module ClassVariants
6-
end
7+
RubyVM::YJIT.enable
78

8-
require_relative "lib/class_variants/instance"
9+
button_classes = ClassVariants.build(
10+
base: "rounded border-2 focus:ring-blue-500",
11+
variants: {
12+
size: {
13+
sm: "text-xs px-1.5 py-1",
14+
base: "text-sm px-2 py-1.5",
15+
lg: "text-base px-3 py-2"
16+
},
17+
color: {
18+
white: "text-white bg-transparent border-white",
19+
blue: "text-white bg-blue-500 border-blue-700 hover:bg-blue-600",
20+
red: "text-white bg-red-500 border-red-700 hover:bg-red-600"
21+
},
22+
block: "justify-center w-full",
23+
"!block": "justify-between"
24+
},
25+
defaults: {
26+
size: :base,
27+
color: :white,
28+
block: false
29+
}
30+
)
931

1032
Benchmark.ips do |x|
11-
button_classes = ClassVariants::Instance.new(
12-
"rounded border-2 focus:ring-blue-500",
13-
variants: {
14-
size: {
15-
sm: "text-xs px-1.5 py-1",
16-
base: "text-sm px-2 py-1.5",
17-
lg: "text-base px-3 py-2"
18-
},
19-
color: {
20-
white: "text-white bg-transparent border-white",
21-
blue: "text-white bg-blue-500 border-blue-700 hover:bg-blue-600",
22-
red: "text-white bg-red-500 border-red-700 hover:bg-red-600"
23-
},
24-
block: "justify-center w-full",
25-
"!block": "justify-between"
26-
},
27-
defaults: {
28-
size: :base,
29-
color: :white,
30-
block: false
31-
}
32-
)
33+
x.warmup = 5
34+
x.time = 20
3335

3436
x.report("rendering only defaults") do
3537
button_classes.render

lib/class_variants.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require "class_variants/version"
24
require "class_variants/action_view/helpers"
35
require "class_variants/configuration"

lib/class_variants/action_view/helpers.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ClassVariants
24
module ActionView
35
module Helpers

lib/class_variants/configuration.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ClassVariants
24
class Configuration
35
def process_classes_with(&block)

lib/class_variants/helper.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ClassVariants
24
module Helper
35
module ClassMethods

lib/class_variants/instance.rb

+20-10
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1+
# frozen_string_literal: true
2+
13
module ClassVariants
24
class Instance
35
def initialize(...)
46
@bases = []
57
@variants = []
68
@defaults = {}
9+
@slots = nil
710

811
merge(...)
912
end
@@ -17,7 +20,7 @@ def dup
1720
end
1821

1922
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
2124

2225
(base = options.fetch(:base, nil)) && @bases << {class: base, slot: :default}
2326
@variants += [
@@ -26,7 +29,7 @@ def merge(**options, &block)
2629
].inject(:+)
2730
@defaults.merge!(options.fetch(:defaults, {}))
2831

29-
instance_eval(&block) if block_given?
32+
instance_eval(&block) if block
3033

3134
self
3235
end
@@ -46,9 +49,15 @@ def render(slot = :default, **overrides)
4649
@variants.each do |candidate|
4750
next unless candidate[:slot] == slot
4851

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
5158
end
59+
60+
result << candidate[:class] if match
5261
end
5362

5463
# add the passed in classes to the result
@@ -64,9 +73,9 @@ def render(slot = :default, **overrides)
6473
private
6574

6675
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
6877

69-
if block_given?
78+
if block
7079
with_slots(&block).each do |slot|
7180
@bases << slot
7281
end
@@ -76,9 +85,9 @@ def base(klass = nil, &block)
7685
end
7786

7887
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
8089

81-
if block_given?
90+
if block
8291
with_slots(&block).each do |slot|
8392
@variants << options.merge(slot)
8493
end
@@ -98,9 +107,10 @@ def slot(name = :default, **options)
98107
end
99108

100109
def with_slots
101-
@slots = []
110+
new_slots = []
111+
@slots = new_slots
102112
yield
103-
@slots
113+
new_slots
104114
end
105115

106116
def expand_variants(variants)

lib/class_variants/railtie.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require "rails/railtie"
24

35
module ClassVariants

lib/class_variants/version.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ClassVariants
2-
VERSION = "1.1.0".freeze
4+
VERSION = "1.1.0"
35
end

lib/generators/class_variants/install/install_generator.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ClassVariants
24
module Generators
35
class InstallGenerator < Rails::Generators::Base

0 commit comments

Comments
 (0)