Skip to content

Commit

Permalink
enhancement: eject components from plugins (#3444)
Browse files Browse the repository at this point in the history
* enhancement: eject components from plugins

* Update lib/generators/avo/eject_generator.rb

* Update lib/generators/avo/eject_generator.rb
  • Loading branch information
Paul-Bob authored Nov 20, 2024
1 parent 0660dc6 commit 5da7a10
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion lib/generators/avo/eject_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,14 @@ def eject_component(component_to_eject = options[:component], confirmation: true
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 5da7a10

Please sign in to comment.