module Rbexy module ComponentProviders class ViewComponentProvider def match?(name) name =~ /^[A-Z]/ && find(name) != nil end def render(context, name, **attrs, &block) props = attrs.transform_keys { |k| ActiveSupport::Inflector.underscore(k.to_s).to_sym } find(name).new(**props).render_in(context, &block) end def find(name) ActiveSupport::Inflector.constantize("#{name}Component") rescue NameError => e raise e unless e.message =~ /wrong constant name/ || e.message =~ /uninitialized constant/ nil end end end end