Skip to content

Commit

Permalink
enhancement: eject components from plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul-Bob committed Nov 20, 2024
1 parent 0660dc6 commit 47304c2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion lib/generators/avo/eject_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,16 @@ def eject_component(component_to_eject = options[:component], confirmation: true
# Example: Avo::Views::ResourceIndexComponent => avo/views/resource_index_component
component = component_to_eject.underscore


# Get the component path for both, the rb and erb files
rb, erb = ["app/components/#{component}.rb", "app/components/#{component}.html.erb"]
rb, erb = if component_constant = component_to_eject.safe_constantize
# If component is a constant, find the source location
source_location = component_constant.source_location

[source_location, source_location.gsub(".rb", ".html.erb")]
else
["app/components/#{component}.rb", "app/components/#{component}.html.erb"]
end

# Return if one of the components doesn't exist
if !path_exists?(rb) || !path_exists?(erb)
Expand Down

0 comments on commit 47304c2

Please sign in to comment.