lib/rails/generators/component/component_generator.rb in view_component-2.37.0 vs lib/rails/generators/component/component_generator.rb in view_component-2.38.0
- old
+ new
@@ -10,17 +10,21 @@
source_root File.expand_path("templates", __dir__)
argument :attributes, type: :array, default: [], banner: "attribute"
check_class_collision suffix: "Component"
class_option :inline, type: :boolean, default: false
+ class_option :stimulus, type: :boolean, default: ViewComponent::Base.generate_stimulus_controller
+ class_option :sidecar, type: :boolean, default: false
def create_component_file
template "component.rb", File.join(component_path, class_path, "#{file_name}_component.rb")
end
hook_for :test_framework
hook_for :preview, type: :boolean
+
+ hook_for :stimulus, type: :boolean
hook_for :template_engine do |instance, template_engine|
instance.invoke template_engine, [instance.name]
end