Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enhancement: eject components from plugins #3444

Merged
merged 3 commits into from
Nov 20, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Paul-Bob marked this conversation as resolved.
Show resolved Hide resolved
Paul-Bob marked this conversation as resolved.
Show resolved Hide resolved
# 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
Loading