Class: ActionText::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- ActionText::Generators::InstallGenerator
- Defined in:
- lib/generators/action_text/install/install_generator.rb
Instance Method Summary collapse
- #append_javascript_dependencies ⇒ Object
- #create_actiontext_files ⇒ Object
- #create_migrations ⇒ Object
- #enable_image_processing_gem ⇒ Object
- #install_javascript_dependencies ⇒ Object
- #using_bun? ⇒ Boolean
- #using_js_runtime? ⇒ Boolean
- #using_node? ⇒ Boolean
Instance Method Details
#append_javascript_dependencies ⇒ Object
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/generators/action_text/install/install_generator.rb', line 20 def append_javascript_dependencies destination = Pathname(destination_root) if (application_javascript_path = destination.join("app/javascript/application.js")).exist? insert_into_file application_javascript_path.to_s, %(\nimport "trix"\nimport "@rails/actiontext"\n) else say <<~INSTRUCTIONS, :green You must import the @rails/actiontext and trix JavaScript modules in your application entrypoint. INSTRUCTIONS end if (importmap_path = destination.join("config/importmap.rb")).exist? append_to_file importmap_path.to_s, %(pin "trix"\npin "@rails/actiontext", to: "actiontext.esm.js"\n) end end |
#create_actiontext_files ⇒ Object
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/generators/action_text/install/install_generator.rb', line 36 def create_actiontext_files destination = Pathname(destination_root) template "actiontext.css", "app/assets/stylesheets/actiontext.css" unless destination.join("app/assets/application.css").exist? if (stylesheets = Dir.glob "#{destination_root}/app/assets/stylesheets/application.*.{scss,css}").length > 0 insert_into_file stylesheets.first.to_s, %(@import 'actiontext.css';) else say <<~INSTRUCTIONS, :green To use the Trix editor, you must require 'app/assets/stylesheets/actiontext.css' in your base stylesheet. INSTRUCTIONS end end gem_root = "#{__dir__}/../../../.." copy_file "#{gem_root}/app/views/active_storage/blobs/_blob.html.erb", "app/views/active_storage/blobs/_blob.html.erb" copy_file "#{gem_root}/app/views/layouts/action_text/contents/_content.html.erb", "app/views/layouts/action_text/contents/_content.html.erb" end |
#create_migrations ⇒ Object
67 68 69 |
# File 'lib/generators/action_text/install/install_generator.rb', line 67 def create_migrations rails_command "railties:install:migrations FROM=active_storage,action_text", inline: true end |
#enable_image_processing_gem ⇒ Object
60 61 62 63 64 65 |
# File 'lib/generators/action_text/install/install_generator.rb', line 60 def enable_image_processing_gem if (gemfile_path = Pathname(destination_root).join("Gemfile")).exist? say "Ensure image_processing gem has been enabled so image uploads will work (remember to bundle!)" uncomment_lines gemfile_path, /gem "image_processing"/ end end |
#install_javascript_dependencies ⇒ Object
11 12 13 14 15 16 17 18 |
# File 'lib/generators/action_text/install/install_generator.rb', line 11 def install_javascript_dependencies say "Installing JavaScript dependencies", :green if using_bun? run "bun add @rails/actiontext trix" elsif using_node? run "yarn add @rails/actiontext trix" end end |
#using_bun? ⇒ Boolean
75 76 77 78 79 |
# File 'lib/generators/action_text/install/install_generator.rb', line 75 def using_bun? # Cannot assume yarn.lock has been generated yet so we look for # a file known to be generated by the jsbundling-rails gem @using_bun ||= using_js_runtime? && Pathname(destination_root).join("bun.config.js").exist? end |
#using_js_runtime? ⇒ Boolean
71 72 73 |
# File 'lib/generators/action_text/install/install_generator.rb', line 71 def using_js_runtime? @using_js_runtime ||= Pathname(destination_root).join("package.json").exist? end |
#using_node? ⇒ Boolean
81 82 83 84 |
# File 'lib/generators/action_text/install/install_generator.rb', line 81 def using_node? # Bun is the only runtime that _isn't_ node. @using_node ||= using_js_runtime? && !Pathname(destination_root).join("bun.config.js").exist? end |