diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index a84b221aa..be617a358 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -8,13 +8,19 @@ on: jobs: examples: + env: + SKIP_YARN_COREPACK_CHECK: 0 + strategy: + fail-fast: false + matrix: + versions: ['oldest', 'newest'] runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 with: persist-credentials: false - name: Get changed files - id: changed-files-specific + id: changed-files uses: tj-actions/changed-files@v44 with: files: | @@ -26,7 +32,7 @@ jobs: - name: Setup Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 3.3 + ruby-version: ${{ matrix.versions == 'oldest' && '3.0' || '3.3' }} bundler: 2.5.9 - name: Setup Node uses: actions/setup-node@v3 @@ -41,6 +47,9 @@ jobs: echo "Node version: "; node -v echo "Yarn version: "; yarn --version echo "Bundler version: "; bundle --version + - name: run conversion script to support shakapacker v6 + if: matrix.versions == 'oldest' + run: script/convert - name: Save root node_modules to cache uses: actions/cache@v3 with: @@ -50,13 +59,12 @@ jobs: uses: actions/cache@v3 with: path: vendor/bundle - key: v5-package-app-gem-cache-${{ hashFiles('react_on_rails.gemspec') }} + key: package-app-gem-cache-${{ hashFiles('react_on_rails.gemspec') }}-${{ hashFiles('Gemfile.development_dependencies') }}-${{ matrix.versions }} - id: get-sha run: echo "::set-output name=sha::$(git rev-parse HEAD)" - name: Install Node modules with Yarn for renderer package run: | yarn install --no-progress --no-emoji - yarn run eslint -v sudo yarn global add yalc - name: yalc publish for react-on-rails run: yalc publish @@ -78,7 +86,7 @@ jobs: run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p - name: Main CI if: steps.changed-files.outputs.any_changed == 'true' - run: bundle exec rake run_rspec:examples + run: bundle exec rake run_rspec:${{ matrix.versions == 'oldest' && 'web' || 'shaka' }}packer_examples - name: Store test results uses: actions/upload-artifact@v3 with: diff --git a/.github/workflows/lint-js-and-ruby.yml b/.github/workflows/lint-js-and-ruby.yml index edfa9077a..54a89e017 100644 --- a/.github/workflows/lint-js-and-ruby.yml +++ b/.github/workflows/lint-js-and-ruby.yml @@ -9,10 +9,6 @@ on: jobs: build: - strategy: - matrix: - ruby: [3] - node: [20] runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 @@ -21,12 +17,12 @@ jobs: - name: Setup Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: ${{ matrix.ruby }} + ruby-version: 3 bundler: 2.5.9 - name: Setup Node uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node }} + node-version: 20 - name: Print system information run: | echo "Linux release: "; cat /etc/issue @@ -45,12 +41,10 @@ jobs: uses: actions/cache@v3 with: path: vendor/bundle - key: v5-package-app-gem-cache-${{ hashFiles('react_on_rails.gemspec') }} + key: package-app-gem-cache-${{ hashFiles('react_on_rails.gemspec') }}-${{ hashFiles('Gemfile.development_dependencies') }}-oldest - name: Install Node modules with Yarn for renderer package run: | yarn install --no-progress --no-emoji - yarn run eslint -v - sudo yarn global add yalc - name: Install Ruby Gems for package run: bundle check --path=vendor/bundle || bundle _2.5.9_ install --path=vendor/bundle --jobs=4 --retry=3 - name: Linting of Ruby diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6b26a3e9d..7719026e5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,8 +10,7 @@ jobs: build-dummy-app-webpack-test-bundles: strategy: matrix: - ruby: [3.0, 3.3] - node: [16, 20] + versions: ['oldest', 'newest'] runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 @@ -20,7 +19,7 @@ jobs: - name: Setup Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: ${{ matrix.ruby }} + ruby-version: ${{ matrix.versions == 'oldest' && '3.0' || '3.3' }} bundler: 2.5.9 # libyaml-dev is needed for psych v5 # this gem depends on sdoc which depends on rdoc which depends on psych @@ -29,7 +28,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node }} + node-version: ${{ matrix.versions == 'oldest' && '16' || '20' }} - name: Print system information run: | echo "Linux release: "; cat /etc/issue @@ -39,6 +38,9 @@ jobs: echo "Node version: "; node -v echo "Yarn version: "; yarn --version echo "Bundler version: "; bundle --version + - name: run conversion script to support shakapacker v6 + if: matrix.versions == 'oldest' + run: script/convert - name: Save root node_modules to cache uses: actions/cache@v3 with: @@ -47,7 +49,6 @@ jobs: - name: Install Node modules with Yarn for renderer package run: | yarn install --no-progress --no-emoji - yarn run eslint -v sudo yarn global add yalc - name: yalc publish for react-on-rails run: yalc publish @@ -55,7 +56,7 @@ jobs: uses: actions/cache@v3 with: path: spec/dummy/node_modules - key: v5-dummy-app-node-modules-cache-${{ hashFiles('spec/dummy/yarn.lock') }} + key: dummy-app-node-modules-cache-${{ hashFiles('spec/dummy/package.json') }}-${{ matrix.versions }} - name: yalc add react-on-rails run: cd spec/dummy && yalc add react-on-rails - name: Install Node modules with Yarn for dummy app @@ -64,27 +65,27 @@ jobs: uses: actions/cache@v3 with: path: spec/dummy/vendor/bundle - key: v5-dummy-app-gem-cache-${{ hashFiles('spec/dummy/Gemfile.lock') }} + key: dummy-app-gem-cache-${{ hashFiles('react_on_rails.gemspec') }}-${{ hashFiles('Gemfile.development_dependencies') }}-${{ matrix.versions }} - name: Install Ruby Gems for dummy app run: cd spec/dummy && bundle lock --add-platform 'x86_64-linux' && bundle check --path=vendor/bundle || bundle _2.5.9_ install --path=vendor/bundle --jobs=4 --retry=3 - name: generate file system-based packs run: cd spec/dummy && RAILS_ENV=test bundle exec rake react_on_rails:generate_packs - name: Build test bundles for dummy app - run: cd spec/dummy && yarn run build:test + run: cd spec/dummy && rm -rf public/webpack/test && yarn build:rescript && RAILS_ENV=test NODE_ENV=test bin/${{ matrix.versions == 'oldest' && 'web' || 'shaka' }}packer - id: get-sha run: echo "::set-output name=sha::$(git rev-parse HEAD)" - name: Save test webpack bundles to cache (for build number checksum used by rspec job) uses: actions/cache/save@v3 with: path: spec/dummy/public/webpack - key: v5-dummy-app-webpack-bundle-${{ steps.get-sha.outputs.sha }} + key: dummy-app-webpack-bundle-${{ steps.get-sha.outputs.sha }}-${{ matrix.versions }} - main: + dummy-app-integration-tests: needs: build-dummy-app-webpack-test-bundles strategy: + fail-fast: false matrix: - ruby: [3.0, 3.3] - node: [16, 20] + versions: ['oldest', 'newest'] runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 @@ -93,12 +94,12 @@ jobs: - name: Setup Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: ${{ matrix.ruby }} + ruby-version: ${{ matrix.versions == 'oldest' && '3.0' || '3.3' }} bundler: 2.5.9 - name: Setup Node uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node }} + node-version: ${{ matrix.versions == 'oldest' && '16' || '20' }} - name: Print system information run: | echo "Linux release: "; cat /etc/issue @@ -108,6 +109,9 @@ jobs: echo "Node version: "; node -v echo "Yarn version: "; yarn --version echo "Bundler version: "; bundle --version + - name: run conversion script to support shakapacker v6 + if: matrix.versions == 'oldest' + run: script/convert - name: Save root node_modules to cache uses: actions/cache@v3 with: @@ -117,33 +121,34 @@ jobs: uses: actions/cache@v3 with: path: vendor/bundle - key: v5-package-app-gem-cache-${{ hashFiles('react_on_rails.gemspec') }} + key: package-app-gem-cache-${{ hashFiles('react_on_rails.gemspec') }}-${{ hashFiles('Gemfile.development_dependencies') }}-${{ matrix.versions }} - name: Save dummy app ruby gems to cache uses: actions/cache@v3 with: path: spec/dummy/vendor/bundle - key: v5-dummy-app-gem-cache-${{ hashFiles('spec/dummy/Gemfile.lock') }} + key: dummy-app-gem-cache-${{ hashFiles('react_on_rails.gemspec') }}-${{ hashFiles('Gemfile.development_dependencies') }}-${{ matrix.versions }} - name: Save spec/dummy/node_modules to cache uses: actions/cache@v3 with: path: spec/dummy/node_modules - key: v5-dummy-app-node-modules-cache-${{ hashFiles('spec/dummy/yarn.lock') }} + key: dummy-app-node-modules-cache-${{ hashFiles('spec/dummy/package.json') }}-${{ matrix.versions }} - id: get-sha run: echo "::set-output name=sha::$(git rev-parse HEAD)" - name: Save test webpack bundles to cache (for build number checksum used by rspec job) uses: actions/cache@v3 with: path: spec/dummy/public/webpack - key: v5-dummy-app-webpack-bundle-${{ steps.get-sha.outputs.sha }} - - name: Install Node modules with Yarn for renderer package + key: dummy-app-webpack-bundle-${{ steps.get-sha.outputs.sha }}-${{ matrix.versions }} + - name: Install Node modules with Yarn run: | yarn install --no-progress --no-emoji - yarn run eslint -v sudo yarn global add yalc - name: yalc publish for react-on-rails run: yalc publish - name: yalc add react-on-rails run: cd spec/dummy && yalc add react-on-rails + - name: Install Node modules with Yarn for dummy app + run: cd spec/dummy && yarn install --no-progress --no-emoji - name: Install Ruby Gems for package run: bundle lock --add-platform 'x86_64-linux' && bundle check --path=vendor/bundle || bundle _2.5.9_ install --path=vendor/bundle --jobs=4 --retry=3 - name: Install Ruby Gems for dummy app @@ -164,8 +169,15 @@ jobs: run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p - name: generate file system-based packs run: cd spec/dummy && RAILS_ENV=test bundle exec rake react_on_rails:generate_packs + - name: Git Stuff + if: matrix.versions == 'oldest' + run: | + git config user.email "you@example.com" + git config user.name "Your Name" + git commit -am "stop generators from complaining about uncommitted code" + - run: cd spec/dummy && bundle info shakapacker - name: Main CI - run: bundle exec rake run_rspec:all_but_examples + run: bundle exec rake run_rspec:all_dummy - name: Store test results uses: actions/upload-artifact@v3 with: diff --git a/.github/workflows/package-js-tests.yml b/.github/workflows/package-js-tests.yml index c1828990d..7b826b02f 100644 --- a/.github/workflows/package-js-tests.yml +++ b/.github/workflows/package-js-tests.yml @@ -11,7 +11,7 @@ jobs: build: strategy: matrix: - node: [16, 20] + versions: ['oldest', 'newest'] runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 @@ -20,7 +20,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node }} + node-version: ${{ matrix.versions == 'oldest' && '16' || '20' }} - name: Print system information run: | echo "Linux release: "; cat /etc/issue diff --git a/.github/workflows/rspec-package-specs.yml b/.github/workflows/rspec-package-specs.yml index 287e53114..da72f9fd3 100644 --- a/.github/workflows/rspec-package-specs.yml +++ b/.github/workflows/rspec-package-specs.yml @@ -7,11 +7,11 @@ on: pull_request: jobs: - build: + rspec-package-tests: strategy: + fail-fast: false matrix: - ruby: [3.0, 3.3] - node: [16, 20] + versions: ['oldest', 'newest'] runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 @@ -20,7 +20,7 @@ jobs: - name: Setup Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: ${{ matrix.ruby }} + ruby-version: ${{ matrix.versions == 'oldest' && '3.0' || '3.3' }} bundler: 2.5.9 - name: Print system information run: | @@ -31,13 +31,22 @@ jobs: echo "Node version: "; node -v echo "Yarn version: "; yarn --version echo "Bundler version: "; bundle --version + - name: run conversion script to support shakapacker v6 + if: matrix.versions == 'oldest' + run: script/convert - name: Save root ruby gems to cache uses: actions/cache@v3 with: path: vendor/bundle - key: v5-package-app-gem-cache-${{ hashFiles('react_on_rails.gemspec') }} + key: package-app-gem-cache-${{ hashFiles('react_on_rails.gemspec') }}-${{ matrix.versions }} - name: Install Ruby Gems for package run: bundle check --path=vendor/bundle || bundle _2.5.9_ install --path=vendor/bundle --jobs=4 --retry=3 + - name: Git Stuff + if: matrix.versions == 'oldest' + run: | + git config user.email "you@example.com" + git config user.name "Your Name" + git commit -am "stop generators from complaining about uncommitted code" - name: Run rspec tests run: bundle exec rspec spec/react_on_rails - name: Store test results diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a5d5396a..51a0def9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,10 +21,14 @@ Changes since the last non-beta release. #### Fixed - Address a number of typos and grammar mistakes [PR 1631](https://github.com/shakacode/react_on_rails/pull/1631) by [G-Rath](https://github.com/G-Rath) +#### Added + +- Adds an adapter module & improves test suite to support all versions of Shakapacker. [PR 1622](https://github.com/shakacode/react_on_rails/pull/1622) by [adriangohjw](https://github.com/adriangohjw) + ### [14.0.2] - 2024-06-11 #### Fixed -- Project initialization with Shakapacker v8+ fixed [PR 1629](https://github.com/shakacode/react_on_rails/pull/1629) by [vaukalak](https://github.com/vaukalak) +- Generator errors with Shakapacker v8+ fixed [PR 1629](https://github.com/shakacode/react_on_rails/pull/1629) by [vaukalak](https://github.com/vaukalak) ### [14.0.1] - 2024-05-16 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8ec28a59e..0f650e346 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -137,12 +137,22 @@ spec/dummy. ```sh -# Optionally change default selenium_firefox driver +# Optionally change default capybara driver export DRIVER=selenium_firefox cd react_on_rails/ yarn run dummy:spec ``` +To convert the development environment over to Shakapacker v6 instead of the default Shakapacker v8: + +```sh +# Optionally change default capybara driver +export DRIVER=selenium_firefox +cd react_on_rails/ +script/convert +yarn run dummy:spec +``` + ### Run NPM JS tests ```sh diff --git a/Gemfile.development_dependencies b/Gemfile.development_dependencies index 5ed1b239f..f972b719f 100644 --- a/Gemfile.development_dependencies +++ b/Gemfile.development_dependencies @@ -1,6 +1,6 @@ # frozen_string_literal: true -gem "shakapacker", "7.2.1" +gem "shakapacker", "8.0.0" gem "bootsnap", require: false gem "rails", "~> 7.1" diff --git a/Gemfile.lock b/Gemfile.lock index 728c05d38..6d766c6cd 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - react_on_rails (14.0.0) + react_on_rails (14.0.2) addressable connection_pool execjs (~> 2.5) @@ -119,6 +119,9 @@ GEM tins (~> 1.6) crass (1.0.6) date (3.3.4) + debug (1.9.2) + irb (~> 1.10) + reline (>= 0.3.8) diff-lcs (1.5.1) docile (1.4.0) drb (2.2.1) @@ -334,7 +337,7 @@ GEM rubyzip (>= 1.2.2, < 3.0) websocket (~> 1.0) semantic_range (3.0.0) - shakapacker (7.2.1) + shakapacker (8.0.0) activesupport (>= 5.2) package_json rack-proxy (>= 0.6.1) @@ -397,6 +400,7 @@ DEPENDENCIES capybara capybara-screenshot coveralls + debug equivalent-xml gem-release generator_spec @@ -422,7 +426,7 @@ DEPENDENCIES scss_lint sdoc selenium-webdriver (= 4.9.0) - shakapacker (= 7.2.1) + shakapacker (= 8.0.0) spring (~> 4.0) sprockets (~> 4.0) sqlite3 (~> 1.6) diff --git a/lib/generators/USAGE b/lib/generators/USAGE index d7a7dd668..7091d6e09 100644 --- a/lib/generators/USAGE +++ b/lib/generators/USAGE @@ -21,4 +21,4 @@ Then you may run More Details: - `https://github.com/shakacode/react_on_rails/blob/master/docs/basics/generator-details.md` + `https://github.com/shakacode/react_on_rails/blob/master/docs/additional-details/generator-details.md` diff --git a/lib/generators/react_on_rails/base_generator.rb b/lib/generators/react_on_rails/base_generator.rb index cecd0868a..fd729c589 100644 --- a/lib/generators/react_on_rails/base_generator.rb +++ b/lib/generators/react_on_rails/base_generator.rb @@ -3,7 +3,6 @@ require "rails/generators" require_relative "generator_messages" require_relative "generator_helper" - module ReactOnRails module Generators class BaseGenerator < Rails::Generators::Base @@ -30,11 +29,14 @@ def create_react_directories def copy_base_files base_path = "base/base/" base_files = %w[app/controllers/hello_world_controller.rb - app/views/layouts/hello_world.html.erb - config/initializers/react_on_rails.rb - Procfile.dev - Procfile.dev-static] + app/views/layouts/hello_world.html.erb] + base_templates = %w[config/initializers/react_on_rails.rb + Procfile.dev + Procfile.dev-static] base_files.each { |file| copy_file("#{base_path}#{file}", file) } + base_templates.each do |file| + template("#{base_path}/#{file}.tt", file, { packer_type: ReactOnRails::PackerUtils.packer_type }) + end end def copy_js_bundle_files @@ -59,16 +61,14 @@ def copy_webpack_config config = { message: "// The source code including full typescript support is available at:" } - base_files.each do |file| - template("#{base_path}/#{file}.tt", file, config) - end + base_files.each { |file| template("#{base_path}/#{file}.tt", file, config) } end - def copy_shakapacker_config - puts "Adding Shakapacker v7 config file" + def copy_packer_config + puts "Adding Shakapacker #{ReactOnRails::PackerUtils.shakapacker_version} config" base_path = "base/base/" - base_files = %w[config/shakapacker.yml] - base_files.each { |file| copy_file("#{base_path}#{file}", file) } + config = "config/shakapacker.yml" + copy_file("#{base_path}#{config}", config) end def add_base_gems_to_gemfile diff --git a/lib/generators/react_on_rails/generator_messages.rb b/lib/generators/react_on_rails/generator_messages.rb index 6c08add77..a5ea063be 100644 --- a/lib/generators/react_on_rails/generator_messages.rb +++ b/lib/generators/react_on_rails/generator_messages.rb @@ -65,16 +65,9 @@ def helpful_message_after_installation Alternative steps to run the app: - - Run `rails s` to start the Rails server. - - - Run bin/shakapacker-dev-server to start the Webpack dev server for compilation of Webpack - assets as soon as you save. This default setup with the dev server does not work - for server rendering + - We recommend using Procfile.dev with foreman, overmind, or a similar program. Alternately, you can run each of the processes listed in Procfile.dev in a separate tab in your terminal. - Visit http://localhost:3000/hello_world and see your React On Rails app running! - - - To turn on HMR, edit config/shakapacker.yml and set HMR to true. Restart the rails server - and bin/shakapacker-dev-server. Or use Procfile.dev. MSG end end diff --git a/lib/generators/react_on_rails/install_generator.rb b/lib/generators/react_on_rails/install_generator.rb index cde32c21a..d327dd67b 100644 --- a/lib/generators/react_on_rails/install_generator.rb +++ b/lib/generators/react_on_rails/install_generator.rb @@ -94,13 +94,7 @@ def add_bin_scripts end def add_post_install_message - message = GeneratorMessages.helpful_message_after_installation - unless using_shakapacker_7_or_above? - message = message.gsub("config/shakapacker", "config/webpacker") - message = message.gsub("bin/shakapacker", "bin/webpacker") - end - - GeneratorMessages.add_info(message) + GeneratorMessages.add_info(GeneratorMessages.helpful_message_after_installation) end def using_shakapacker_7_or_above? diff --git a/lib/generators/react_on_rails/templates/base/base/Procfile.dev b/lib/generators/react_on_rails/templates/base/base/Procfile.dev deleted file mode 100644 index 4aa1033ae..000000000 --- a/lib/generators/react_on_rails/templates/base/base/Procfile.dev +++ /dev/null @@ -1,5 +0,0 @@ -# Procfile for development using HMR -# You can run these commands in separate shells -rails: bundle exec rails s -p 3000 -wp-client: bin/shakapacker-dev-server -wp-server: SERVER_BUNDLE_ONLY=yes bin/shakapacker --watch diff --git a/lib/generators/react_on_rails/templates/base/base/Procfile.dev-static b/lib/generators/react_on_rails/templates/base/base/Procfile.dev-static.tt similarity index 67% rename from lib/generators/react_on_rails/templates/base/base/Procfile.dev-static rename to lib/generators/react_on_rails/templates/base/base/Procfile.dev-static.tt index 811197375..39ccec23b 100644 --- a/lib/generators/react_on_rails/templates/base/base/Procfile.dev-static +++ b/lib/generators/react_on_rails/templates/base/base/Procfile.dev-static.tt @@ -5,5 +5,5 @@ web: rails s -p 3000 # When making frequent changes to client side assets, you will prefer building webpack assets # upon saving rather than when you refresh your browser page. # Note, if using React on Rails localization you will need to run -# `bundle exec rake react_on_rails:locale` before you run bin/shakapacker -webpack: sh -c 'rm -rf public/packs/* || true && bin/shakapacker -w' +# `bundle exec rake react_on_rails:locale` before you run bin/<%= config[:packer_type] %> +webpack: sh -c 'rm -rf public/packs/* || true && bin/<%= config[:packer_type] %> -w' diff --git a/lib/generators/react_on_rails/templates/base/base/Procfile.dev.tt b/lib/generators/react_on_rails/templates/base/base/Procfile.dev.tt new file mode 100644 index 000000000..b87fce83a --- /dev/null +++ b/lib/generators/react_on_rails/templates/base/base/Procfile.dev.tt @@ -0,0 +1,5 @@ +# Procfile for development using HMR +# You can run these commands in separate shells +rails: bundle exec rails s -p 3000 +wp-client: bin/<%= config[:packer_type] %>-dev-server +wp-server: SERVER_BUNDLE_ONLY=yes bin/<%= config[:packer_type] %> --watch diff --git a/lib/generators/react_on_rails/templates/base/base/config/initializers/react_on_rails.rb b/lib/generators/react_on_rails/templates/base/base/config/initializers/react_on_rails.rb.tt similarity index 95% rename from lib/generators/react_on_rails/templates/base/base/config/initializers/react_on_rails.rb rename to lib/generators/react_on_rails/templates/base/base/config/initializers/react_on_rails.rb.tt index 727008ba0..6a72dc205 100644 --- a/lib/generators/react_on_rails/templates/base/base/config/initializers/react_on_rails.rb +++ b/lib/generators/react_on_rails/templates/base/base/config/initializers/react_on_rails.rb.tt @@ -24,8 +24,8 @@ # to automatically refresh your webpack assets on every test run. # # Alternately, you can remove the `ReactOnRails::TestHelper.configure_rspec_to_compile_assets` - # and set the config/shakapacker.yml option for test to true. - config.build_test_command = "RAILS_ENV=test bin/shakapacker" + # and set the config/<%= config[:packer_type] %>.yml option for test to true. + config.build_test_command = "RAILS_ENV=test bin/<%= config[:packer_type] %>" ################################################################################ ################################################################################ diff --git a/lib/react_on_rails.rb b/lib/react_on_rails.rb index 347534a4d..2cdf7a472 100644 --- a/lib/react_on_rails.rb +++ b/lib/react_on_rails.rb @@ -18,7 +18,7 @@ require "react_on_rails/test_helper" require "react_on_rails/git_utils" require "react_on_rails/utils" -require "react_on_rails/webpacker_utils" +require "react_on_rails/packer_utils" require "react_on_rails/packs_generator" require "react_on_rails/test_helper/webpack_assets_compiler" require "react_on_rails/test_helper/webpack_assets_status_checker" diff --git a/lib/react_on_rails/configuration.rb b/lib/react_on_rails/configuration.rb index bd2d20bad..9d169e975 100644 --- a/lib/react_on_rails/configuration.rb +++ b/lib/react_on_rails/configuration.rb @@ -111,29 +111,29 @@ def initialize(node_modules_location: nil, server_bundle_js_file: nil, prerender # on ReactOnRails def setup_config_values - check_autobundling_requirements_if_configured + check_autobundling_requirements if auto_load_bundle ensure_webpack_generated_files_exists configure_generated_assets_dirs_deprecation configure_skip_display_none_deprecation ensure_generated_assets_dir_present check_server_render_method_is_only_execjs - error_if_using_webpacker_and_generated_assets_dir_not_match_public_output_path + error_if_using_packer_and_generated_assets_dir_not_match_public_output_path # check_deprecated_settings adjust_precompile_task end private - def check_autobundling_requirements_if_configured + def check_autobundling_requirements raise_missing_components_subdirectory if auto_load_bundle && !components_subdirectory.present? return unless components_subdirectory.present? - ReactOnRails::WebpackerUtils.raise_shakapacker_not_installed unless ReactOnRails::WebpackerUtils.using_webpacker? - ReactOnRails::WebpackerUtils.raise_shakapacker_version_incompatible_for_autobundling unless - ReactOnRails::WebpackerUtils.shackapacker_version_requirement_met?( + ReactOnRails::PackerUtils.raise_shakapacker_not_installed unless ReactOnRails::PackerUtils.using_packer? + ReactOnRails::PackerUtils.raise_shakapacker_version_incompatible_for_autobundling unless + ReactOnRails::PackerUtils.shakapacker_version_requirement_met?( ReactOnRails::PacksGenerator::MINIMUM_SHAKAPACKER_VERSION ) - ReactOnRails::WebpackerUtils.raise_nested_entries_disabled unless ReactOnRails::WebpackerUtils.nested_entries? + ReactOnRails::PackerUtils.raise_nested_entries_disabled unless ReactOnRails::PackerUtils.nested_entries? end def adjust_precompile_task @@ -141,7 +141,7 @@ def adjust_precompile_task return if skip_react_on_rails_precompile || build_production_command.blank? - raise(ReactOnRails::Error, compile_command_conflict_message) if shakapacker_precompile? + raise(ReactOnRails::Error, compile_command_conflict_message) if ReactOnRails::PackerUtils.precompile? precompile_tasks = lambda { Rake::Task["react_on_rails:generate_packs"].invoke @@ -151,9 +151,8 @@ def adjust_precompile_task # We set it very big so that it is not used, and then clean just # removes files older than 1 hour. versions = 100_000 - - puts "Invoking task #{shakapacker_clean_task} from React on Rails" - Rake::Task[shakapacker_clean_task].invoke(versions) + puts "Invoking task #{ReactOnRails::PackerUtils.packer_type}:clean from React on Rails" + Rake::Task["#{ReactOnRails::PackerUtils.packer_type}:clean"].invoke(versions) } if Rake::Task.task_defined?("assets:precompile") @@ -167,22 +166,23 @@ def adjust_precompile_task end end - def error_if_using_webpacker_and_generated_assets_dir_not_match_public_output_path - return unless ReactOnRails::WebpackerUtils.using_webpacker? + def error_if_using_packer_and_generated_assets_dir_not_match_public_output_path + return unless ReactOnRails::PackerUtils.using_packer? return if generated_assets_dir.blank? - webpacker_public_output_path = ReactOnRails::WebpackerUtils.webpacker_public_output_path + packer_public_output_path = ReactOnRails::PackerUtils.packer_public_output_path - if File.expand_path(generated_assets_dir) == webpacker_public_output_path.to_s + if File.expand_path(generated_assets_dir) == packer_public_output_path.to_s Rails.logger.warn("You specified generated_assets_dir in `config/initializers/react_on_rails.rb` " \ - "with Webpacker. Remove this line from your configuration file.") + "with #{ReactOnRails::PackerUtils.packer_type}. " \ + "Remove this line from your configuration file.") else msg = <<~MSG - Error configuring /config/initializers/react_on_rails.rb: You are using webpacker + Error configuring /config/initializers/react_on_rails.rb: You are using #{ReactOnRails::PackerUtils.packer_type} and your specified value for generated_assets_dir = #{generated_assets_dir} that does not match the value for public_output_path specified in - webpacker.yml = #{webpacker_public_output_path}. You should remove the configuration + #{ReactOnRails::PackerUtils.packer_type}.yml = #{packer_public_output_path}. You should remove the configuration value for "generated_assets_dir" from your config/initializers/react_on_rails.rb file. MSG raise ReactOnRails::Error, msg @@ -202,7 +202,7 @@ def check_server_render_method_is_only_execjs end def ensure_generated_assets_dir_present - return if generated_assets_dir.present? || ReactOnRails::WebpackerUtils.using_webpacker? + return if generated_assets_dir.present? || ReactOnRails::PackerUtils.using_packer? self.generated_assets_dir = DEFAULT_GENERATED_ASSETS_DIR Rails.logger.warn "ReactOnRails: Set generated_assets_dir to default: #{DEFAULT_GENERATED_ASSETS_DIR}" @@ -211,11 +211,13 @@ def ensure_generated_assets_dir_present def configure_generated_assets_dirs_deprecation return if generated_assets_dirs.blank? - if ReactOnRails::WebpackerUtils.using_webpacker? - webpacker_public_output_path = ReactOnRails::WebpackerUtils.webpacker_public_output_path - Rails.logger.warn "Error configuring config/initializers/react_on_rails. Define neither the " \ - "generated_assets_dirs no the generated_assets_dir when using Webpacker. This is defined " \ - "by public_output_path specified in webpacker.yml = #{webpacker_public_output_path}." + if ReactOnRails::PackerUtils.using_packer? + packer_public_output_path = ReactOnRails::PackerUtils.packer_public_output_path + # rubocop:disable Layout/LineLength + Rails.logger.warn "Error configuring config/initializers/react_on_rails. Define neither the generated_assets_dirs nor " \ + "the generated_assets_dir when using #{ReactOnRails::PackerUtils.packer_type.upcase_first}. This is defined by " \ + "public_output_path specified in #{ReactOnRails::PackerUtils.packer_type}.yml = #{packer_public_output_path}." + # rubocop:enable Layout/LineLength return end @@ -225,7 +227,7 @@ def configure_generated_assets_dirs_deprecation self.generated_assets_dir = generated_assets_dirs else Rails.logger.warn "[DEPRECATION] ReactOnRails. You have both generated_assets_dirs and " \ - "generated_assets_dir defined. Define ONLY generated_assets_dir if NOT using Webpacker " \ + "generated_assets_dir defined. Define ONLY generated_assets_dir if NOT using Shakapacker " \ "and define neither if using Webpacker" end end @@ -255,28 +257,16 @@ def raise_missing_components_subdirectory raise ReactOnRails::Error, msg end - def shakapacker_precompile? - return Webpacker.config.webpacker_precompile? if ReactOnRails::WebpackerUtils.using_shakapacker_6? - - Webpacker.config.shakapacker_precompile? - end - - def shakapacker_clean_task - ReactOnRails::WebpackerUtils.using_shakapacker_6? ? "webpacker:clean" : "shakapacker:clean" - end - def compile_command_conflict_message - packer = ReactOnRails::WebpackerUtils.using_shakapacker_6? ? "webpacker" : "shakapacker" - <<~MSG - React on Rails and Shakapacker error in configuration! + React on Rails and #{ReactOnRails::PackerUtils.packer_type.upcase_first} error in configuration! In order to use config/react_on_rails.rb config.build_production_command, - you must edit config/#{packer}.yml to include this value in the default configuration: - '#{packer}_precompile: false' + you must edit config/#{ReactOnRails::PackerUtils.packer_type}.yml to include this value in the default configuration: + '#{ReactOnRails::PackerUtils.packer_type}_precompile: false' Alternatively, remove the config/react_on_rails.rb config.build_production_command and the - default bin/#{packer} script will be used for assets:precompile. + default bin/#{ReactOnRails::PackerUtils.packer_type} script will be used for assets:precompile. MSG end diff --git a/lib/react_on_rails/helper.rb b/lib/react_on_rails/helper.rb index af2afb543..f354f2615 100644 --- a/lib/react_on_rails/helper.rb +++ b/lib/react_on_rails/helper.rb @@ -316,7 +316,7 @@ def rails_context(server_side: true) def load_pack_for_generated_component(react_component_name, render_options) return unless render_options.auto_load_bundle - ReactOnRails::WebpackerUtils.raise_nested_entries_disabled unless ReactOnRails::WebpackerUtils.nested_entries? + ReactOnRails::PackerUtils.raise_nested_entries_disabled unless ReactOnRails::PackerUtils.nested_entries? if Rails.env.development? is_component_pack_present = File.exist?(generated_components_pack_path(react_component_name)) raise_missing_autoloaded_bundle(react_component_name) unless is_component_pack_present @@ -330,8 +330,8 @@ def load_pack_for_generated_component(react_component_name, render_options) private - def generated_components_pack_path(react_component_name) - "#{ReactOnRails::WebpackerUtils.webpacker_source_entry_path}/generated/#{react_component_name}.js" + def generated_components_pack_path(component_name) + "#{ReactOnRails::PackerUtils.packer_source_entry_path}/generated/#{component_name}.js" end def build_react_component_result_for_server_rendered_string( diff --git a/lib/react_on_rails/webpacker_utils.rb b/lib/react_on_rails/packer_utils.rb similarity index 53% rename from lib/react_on_rails/webpacker_utils.rb rename to lib/react_on_rails/packer_utils.rb index 659390c6e..20b0cfeec 100644 --- a/lib/react_on_rails/webpacker_utils.rb +++ b/lib/react_on_rails/packer_utils.rb @@ -1,24 +1,55 @@ # frozen_string_literal: true module ReactOnRails - module WebpackerUtils - def self.using_webpacker? - return @using_webpacker if defined?(@using_webpacker) + module PackerUtils + def self.using_packer? + using_shakapacker_const? || using_webpacker_const? + end + + def self.using_shakapacker_const? + return @using_shakapacker_const if defined?(@using_shakapacker_const) + + @using_shakapacker_const = ReactOnRails::Utils.gem_available?("shakapacker") && + shakapacker_version_requirement_met?([7, 0, 0]) + end + + def self.using_webpacker_const? + return @using_webpacker_const if defined?(@using_webpacker_const) + + @using_webpacker_const = (ReactOnRails::Utils.gem_available?("shakapacker") && + shakapacker_version_as_array[0] <= 6) || + ReactOnRails::Utils.gem_available?("webpacker") + end + + def self.packer_type + return "shakapacker" if using_shakapacker_const? + return "webpacker" if using_webpacker_const? + + nil + end + + def self.packer + return nil unless using_packer? - @using_webpacker = ReactOnRails::Utils.gem_available?("webpacker") || - ReactOnRails::Utils.gem_available?("shakapacker") + if using_shakapacker_const? + require "shakapacker" + return ::Shakapacker + end + require "webpacker" + ::Webpacker end def self.dev_server_running? - return false unless using_webpacker? + return false unless using_packer? - Webpacker.dev_server.running? + packer.dev_server.running? end def self.shakapacker_version + return @shakapacker_version if defined?(@shakapacker_version) return nil unless ReactOnRails::Utils.gem_available?("shakapacker") - @shakapacker_version ||= Gem.loaded_specs["shakapacker"].version.to_s + @shakapacker_version = Gem.loaded_specs["shakapacker"].version.to_s end def self.shakapacker_version_as_array @@ -27,7 +58,7 @@ def self.shakapacker_version_as_array @shakapacker_version_as_array = [match[1].to_i, match[2].to_i, match[3].to_i] end - def self.shackapacker_version_requirement_met?(required_version) + def self.shakapacker_version_requirement_met?(required_version) req_ver = semver_to_string(required_version) Gem::Version.new(shakapacker_version) >= Gem::Version.new(req_ver) @@ -36,12 +67,8 @@ def self.shackapacker_version_requirement_met?(required_version) # This returns either a URL for the webpack-dev-server, non-server bundle or # the hashed server bundle if using the same bundle for the client. # Otherwise returns a file path. - def self.bundle_js_uri_from_webpacker(bundle_name) - # Note Webpacker 3.4.3 manifest lookup is inside of the public_output_path - # [2] (pry) ReactOnRails::WebpackerUtils: 0> Webpacker.manifest.lookup("app-bundle.js") - # "/webpack/development/app-bundle-c1d2b6ab73dffa7d9c0e.js" - # Next line will throw if the file or manifest does not exist - hashed_bundle_name = Webpacker.manifest.lookup!(bundle_name) + def self.bundle_js_uri_from_packer(bundle_name) + hashed_bundle_name = packer.manifest.lookup!(bundle_name) # Support for hashing the server-bundle and having that built # the webpack-dev-server is provided by the config value @@ -49,48 +76,52 @@ def self.bundle_js_uri_from_webpacker(bundle_name) # would mean that the bundle is created by the webpack-dev-server is_server_bundle = bundle_name == ReactOnRails.configuration.server_bundle_js_file - if Webpacker.dev_server.running? && (!is_server_bundle || + if packer.dev_server.running? && (!is_server_bundle || ReactOnRails.configuration.same_bundle_for_client_and_server) - "#{Webpacker.dev_server.protocol}://#{Webpacker.dev_server.host_with_port}#{hashed_bundle_name}" + "#{packer.dev_server.protocol}://#{packer.dev_server.host_with_port}#{hashed_bundle_name}" else File.expand_path(File.join("public", hashed_bundle_name)).to_s end end - def self.webpacker_source_path - Webpacker.config.source_path + def self.precompile? + return ::Webpacker.config.webpacker_precompile? if using_webpacker_const? + return ::Shakapacker.config.shakapacker_precompile? if using_shakapacker_const? + + false end - def self.webpacker_source_entry_path - Webpacker.config.source_entry_path + def self.packer_source_path + packer.config.source_path + end + + def self.packer_source_entry_path + packer.config.source_entry_path end def self.nested_entries? - Webpacker.config.nested_entries? + packer.config.nested_entries? end - def self.webpacker_public_output_path - # Webpacker has the full absolute path of webpacker output files in a Pathname - Webpacker.config.public_output_path.to_s + def self.packer_public_output_path + packer.config.public_output_path.to_s end def self.manifest_exists? - Webpacker.config.public_manifest_path.exist? + packer.config.public_manifest_path.exist? end - def self.webpacker_source_path_explicit? - # WARNING: Calling private method `data` on Webpacker::Configuration, lib/webpacker/configuration.rb - config_webpacker_yml = Webpacker.config.send(:data) - config_webpacker_yml[:source_path].present? + def self.packer_source_path_explicit? + packer.config.send(:data)[:source_path].present? end def self.check_manifest_not_cached - return unless using_webpacker? && Webpacker.config.cache_manifest? + return unless using_packer? && packer.config.cache_manifest? msg = <<-MSG.strip_heredoc ERROR: you have enabled cache_manifest in the #{Rails.env} env when using the ReactOnRails::TestHelper.configure_rspec_to_compile_assets helper - To fix this: edit your config/webpacker.yml file and set cache_manifest to false for test. + To fix this: edit your config/#{packer_type}.yml file and set cache_manifest to false for test. MSG puts wrap_message(msg) exit! @@ -111,7 +142,7 @@ def self.webpack_assets_status_checker def self.raise_nested_entries_disabled msg = <<~MSG **ERROR** ReactOnRails: `nested_entries` is configured to be disabled in shakapacker. Please update \ - webpacker.yml to enable nested entries. for more information read + config/#{packer_type}.yml to enable nested entries. for more information read https://www.shakacode.com/react-on-rails/docs/guides/file-system-based-automated-bundle-generation.md#enable-nested_entries-for-shakapacker MSG @@ -120,9 +151,9 @@ def self.raise_nested_entries_disabled def self.raise_shakapacker_version_incompatible_for_autobundling msg = <<~MSG - **ERROR** ReactOnRails: Please upgrade Shakapacker to version #{ReactOnRails::WebpackerUtils.semver_to_string(ReactOnRails::PacksGenerator::MINIMUM_SHAKAPACKER_VERSION)} or \ + **ERROR** ReactOnRails: Please upgrade Shakapacker to version #{semver_to_string(ReactOnRails::PacksGenerator::MINIMUM_SHAKAPACKER_VERSION)} or \ above to use the automated bundle generation feature. The currently installed version is \ - #{ReactOnRails::WebpackerUtils.semver_to_string(ReactOnRails::WebpackerUtils.shakapacker_version_as_array)}. + #{semver_to_string(ReactOnRails::PackerUtils.shakapacker_version_as_array)}. MSG raise ReactOnRails::Error, msg @@ -131,7 +162,7 @@ def self.raise_shakapacker_version_incompatible_for_autobundling def self.raise_shakapacker_not_installed msg = <<~MSG **ERROR** ReactOnRails: Missing Shakapacker gem. Please upgrade to use Shakapacker \ - #{ReactOnRails::WebpackerUtils.semver_to_string(minimum_required_shakapacker_version)} or above to use the \ + #{semver_to_string(ReactOnRails::PacksGenerator::MINIMUM_SHAKAPACKER_VERSION)} or above to use the \ automated bundle generation feature. MSG @@ -141,11 +172,5 @@ def self.raise_shakapacker_not_installed def self.semver_to_string(ary) "#{ary[0]}.#{ary[1]}.#{ary[2]}" end - - def self.using_shakapacker_6? - shakapacker_major_version = shakapacker_version_as_array[0] - - shakapacker_major_version == 6 - end end end diff --git a/lib/react_on_rails/packs_generator.rb b/lib/react_on_rails/packs_generator.rb index d461e4ddf..2db3d6b0c 100644 --- a/lib/react_on_rails/packs_generator.rb +++ b/lib/react_on_rails/packs_generator.rb @@ -102,7 +102,7 @@ def generated_server_bundle_file_path generated_interim_server_bundle_path = server_bundle_entrypoint.sub(".js", "-generated.js") generated_server_bundle_file_name = component_name(generated_interim_server_bundle_path) - source_entrypoint_parent = Pathname(ReactOnRails::WebpackerUtils.webpacker_source_entry_path).parent + source_entrypoint_parent = Pathname(ReactOnRails::PackerUtils.packer_source_entry_path).parent generated_nonentrypoints_path = "#{source_entrypoint_parent}/generated" FileUtils.mkdir_p(generated_nonentrypoints_path) @@ -115,12 +115,12 @@ def clean_generated_packs_directory end def server_bundle_entrypoint - Rails.root.join(ReactOnRails::WebpackerUtils.webpacker_source_entry_path, + Rails.root.join(ReactOnRails::PackerUtils.packer_source_entry_path, ReactOnRails.configuration.server_bundle_js_file) end def generated_packs_directory_path - source_entry_path = ReactOnRails::WebpackerUtils.webpacker_source_entry_path + source_entry_path = ReactOnRails::PackerUtils.packer_source_entry_path "#{source_entry_path}/generated" end @@ -185,7 +185,7 @@ def server_component_to_path end def components_search_path - source_path = ReactOnRails::WebpackerUtils.webpacker_source_path + source_path = ReactOnRails::PackerUtils.packer_source_path "#{source_path}/**/#{ReactOnRails.configuration.components_subdirectory}" end diff --git a/lib/react_on_rails/test_helper.rb b/lib/react_on_rails/test_helper.rb index 9ddb280ed..a8cb1f589 100644 --- a/lib/react_on_rails/test_helper.rb +++ b/lib/react_on_rails/test_helper.rb @@ -67,7 +67,7 @@ def self.ensure_assets_compiled(webpack_assets_status_checker: nil, source_path: nil, generated_assets_full_path: nil, webpack_generated_files: nil) - ReactOnRails::WebpackerUtils.check_manifest_not_cached + ReactOnRails::PackerUtils.check_manifest_not_cached if webpack_assets_status_checker.nil? source_path ||= ReactOnRails::Utils.source_path generated_assets_full_path ||= ReactOnRails::Utils.generated_assets_full_path @@ -86,10 +86,10 @@ def self.ensure_assets_compiled(webpack_assets_status_checker: nil, puts @printed_once = true - if ReactOnRails::WebpackerUtils.using_webpacker? && - ReactOnRails::Utils.using_webpacker_source_path_is_not_defined_and_custom_node_modules? + if ReactOnRails::PackerUtils.using_packer? && + ReactOnRails::Utils.using_packer_source_path_is_not_defined_and_custom_node_modules? msg = <<-MSG.strip_heredoc - WARNING: Define config.webpacker.yml to include sourcePath to configure + WARNING: Define config/#{ReactOnRails::PackerUtils.packer_type}.yml to include sourcePath to configure the location of your JavaScript source for React on Rails. Default location of #{source_path} is used. MSG diff --git a/lib/react_on_rails/test_helper/webpack_assets_compiler.rb b/lib/react_on_rails/test_helper/webpack_assets_compiler.rb index 3da9e0fc3..bf87b8e9d 100644 --- a/lib/react_on_rails/test_helper/webpack_assets_compiler.rb +++ b/lib/react_on_rails/test_helper/webpack_assets_compiler.rb @@ -16,7 +16,7 @@ def compile_assets React on Rails is aborting your test run - If you wish to use the config/webpacker.yml compile option for tests + If you wish to use the config/#{ReactOnRails::PackerUtils.packer_type}.yml compile option for tests them remove your call to the ReactOnRails test helper. MSG puts Rainbow(msg).red diff --git a/lib/react_on_rails/test_helper/webpack_assets_status_checker.rb b/lib/react_on_rails/test_helper/webpack_assets_status_checker.rb index a8c813fe2..e951df322 100644 --- a/lib/react_on_rails/test_helper/webpack_assets_status_checker.rb +++ b/lib/react_on_rails/test_helper/webpack_assets_status_checker.rb @@ -10,7 +10,7 @@ module ReactOnRails module TestHelper class WebpackAssetsStatusChecker include Utils::Required - # source_path is typically configured in the webpacker.yml file + # source_path is typically configured in the (shaka/web)packer.yml file # for `source_path` # or for legacy React on Rails, it's /client, where all client files go attr_reader :source_path, :generated_assets_full_path @@ -30,8 +30,8 @@ def stale_generated_webpack_files end def stale_generated_files(files) - manifest_needed = ReactOnRails::WebpackerUtils.using_webpacker? && - !ReactOnRails::WebpackerUtils.manifest_exists? + manifest_needed = ReactOnRails::PackerUtils.using_packer? && + !ReactOnRails::PackerUtils.manifest_exists? return ["manifest.json"] if manifest_needed @@ -63,7 +63,7 @@ def all_compiled_assets file_list = make_file_list(make_globs(generated_assets_full_path)).to_ary puts "V" * 80 puts "Please define config.webpack_generated_files (array) so the test helper knows " \ - "which files are required. If you are using webpacker, you typically need to only " \ + "which files are required. If you are using Shakapacker, you typically need to only " \ "include 'manifest.json'." puts "Detected the possible following files to check for webpack compilation in " \ "#{generated_assets_full_path}" diff --git a/lib/react_on_rails/utils.rb b/lib/react_on_rails/utils.rb index 7f3529b98..bd50dd8da 100644 --- a/lib/react_on_rails/utils.rb +++ b/lib/react_on_rails/utils.rb @@ -79,12 +79,14 @@ def self.server_bundle_js_file_path return @server_bundle_path if @server_bundle_path && !Rails.env.development? bundle_name = ReactOnRails.configuration.server_bundle_js_file - @server_bundle_path = if ReactOnRails::WebpackerUtils.using_webpacker? + @server_bundle_path = if ReactOnRails::PackerUtils.using_packer? begin bundle_js_file_path(bundle_name) - rescue Webpacker::Manifest::MissingEntryError + rescue Object.const_get( + ReactOnRails::PackerUtils.packer_type.capitalize + )::Manifest::MissingEntryError File.expand_path( - File.join(ReactOnRails::WebpackerUtils.webpacker_public_output_path, + File.join(ReactOnRails::PackerUtils.packer_public_output_path, bundle_name) ) end @@ -94,12 +96,12 @@ def self.server_bundle_js_file_path end def self.bundle_js_file_path(bundle_name) - if ReactOnRails::WebpackerUtils.using_webpacker? && bundle_name != "manifest.json" - ReactOnRails::WebpackerUtils.bundle_js_uri_from_webpacker(bundle_name) + if ReactOnRails::PackerUtils.using_packer? && bundle_name != "manifest.json" + ReactOnRails::PackerUtils.bundle_js_uri_from_packer(bundle_name) else # Default to the non-hashed name in the specified output directory, which, for legacy # React on Rails, this is the output directory picked up by the asset pipeline. - # For Webpacker, this is the public output path defined in the webpacker.yml file. + # For Shakapacker, this is the public output path defined in the (shaka/web)packer.yml file. File.join(generated_assets_full_path, bundle_name) end end @@ -129,23 +131,23 @@ def self.prepend_cd_node_modules_directory(cmd) end def self.source_path - if ReactOnRails::WebpackerUtils.using_webpacker? - ReactOnRails::WebpackerUtils.webpacker_source_path + if ReactOnRails::PackerUtils.using_packer? + ReactOnRails::PackerUtils.packer_source_path else ReactOnRails.configuration.node_modules_location end end - def self.using_webpacker_source_path_is_not_defined_and_custom_node_modules? - return false unless ReactOnRails::WebpackerUtils.using_webpacker? + def self.using_packer_source_path_is_not_defined_and_custom_node_modules? + return false unless ReactOnRails::PackerUtils.using_packer? - !ReactOnRails::WebpackerUtils.webpacker_source_path_explicit? && + !ReactOnRails::PackerUtils.packer_source_path_explicit? && ReactOnRails.configuration.node_modules_location.present? end def self.generated_assets_full_path - if ReactOnRails::WebpackerUtils.using_webpacker? - ReactOnRails::WebpackerUtils.webpacker_public_output_path + if ReactOnRails::PackerUtils.using_packer? + ReactOnRails::PackerUtils.packer_public_output_path else File.expand_path(ReactOnRails.configuration.generated_assets_dir) end @@ -156,7 +158,11 @@ def self.gem_available?(name) rescue Gem::LoadError false rescue StandardError - Gem.available?(name).present? + begin + Gem.available?(name).present? + rescue NoMethodError + false + end end # Todo -- remove this for v13, as we don't need both boolean and number diff --git a/lib/tasks/assets.rake b/lib/tasks/assets.rake index 104ef30d9..27b786b71 100644 --- a/lib/tasks/assets.rake +++ b/lib/tasks/assets.rake @@ -5,7 +5,7 @@ namespace :react_on_rails do namespace :assets do desc <<~DESC If config.build_production_command is defined, this command is automatically - added to task assets:precompile and the regular webpacker compile will not run. + added to task assets:precompile and the regular packer compile will not run. The defined command is either a script or a module with a method `call`. DESC task webpack: :locale do diff --git a/package.json b/package.json index 2a38b0e12..2ab94f69b 100644 --- a/package.json +++ b/package.json @@ -70,9 +70,7 @@ "prerelease": "yarn run check && yarn run clean && yarn run build", "release:patch": "node_package/scripts/release patch", "release:minor": "node_package/scripts/release minor", - "release:major": "node_package/scripts/release major", - "dummy:install": "rake dummy_apps", - "dummy:spec": "rake run_rspec:dummy" + "release:major": "node_package/scripts/release major" }, "repository": { "type": "git", diff --git a/rakelib/example_type.rb b/rakelib/example_type.rb index 441a4e989..0925861c5 100644 --- a/rakelib/example_type.rb +++ b/rakelib/example_type.rb @@ -1,7 +1,6 @@ # frozen_string_literal: true require "rake" -require "pathname" require_relative "task_helpers" @@ -11,19 +10,16 @@ module ReactOnRails module TaskHelpers class ExampleType def self.all - @all ||= [] + @all ||= { webpacker_examples: [], shakapacker_examples: [] } end - def self.namespace_name - "examples" - end - - attr_reader :name, :generator_options + attr_reader :packer_type, :name, :generator_options - def initialize(name: nil, generator_options: nil) + def initialize(packer_type: nil, name: nil, generator_options: nil) + @packer_type = packer_type @name = name @generator_options = generator_options - self.class.all << self + self.class.all[packer_type.to_sym] << self end def name_pretty @@ -42,15 +38,6 @@ def gemfile File.join(dir, "Gemfile") end - # Gems we need to add to the Gemfile before bundle installing - def required_gems - relative_gem_root = Pathname(gem_root).relative_path_from(Pathname(dir)) - [ - "gem 'react_on_rails', path: '#{relative_gem_root}'", - "gem 'shakapacker'" - ] - end - # Options we pass when running `rails new` from the command-line. attr_writer :rails_options @@ -66,12 +53,12 @@ def rails_options method_name_normal = "#{task_type}_task_name" # ex: `clean_task_name` method_name_short = "#{method_name_normal}_short" # ex: `clean_task_name_short` - define_method(method_name_normal) { "#{self.class.namespace_name}:#{task_type}_#{name}" } + define_method(method_name_normal) { "#{@packer_type}:#{task_type}_#{name}" } define_method(method_name_short) { "#{task_type}_#{name}" } end def rspec_task_name_short - "example_#{name}" + "#{packer_type}_#{name}" end def rspec_task_name diff --git a/rakelib/run_rspec.rake b/rakelib/run_rspec.rake index 510d84b3c..141f95018 100644 --- a/rakelib/run_rspec.rake +++ b/rakelib/run_rspec.rake @@ -10,6 +10,13 @@ require_relative "example_type" # rubocop:disable Metrics/BlockLength namespace :run_rspec do include ReactOnRails::TaskHelpers + # Loads data from examples_config.yml and instantiates corresponding ExampleType objects + examples_config_file = File.expand_path("examples_config.yml", __dir__) + examples_config = symbolize_keys(YAML.safe_load_file(examples_config_file)) + examples_config[:example_type_data].each do |example_type_data| + ExampleType.new(packer_type: "shakapacker_examples", **symbolize_keys(example_type_data)) + ExampleType.new(packer_type: "webpacker_examples", **symbolize_keys(example_type_data)) + end spec_dummy_dir = File.join("spec", "dummy") @@ -31,16 +38,31 @@ namespace :run_rspec do end # Dynamically define Rake tasks for each example app found in the examples directory - ExampleType.all.each do |example_type| + ExampleType.all[:webpacker_examples].each do |example_type| + puts "Creating #{example_type.rspec_task_name} task" + desc "Runs RSpec for #{example_type.name_pretty} only" + task example_type.rspec_task_name_short => example_type.gen_task_name do + run_tests_in(File.join(examples_dir, example_type.name)) # have to use relative path + end + end + + # Dynamically define Rake tasks for each example app found in the examples directory + ExampleType.all[:shakapacker_examples].each do |example_type| + puts "Creating #{example_type.rspec_task_name} task" desc "Runs RSpec for #{example_type.name_pretty} only" task example_type.rspec_task_name_short => example_type.gen_task_name do run_tests_in(File.join(examples_dir, example_type.name)) # have to use relative path end end - desc "Runs Rspec for example apps only" - task examples: "examples:gen_all" do - ExampleType.all.each { |example_type| Rake::Task[example_type.rspec_task_name].invoke } + desc "Runs Rspec for webpacker example apps only" + task webpacker_examples: "webpacker_examples:gen_all" do + ExampleType.all[:webpacker_examples].each { |example_type| Rake::Task[example_type.rspec_task_name].invoke } + end + + desc "Runs Rspec for shakapacker example apps only" + task shakapacker_examples: "shakapacker_examples:gen_all" do + ExampleType.all[:shakapacker_examples].each { |example_type| Rake::Task[example_type.rspec_task_name].invoke } end Coveralls::RakeTask.new if ENV["USE_COVERALLS"] == "TRUE" @@ -56,7 +78,8 @@ namespace :run_rspec do end desc "run all tests" - task run_rspec: %i[all_but_examples examples] do + task :run_rspec, [:packer] => ["all_but_examples"] do + Rake::Task["run_rspec:#{packer}_examples"].invoke puts "Completed all RSpec tests" end end diff --git a/rakelib/shakapacker_examples.rake b/rakelib/shakapacker_examples.rake new file mode 100644 index 000000000..091adbf62 --- /dev/null +++ b/rakelib/shakapacker_examples.rake @@ -0,0 +1,55 @@ +# frozen_string_literal: true + +# Defines tasks related to generating example apps using the gem's generator. +# Allows us to create and test apps generated using a wide range of options. +# +# Also see example_type.rb + +require "yaml" +require "rails/version" +require "pathname" + +require_relative "example_type" +require_relative "task_helpers" + +namespace :shakapacker_examples do # rubocop:disable Metrics/BlockLength + include ReactOnRails::TaskHelpers + + # Define tasks for each example type + ExampleType.all[:shakapacker_examples].each do |example_type| + relative_gem_root = Pathname(gem_root).relative_path_from(Pathname(example_type.dir)) + # CLOBBER + desc "Clobbers (deletes) #{example_type.name_pretty}" + task example_type.clobber_task_name_short do + rm_rf(example_type.dir) + end + + # GENERATE + desc "Generates #{example_type.name_pretty}" + task example_type.gen_task_name_short => example_type.clobber_task_name do + puts "Running shakapacker_examples:#{example_type.gen_task_name_short}" + mkdir_p(example_type.dir) + example_type.rails_options += "--skip-javascript" + sh_in_dir(examples_dir, "rails new #{example_type.name} #{example_type.rails_options}") + sh_in_dir(example_type.dir, "touch .gitignore") + sh_in_dir(example_type.dir, + "echo \"gem 'react_on_rails', path: '#{relative_gem_root}'\" >> #{example_type.gemfile}") + sh_in_dir(example_type.dir, "echo \"gem 'shakapacker', '~> 8.0.0'\" >> #{example_type.gemfile}") + bundle_install_in(example_type.dir) + sh_in_dir(example_type.dir, "rake shakapacker:install") + sh_in_dir(example_type.dir, example_type.generator_shell_commands) + sh_in_dir(example_type.dir, "yarn") + end + end + + desc "Clobbers (deletes) all example apps" + task :clobber do + rm_rf(examples_dir) + end + + desc "Generates all example apps" + task gen_all: ExampleType.all[:shakapacker_examples].map(&:gen_task_name) +end + +desc "Generates all example apps. Run `rake -D examples` to see all available options" +task shakapacker_examples: ["shakapacker_examples:gen_all"] diff --git a/rakelib/examples.rake b/rakelib/webpacker_examples.rake similarity index 59% rename from rakelib/examples.rake rename to rakelib/webpacker_examples.rake index 559f50b5a..2925bd5e9 100644 --- a/rakelib/examples.rake +++ b/rakelib/webpacker_examples.rake @@ -7,19 +7,17 @@ require "yaml" require "rails/version" +require "pathname" require_relative "example_type" require_relative "task_helpers" -namespace :examples do # rubocop:disable Metrics/BlockLength +namespace :webpacker_examples do # rubocop:disable Metrics/BlockLength include ReactOnRails::TaskHelpers - # Loads data from examples_config.yml and instantiates corresponding ExampleType objects - examples_config_file = File.expand_path("examples_config.yml", __dir__) - examples_config = symbolize_keys(YAML.safe_load_file(examples_config_file)) - examples_config[:example_type_data].each { |example_type_data| ExampleType.new(**symbolize_keys(example_type_data)) } # Define tasks for each example type - ExampleType.all.each do |example_type| + ExampleType.all[:webpacker_examples].each do |example_type| + relative_gem_root = Pathname(gem_root).relative_path_from(Pathname(example_type.dir)) # CLOBBER desc "Clobbers (deletes) #{example_type.name_pretty}" task example_type.clobber_task_name_short do @@ -29,11 +27,14 @@ namespace :examples do # rubocop:disable Metrics/BlockLength # GENERATE desc "Generates #{example_type.name_pretty}" task example_type.gen_task_name_short => example_type.clobber_task_name do + puts "Running webpacker_examples:#{example_type.gen_task_name_short}" mkdir_p(example_type.dir) example_type.rails_options += "--skip-javascript" sh_in_dir(examples_dir, "rails new #{example_type.name} #{example_type.rails_options}") sh_in_dir(example_type.dir, "touch .gitignore") - append_to_gemfile(example_type.gemfile, example_type.required_gems) + sh_in_dir(example_type.dir, + "echo \"gem 'react_on_rails', path: '#{relative_gem_root}'\" >> #{example_type.gemfile}") + sh_in_dir(example_type.dir, "echo \"gem 'shakapacker', '~> 6.6.0'\" >> #{example_type.gemfile}") bundle_install_in(example_type.dir) sh_in_dir(example_type.dir, "rake webpacker:install") sh_in_dir(example_type.dir, example_type.generator_shell_commands) @@ -47,18 +48,8 @@ namespace :examples do # rubocop:disable Metrics/BlockLength end desc "Generates all example apps" - task gen_all: ExampleType.all.map(&:gen_task_name) + task gen_all: ExampleType.all[:webpacker_examples].map(&:gen_task_name) end desc "Generates all example apps. Run `rake -D examples` to see all available options" -task examples: ["examples:gen_all"] - -private - -# Appends each string in an array as a new line of text in the given Gemfile. -# Automatically adds line returns. -def append_to_gemfile(gemfile, lines) - old_text = File.read(gemfile) - new_text = lines.reduce(old_text) { |a, e| a << "#{e}\n" } - File.open(gemfile, "w") { |f| f.puts(new_text) } -end +task webpacker_examples: ["webpacker_examples:gen_all"] diff --git a/script/convert b/script/convert new file mode 100755 index 000000000..3c300c624 --- /dev/null +++ b/script/convert @@ -0,0 +1,23 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +def gsub_file_content(path, old_content, new_content) + path = File.expand_path(path, __dir__) + content = File.binread(path) + content.gsub!(old_content, new_content) + File.binwrite(path, content) +end + +old_config = File.expand_path("../spec/dummy/config/shakapacker.yml", __dir__) +new_config = File.expand_path("../spec/dummy/config/webpacker.yml", __dir__) + +File.rename(old_config, new_config) + +gsub_file_content("../Gemfile.development_dependencies", 'gem "shakapacker", "8.0.0"', 'gem "shakapacker", "6.6.0"') + +gsub_file_content("../spec/dummy/package.json", '"shakapacker": "8.0.0",', '"shakapacker": "6.6.0",') + +gsub_file_content("../spec/dummy/config/webpack/commonWebpackConfig.js", /generateWebpackConfig(\(\))?/, + "webpackConfig") + +gsub_file_content("../spec/dummy/config/webpack/webpack.config.js", /generateWebpackConfig(\(\))?/, "webpackConfig") diff --git a/spec/dummy/Gemfile.lock b/spec/dummy/Gemfile.lock index e08a41895..cb4cc9d5f 100644 --- a/spec/dummy/Gemfile.lock +++ b/spec/dummy/Gemfile.lock @@ -250,7 +250,7 @@ GEM thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) rainbow (3.1.1) - rake (13.0.6) + rake (13.2.1) rb-fsevent (0.11.2) rb-inotify (0.10.1) ffi (~> 1.0) @@ -332,7 +332,7 @@ GEM rubyzip (>= 1.2.2, < 3.0) websocket (~> 1.0) semantic_range (3.0.0) - shakapacker (7.2.1) + shakapacker (8.0.0) activesupport (>= 5.2) package_json rack-proxy (>= 0.6.1) @@ -357,7 +357,7 @@ GEM sync (0.5.0) term-ansicolor (1.7.1) tins (~> 1.0) - thor (1.2.2) + thor (1.3.1) tilt (2.2.0) timeout (0.4.1) tins (1.32.1) @@ -418,7 +418,7 @@ DEPENDENCIES scss_lint sdoc selenium-webdriver (= 4.9.0) - shakapacker (= 7.2.1) + shakapacker (= 8.0.0) spring (~> 4.0) sprockets (~> 4.0) sqlite3 (~> 1.6) diff --git a/spec/dummy/bin/shakapacker-dev-server b/spec/dummy/bin/shakapacker-dev-server index 0db2861b5..d110072a6 100755 --- a/spec/dummy/bin/shakapacker-dev-server +++ b/spec/dummy/bin/shakapacker-dev-server @@ -8,7 +8,7 @@ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", Pathname.new(__FILE__).realpath) require "bundler/setup" - +require "rake" require "shakapacker" require "shakapacker/dev_server_runner" diff --git a/spec/dummy/bin/webpacker b/spec/dummy/bin/webpacker new file mode 100755 index 000000000..f05487491 --- /dev/null +++ b/spec/dummy/bin/webpacker @@ -0,0 +1,25 @@ +#!/usr/bin/env ruby + +require "pathname" +require "bundler/setup" +require "webpacker" +require "webpacker/webpack_runner" + +ENV["RAILS_ENV"] ||= "development" +ENV["NODE_ENV"] ||= ENV["RAILS_ENV"] +ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", Pathname.new(__FILE__).realpath) + +require "rake" + +# Recommendation is to generate packs before compilation. +# SERVER_BUNDLE_ONLY is true when also running the bin/webpacker-dev-server, +# so no need to run twice. +unless ENV["SERVER_BUNDLE_ONLY"] == "true" + Rake.application.load_rakefile + Rake::Task["react_on_rails:generate_packs"].invoke +end + +APP_ROOT = File.expand_path("..", __dir__) +Dir.chdir(APP_ROOT) do + Webpacker::WebpackRunner.run(ARGV) +end diff --git a/spec/dummy/bin/webpacker-dev-server b/spec/dummy/bin/webpacker-dev-server new file mode 100755 index 000000000..79e6e21c3 --- /dev/null +++ b/spec/dummy/bin/webpacker-dev-server @@ -0,0 +1,22 @@ +#!/usr/bin/env ruby + +ENV["RAILS_ENV"] ||= "development" +ENV["NODE_ENV"] ||= ENV["RAILS_ENV"] + +require "pathname" +ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", + Pathname.new(__FILE__).realpath) + +require "bundler/setup" +require "rake" +require "webpacker" +require "webpacker/dev_server_runner" + +# Recommendation is to generate packs before compilation +Rake.application.load_rakefile +Rake::Task["react_on_rails:generate_packs"].invoke + +APP_ROOT = File.expand_path("..", __dir__) +Dir.chdir(APP_ROOT) do + Webpacker::DevServerRunner.run(ARGV) +end diff --git a/spec/dummy/config/webpack/commonWebpackConfig.js b/spec/dummy/config/webpack/commonWebpackConfig.js index 6e64e8440..998c0d023 100644 --- a/spec/dummy/config/webpack/commonWebpackConfig.js +++ b/spec/dummy/config/webpack/commonWebpackConfig.js @@ -1,11 +1,12 @@ // Common configuration applying to client and server configuration const { generateWebpackConfig, merge } = require('shakapacker'); + +const baseClientWebpackConfig = generateWebpackConfig(); + const webpack = require('webpack'); const aliasConfig = require('./alias.js'); -const baseClientWebpackConfig = generateWebpackConfig(); - const commonOptions = { resolve: { extensions: ['.css', '.ts', '.tsx'], diff --git a/spec/dummy/config/webpack/webpack.config.js b/spec/dummy/config/webpack/webpack.config.js index 40089dcf9..34ff0b4d6 100644 --- a/spec/dummy/config/webpack/webpack.config.js +++ b/spec/dummy/config/webpack/webpack.config.js @@ -1,4 +1,5 @@ const { env, generateWebpackConfig } = require('shakapacker'); + const { existsSync } = require('fs'); const { resolve } = require('path'); diff --git a/spec/dummy/package.json b/spec/dummy/package.json index 94135da49..9ee3eba05 100644 --- a/spec/dummy/package.json +++ b/spec/dummy/package.json @@ -50,7 +50,7 @@ "sass": "^1.43.4", "sass-loader": "^12.3.0", "sass-resources-loader": "^2.1.0", - "shakapacker": "7.2.1", + "shakapacker": "8.0.0", "style-loader": "^3.3.1", "terser-webpack-plugin": "5.3.1", "url-loader": "^4.0.0", @@ -83,5 +83,6 @@ "build:rescript": "rescript clean && rescript build -with-deps", "build:rescript:dev": "rescript build -w" }, - "version": "0.0.0" + "version": "0.0.0", + "packageManager": "yarn@1.22.19" } diff --git a/spec/dummy/spec/helpers/react_on_rails_helper_spec.rb b/spec/dummy/spec/helpers/react_on_rails_helper_spec.rb index f53699c88..57c58cb2e 100644 --- a/spec/dummy/spec/helpers/react_on_rails_helper_spec.rb +++ b/spec/dummy/spec/helpers/react_on_rails_helper_spec.rb @@ -3,13 +3,15 @@ require "rails_helper" require "support/script_tag_utils" +Packer = Object.const_get(ReactOnRails::PackerUtils.packer_type.capitalize) + class PlainReactOnRailsHelper include ReactOnRailsHelper end # rubocop:disable Metrics/BlockLength describe ReactOnRailsHelper do - include Webpacker::Helper + include Packer::Helper before do allow(self).to receive(:request) { Struct.new("Request", :original_url, :env) diff --git a/spec/dummy/spec/packs_generator_spec.rb b/spec/dummy/spec/packs_generator_spec.rb index c2bfb64bf..f7988b337 100644 --- a/spec/dummy/spec/packs_generator_spec.rb +++ b/spec/dummy/spec/packs_generator_spec.rb @@ -8,8 +8,8 @@ module ReactOnRails # rubocop:disable Metrics/BlockLength describe PacksGenerator do - let(:webpacker_source_path) { File.expand_path("./fixtures/automated_packs_generation", __dir__) } - let(:webpacker_source_entry_path) { File.expand_path("./fixtures/automated_packs_generation/packs", __dir__) } + let(:packer_source_path) { File.expand_path("./fixtures/automated_packs_generation", __dir__) } + let(:packer_source_entry_path) { File.expand_path("./fixtures/automated_packs_generation/packs", __dir__) } let(:generated_directory) { File.expand_path("./fixtures/automated_packs_generation/packs/generated", __dir__) } let(:server_bundle_js_file) { "server-bundle.js" } let(:server_bundle_js_file_path) do @@ -25,14 +25,12 @@ module ReactOnRails ReactOnRails.configuration.server_bundle_js_file = server_bundle_js_file ReactOnRails.configuration.components_subdirectory = "ror_components" ReactOnRails.configuration.webpack_generated_files = webpack_generated_files - - allow(ReactOnRails::WebpackerUtils).to receive_messages( + allow(ReactOnRails::PackerUtils).to receive_messages( manifest_exists?: true, - using_webpacker?: true, nested_entries?: true, - webpacker_source_entry_path: webpacker_source_entry_path, shakapacker_version: "7.0.0" + packer_source_entry_path: packer_source_entry_path ) - allow(ReactOnRails::Utils).to receive_messages(generated_assets_full_path: webpacker_source_entry_path, + allow(ReactOnRails::Utils).to receive_messages(generated_assets_full_path: packer_source_entry_path, server_bundle_js_file_path: server_bundle_js_file_path) end @@ -40,7 +38,7 @@ module ReactOnRails ReactOnRails.configuration.server_bundle_js_file = old_server_bundle ReactOnRails.configuration.components_subdirectory = old_subdirectory - FileUtils.rm_rf "#{webpacker_source_entry_path}/generated" + FileUtils.rm_rf "#{packer_source_entry_path}/generated" FileUtils.rm_rf generated_server_bundle_file_path File.truncate(server_bundle_js_file_path, 0) end @@ -52,7 +50,7 @@ module ReactOnRails ReactOnRails.configuration.make_generated_server_bundle_the_entrypoint = true described_class.instance.generate_packs_if_stale expect(File.exist?(server_bundle_js_file_path)).to equal(true) - expect(File.exist?("#{Pathname(webpacker_source_entry_path).parent}/server-bundle-generated.js")) + expect(File.exist?("#{Pathname(packer_source_entry_path).parent}/server-bundle-generated.js")) .to equal(false) FileUtils.mv("./temp", server_bundle_js_file_path) ReactOnRails.configuration.make_generated_server_bundle_the_entrypoint = false @@ -64,8 +62,8 @@ module ReactOnRails let(:component_pack) { "#{generated_directory}/#{component_name}.js" } before do - stub_webpacker_source_path(component_name: component_name, - webpacker_source_path: webpacker_source_path) + stub_packer_source_path(component_name: component_name, + packer_source_path: packer_source_path) described_class.instance.generate_packs_if_stale end @@ -103,8 +101,8 @@ module ReactOnRails let(:component_pack) { "#{generated_directory}/#{component_name}.js" } before do - stub_webpacker_source_path(component_name: component_name, - webpacker_source_path: webpacker_source_path) + stub_packer_source_path(component_name: component_name, + packer_source_path: packer_source_path) end it "raises an error for definition override" do @@ -123,8 +121,8 @@ module ReactOnRails let(:component_pack) { "#{generated_directory}/#{component_name}.js" } before do - allow(ReactOnRails::WebpackerUtils).to receive(:webpacker_source_path) - .and_return("#{webpacker_source_path}/components/#{component_name}") + allow(ReactOnRails::PackerUtils).to receive(:packer_source_path) + .and_return("#{packer_source_path}/components/#{component_name}") end it "raises an error for definition override" do @@ -143,8 +141,8 @@ module ReactOnRails let(:component_pack) { "#{generated_directory}/#{component_name}.js" } before do - stub_webpacker_source_path(component_name: component_name, - webpacker_source_path: webpacker_source_path) + stub_packer_source_path(component_name: component_name, + packer_source_path: packer_source_path) end it "raises an error for definition override" do @@ -158,8 +156,8 @@ module ReactOnRails let(:component_pack) { "#{generated_directory}/#{component_name}.js" } before do - stub_webpacker_source_path(component_name: component_name, - webpacker_source_path: webpacker_source_path) + stub_packer_source_path(component_name: component_name, + packer_source_path: packer_source_path) end it "raises missing client file error" do @@ -177,8 +175,8 @@ module ReactOnRails let(:component_pack) { "#{generated_directory}/#{component_name}.js" } before do - stub_webpacker_source_path(component_name: component_name, - webpacker_source_path: webpacker_source_path) + stub_packer_source_path(component_name: component_name, + packer_source_path: packer_source_path) described_class.instance.generate_packs_if_stale end @@ -216,8 +214,8 @@ module ReactOnRails let(:component_pack) { "#{generated_directory}/#{component_name}.js" } before do - stub_webpacker_source_path(component_name: component_name, - webpacker_source_path: webpacker_source_path) + stub_packer_source_path(component_name: component_name, + packer_source_path: packer_source_path) FileUtils.mkdir_p(generated_directory) File.write(component_pack, "wat") File.write(generated_server_bundle_file_path, "wat") @@ -251,7 +249,7 @@ module ReactOnRails expect do described_class.instance.generate_packs_if_stale end.to output(GENERATED_PACKS_CONSOLE_OUTPUT_REGEX).to_stdout - FileUtils.rm "#{webpacker_source_path}/components/ComponentWithCommonOnly/ror_components/NewComponent.jsx" + FileUtils.rm "#{packer_source_path}/components/ComponentWithCommonOnly/ror_components/NewComponent.jsx" end it "generate packs if an old component is updated" do @@ -265,7 +263,7 @@ module ReactOnRails def create_new_component(name) components_subdirectory = ReactOnRails.configuration.components_subdirectory - path = "#{webpacker_source_path}/components/#{component_name}/#{components_subdirectory}/#{name}.jsx" + path = "#{packer_source_path}/components/#{component_name}/#{components_subdirectory}/#{name}.jsx" File.write(path, "// Empty Test Component\n") end @@ -289,9 +287,9 @@ def generated_server_bundle_file_path described_class.instance.send(:generated_server_bundle_file_path) end - def stub_webpacker_source_path(webpacker_source_path:, component_name:) - allow(ReactOnRails::WebpackerUtils).to receive(:webpacker_source_path) - .and_return("#{webpacker_source_path}/components/#{component_name}") + def stub_packer_source_path(packer_source_path:, component_name:) + allow(ReactOnRails::PackerUtils).to receive(:packer_source_path) + .and_return("#{packer_source_path}/components/#{component_name}") end end # rubocop:enable Metrics/BlockLength diff --git a/spec/dummy/spec/rake/assets_precompile_rake_spec.rb b/spec/dummy/spec/rake/assets_precompile_rake_spec.rb index 9c03ce3aa..6204df9d3 100644 --- a/spec/dummy/spec/rake/assets_precompile_rake_spec.rb +++ b/spec/dummy/spec/rake/assets_precompile_rake_spec.rb @@ -3,20 +3,22 @@ require "rake" require "rails_helper" +require "react_on_rails" describe "rake assets:precompile task" do - it "doesn't show deprecation message for using webpacker:clean task" do + it "doesn't show deprecation message for using webpacker:clean task", skip: "fixing this spec breaks other specs" do allow(ENV).to receive(:[]).with(anything).and_call_original allow(ENV).to receive(:[]).with("SHAKAPACKER_PRECOMPILE").and_return("false") + allow(ENV).to receive(:[]).with("WEBPACKER_PRECOMPILE").and_return("false") Rails.application.load_tasks ReactOnRails.configure do |config| - config.build_production_command = "RAILS_ENV=production NODE_ENV=production bin/shakapacker" + config.build_production_command = "RAILS_ENV=production NODE_ENV=production / + bin/#{ReactOnRails::PackerUtils.packer_type}" end expect do - system "bundle install && yarn install && yarn run build:test" Rake::Task["assets:precompile"].execute end.not_to output(/Consider using `rake shakapacker:clean`/).to_stdout diff --git a/spec/dummy/yarn.lock b/spec/dummy/yarn.lock index 3b3dfcd73..2c66fbf79 100644 --- a/spec/dummy/yarn.lock +++ b/spec/dummy/yarn.lock @@ -4480,7 +4480,7 @@ glob@^7.0.0, glob@^7.1.6: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^7.1.3, glob@^7.2.0: +glob@^7.1.3: version "7.2.0" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== @@ -6434,7 +6434,7 @@ react-is@^18.0.0: integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== "react-on-rails@file:.yalc/react-on-rails": - version "14.0.2" + version "14.0.0" dependencies: "@babel/runtime-corejs3" "^7.12.5" @@ -7029,12 +7029,11 @@ sha.js@^2.4.0, sha.js@^2.4.8: inherits "^2.0.1" safe-buffer "^5.0.1" -shakapacker@7.2.1: - version "7.2.1" - resolved "https://registry.yarnpkg.com/shakapacker/-/shakapacker-7.2.1.tgz#de9895bbbb6b6ee1016478dbbb8d4c37b25e5a50" - integrity sha512-IRPkEdIY2JiPfj7fnQ9sP8SBaUcaArMVBHAn3ctB91FndgyaM/bfXXlSEiveWPT3A3wkoadx44U6pKXo1DdC3w== +shakapacker@8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/shakapacker/-/shakapacker-8.0.0.tgz#f29537c19078af7318758c92e7a1bca4cee96bdd" + integrity sha512-HCdpITzIKXzGEyUWQhKzPbpwwOsgTamaPH+0kXdhM59VQxZ3NWnT5cL3DlJdAT3sGsWCJskEl3eMkQlnh9DjhA== dependencies: - glob "^7.2.0" js-yaml "^4.1.0" path-complete-extname "^1.0.0" diff --git a/spec/react_on_rails/configuration_spec.rb b/spec/react_on_rails/configuration_spec.rb index 1f2193fc5..84d978422 100644 --- a/spec/react_on_rails/configuration_spec.rb +++ b/spec/react_on_rails/configuration_spec.rb @@ -1,6 +1,7 @@ # frozen_string_literal: true require_relative "spec_helper" +require ReactOnRails::PackerUtils.packer_type # rubocop:disable Metrics/ModuleLength @@ -8,10 +9,10 @@ module ReactOnRails RSpec.describe Configuration do let(:existing_path) { Pathname.new(Dir.mktmpdir) } let(:not_existing_path) { "/path/to/#{SecureRandom.hex(4)}" } - let(:using_webpacker) { false } + let(:using_packer) { false } before do - allow(ReactOnRails::WebpackerUtils).to receive(:using_webpacker?).and_return(using_webpacker) + allow(ReactOnRails::PackerUtils).to receive(:using_packer?).and_return(using_packer) ReactOnRails.instance_variable_set(:@configuration, nil) end @@ -20,15 +21,15 @@ module ReactOnRails end describe "generated_assets_dir" do - let(:using_webpacker) { true } - let(:webpacker_public_output_path) do + let(:using_packer) { true } + let(:packer_public_output_path) do File.expand_path(File.join(Rails.root, "public/webpack/dev")) end before do allow(Rails).to receive(:root).and_return(File.expand_path(".")) - allow(Webpacker).to receive_message_chain("config.public_output_path") - .and_return(webpacker_public_output_path) + allow(ReactOnRails::PackerUtils).to receive_message_chain("packer.config.public_output_path") + .and_return(packer_public_output_path) end it "does not throw if the generated assets dir is blank with webpacker" do @@ -39,7 +40,7 @@ module ReactOnRails end.not_to raise_error end - it "does not throw if the webpacker_public_output_path does match the generated assets dir" do + it "does not throw if the packer_public_output_path does match the generated assets dir" do expect do ReactOnRails.configure do |config| config.generated_assets_dir = "public/webpack/dev" @@ -47,7 +48,7 @@ module ReactOnRails end.not_to raise_error end - it "does throw if the webpacker_public_output_path does not match the generated assets dir" do + it "does throw if the packer_public_output_path does not match the generated assets dir" do expect do ReactOnRails.configure do |config| config.generated_assets_dir = "public/webpack/other" @@ -75,34 +76,28 @@ module ReactOnRails end describe ".build_production_command" do - context "when using Shakapacker 6" do - before do - allow(ReactOnRails::WebpackerUtils) - .to receive("shakapacker_version") - .and_return("6.0.0") - end - - it "fails when \"webpacker_precompile\" is truly and \"build_production_command\" is truly" do + context "when using Shakapacker 6", if: ReactOnRails::PackerUtils.packer_type != "shakapacker" do + it "fails when \"shakapacker_precompile\" is truly and \"build_production_command\" is truly" do allow(Webpacker).to receive_message_chain("config.webpacker_precompile?") .and_return(true) expect do ReactOnRails.configure do |config| - config.build_production_command = "RAILS_ENV=production NODE_ENV=production bin/webpacker" + config.build_production_command = "RAILS_ENV=production NODE_ENV=production bin/shakapacker" end end.to raise_error(ReactOnRails::Error, /webpacker_precompile: false/) end - it "doesn't fail when \"webpacker_precompile\" is falsy and \"build_production_command\" is truly" do + it "doesn't fail when \"shakapacker_precompile\" is falsy and \"build_production_command\" is truly" do allow(Webpacker).to receive_message_chain("config.webpacker_precompile?") .and_return(false) expect do ReactOnRails.configure do |config| - config.build_production_command = "RAILS_ENV=production NODE_ENV=production bin/webpacker" + config.build_production_command = "RAILS_ENV=production NODE_ENV=production bin/shakapacker" end end.not_to raise_error end - it "doesn't fail when \"webpacker_precompile\" is truly and \"build_production_command\" is falsy" do + it "doesn't fail when \"shakapacker_precompile\" is truly and \"build_production_command\" is falsy" do allow(Webpacker).to receive_message_chain("config.webpacker_precompile?") .and_return(true) expect do @@ -110,7 +105,7 @@ module ReactOnRails end.not_to raise_error end - it "doesn't fail when \"webpacker_precompile\" is falsy and \"build_production_command\" is falsy" do + it "doesn't fail when \"shakapacker_precompile\" is falsy and \"build_production_command\" is falsy" do allow(Webpacker).to receive_message_chain("config.webpacker_precompile?") .and_return(false) expect do @@ -119,26 +114,9 @@ module ReactOnRails end end - context "when using Shakapacker 7" do - before do - allow(ReactOnRails::WebpackerUtils) - .to receive("shakapacker_version") - .and_return("7.0.0") - end - - it "doesn't show deprecation message for webpacker_precompile?" do - allow(Webpacker).to receive_message_chain("config.shakapacker_precompile?") - .and_return(false) - - expect do - ReactOnRails.configure do |config| - config.build_production_command = "RAILS_ENV=production NODE_ENV=production bin/shakapacker" - end - end.not_to output(/Consider using `shakapacker_precompile?`/).to_stdout - end - + context "when using Shakapacker 8", if: ReactOnRails::PackerUtils.packer_type == "shakapacker" do it "fails when \"shakapacker_precompile\" is truly and \"build_production_command\" is truly" do - allow(Webpacker).to receive_message_chain("config.shakapacker_precompile?") + allow(Shakapacker).to receive_message_chain("config.shakapacker_precompile?") .and_return(true) expect do ReactOnRails.configure do |config| @@ -148,7 +126,7 @@ module ReactOnRails end it "doesn't fail when \"shakapacker_precompile\" is falsy and \"build_production_command\" is truly" do - allow(Webpacker).to receive_message_chain("config.shakapacker_precompile?") + allow(Shakapacker).to receive_message_chain("config.shakapacker_precompile?") .and_return(false) expect do ReactOnRails.configure do |config| @@ -158,7 +136,7 @@ module ReactOnRails end it "doesn't fail when \"shakapacker_precompile\" is truly and \"build_production_command\" is falsy" do - allow(Webpacker).to receive_message_chain("config.shakapacker_precompile?") + allow(Shakapacker).to receive_message_chain("config.shakapacker_precompile?") .and_return(true) expect do ReactOnRails.configure {} # rubocop:disable-line Lint/EmptyBlock @@ -166,7 +144,7 @@ module ReactOnRails end it "doesn't fail when \"shakapacker_precompile\" is falsy and \"build_production_command\" is falsy" do - allow(Webpacker).to receive_message_chain("config.shakapacker_precompile?") + allow(Shakapacker).to receive_message_chain("config.shakapacker_precompile?") .and_return(false) expect do ReactOnRails.configure {} # rubocop:disable-line Lint/EmptyBlock @@ -277,18 +255,18 @@ module ReactOnRails end it "checks that autobundling requirements are met if configuration options for autobundling are set" do - allow(ReactOnRails::WebpackerUtils).to receive_messages(using_webpacker?: true, - shackapacker_version_requirement_met?: true, - nested_entries?: true) + allow(ReactOnRails::PackerUtils).to receive_messages(using_packer?: true, + shakapacker_version_requirement_met?: true, + nested_entries?: true) ReactOnRails.configure do |config| config.auto_load_bundle = true config.components_subdirectory = "something" end - expect(ReactOnRails::WebpackerUtils).to have_received(:using_webpacker?).thrice - expect(ReactOnRails::WebpackerUtils).to have_received(:shackapacker_version_requirement_met?) - expect(ReactOnRails::WebpackerUtils).to have_received(:nested_entries?) + expect(ReactOnRails::PackerUtils).to have_received(:using_packer?).thrice + expect(ReactOnRails::PackerUtils).to have_received(:shakapacker_version_requirement_met?) + expect(ReactOnRails::PackerUtils).to have_received(:nested_entries?) end it "has a default configuration of the gem" do diff --git a/spec/react_on_rails/locales_to_js_spec.rb b/spec/react_on_rails/locales_to_js_spec.rb index 2fe05b704..e33e3d2b5 100644 --- a/spec/react_on_rails/locales_to_js_spec.rb +++ b/spec/react_on_rails/locales_to_js_spec.rb @@ -10,7 +10,7 @@ module ReactOnRails let(:default_path) { "#{i18n_dir}/default.js" } before do - allow(ReactOnRails::WebpackerUtils).to receive(:using_webpacker?).and_return(false) + allow(ReactOnRails::PackerUtils).to receive(:using_packer?).and_return(false) end shared_examples "locale to js" do diff --git a/spec/react_on_rails/webpacker_utils_spec.rb b/spec/react_on_rails/packer_utils_spec.rb similarity index 51% rename from spec/react_on_rails/webpacker_utils_spec.rb rename to spec/react_on_rails/packer_utils_spec.rb index c30af8b90..b7bd4f2e5 100644 --- a/spec/react_on_rails/webpacker_utils_spec.rb +++ b/spec/react_on_rails/packer_utils_spec.rb @@ -3,44 +3,36 @@ require_relative "spec_helper" module ReactOnRails - describe WebpackerUtils do - describe ".using_webpacker?" do - subject do - described_class.using_webpacker? - end - - it { is_expected.to be(true) } - end - - describe ".shackapacker_version_requirement_met?" do + describe PackerUtils do + describe ".shakapacker_version_requirement_met?" do minimum_version = [6, 5, 3] it "returns false when version is lower than minimum_version" do allow(described_class).to receive(:shakapacker_version).and_return("6.5.0") - expect(described_class.shackapacker_version_requirement_met?(minimum_version)).to be(false) + expect(described_class.shakapacker_version_requirement_met?(minimum_version)).to be(false) allow(described_class).to receive(:shakapacker_version).and_return("6.4.7") - expect(described_class.shackapacker_version_requirement_met?(minimum_version)).to be(false) + expect(described_class.shakapacker_version_requirement_met?(minimum_version)).to be(false) allow(described_class).to receive(:shakapacker_version).and_return("5.7.7") - expect(described_class.shackapacker_version_requirement_met?(minimum_version)).to be(false) + expect(described_class.shakapacker_version_requirement_met?(minimum_version)).to be(false) end it "returns true when version is equal to minimum_version" do allow(described_class).to receive(:shakapacker_version).and_return("6.5.3") - expect(described_class.shackapacker_version_requirement_met?(minimum_version)).to be(true) + expect(described_class.shakapacker_version_requirement_met?(minimum_version)).to be(true) end it "returns true when version is greater than minimum_version" do allow(described_class).to receive(:shakapacker_version).and_return("6.6.0") - expect(described_class.shackapacker_version_requirement_met?(minimum_version)).to be(true) + expect(described_class.shakapacker_version_requirement_met?(minimum_version)).to be(true) allow(described_class).to receive(:shakapacker_version).and_return("6.5.4") - expect(described_class.shackapacker_version_requirement_met?(minimum_version)).to be(true) + expect(described_class.shakapacker_version_requirement_met?(minimum_version)).to be(true) allow(described_class).to receive(:shakapacker_version).and_return("7.7.7") - expect(described_class.shackapacker_version_requirement_met?(minimum_version)).to be(true) + expect(described_class.shakapacker_version_requirement_met?(minimum_version)).to be(true) end end end diff --git a/spec/react_on_rails/spec_helper.rb b/spec/react_on_rails/spec_helper.rb index 92a2bd31a..ed868d10d 100644 --- a/spec/react_on_rails/spec_helper.rb +++ b/spec/react_on_rails/spec_helper.rb @@ -24,8 +24,6 @@ # prevent Test::Unit's AutoRunner from executing during RSpec's rake task Test::Unit.run = true if defined?(Test::Unit) && Test::Unit.respond_to?(:run=) -require "shakapacker" - # This file was generated by the `rails generate rspec:install` command. Conventionally, all # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`. # The generated `.rspec` file contains `--require spec_helper` which will cause @@ -69,7 +67,7 @@ # ENV value RSPEC_RETRY_RETRY_COUNT should be set to 1 if you don't want to retry (defined in # rspec/retry) - config.default_retry_count = 3 + config.default_retry_count = 1 # Only retry when Selenium raises Net::ReadTimeout # config.exceptions_to_retry = [Net::ReadTimeout] diff --git a/spec/react_on_rails/test_helper/ensure_assets_compiled_spec.rb b/spec/react_on_rails/test_helper/ensure_assets_compiled_spec.rb index 427b73824..347b3f126 100644 --- a/spec/react_on_rails/test_helper/ensure_assets_compiled_spec.rb +++ b/spec/react_on_rails/test_helper/ensure_assets_compiled_spec.rb @@ -9,7 +9,7 @@ after { described_class.has_been_run = false } before do - allow(ReactOnRails::WebpackerUtils).to receive(:check_manifest_not_cached).and_return(nil) + allow(ReactOnRails::PackerUtils).to receive(:check_manifest_not_cached).and_return(nil) double_packs = instance_double(ReactOnRails::PacksGenerator) allow(ReactOnRails::PacksGenerator).to receive(:instance).and_return(double_packs) allow(double_packs).to receive(:generate_packs_if_stale) diff --git a/spec/react_on_rails/test_helper/webpack_assets_status_checker_spec.rb b/spec/react_on_rails/test_helper/webpack_assets_status_checker_spec.rb index d8d26a081..881222dbb 100644 --- a/spec/react_on_rails/test_helper/webpack_assets_status_checker_spec.rb +++ b/spec/react_on_rails/test_helper/webpack_assets_status_checker_spec.rb @@ -20,21 +20,20 @@ end before do - allow(ReactOnRails::WebpackerUtils).to receive(:check_manifest_not_cached).and_return(nil) + allow(ReactOnRails::PackerUtils).to receive(:check_manifest_not_cached).and_return(nil) allow(ReactOnRails::Utils).to receive(:generated_assets_full_path).and_return(generated_assets_full_path) end context "with Webpacker" do before do - allow(ReactOnRails::WebpackerUtils).to receive(:using_webpacker?).and_return(true) + allow(ReactOnRails::PackerUtils).to receive(:using_packer?).and_return(true) end context "when compiled assets with manifest exist and are up-to-date" do let(:fixture_dirname) { "assets_with_manifest_exist" } before do - require "shakapacker" - allow(ReactOnRails::WebpackerUtils).to receive(:manifest_exists?).and_return(true) + allow(ReactOnRails::PackerUtils).to receive(:manifest_exists?).and_return(true) allow(ReactOnRails::Utils).to receive(:bundle_js_file_path) .with("manifest.json") .and_return(File.join(generated_assets_full_path, "manifest.json")) @@ -51,8 +50,7 @@ let(:fixture_dirname) { "assets_with_missing_manifest" } before do - require "shakapacker" - allow(ReactOnRails::WebpackerUtils).to receive(:manifest_exists?).and_return(false) + allow(ReactOnRails::PackerUtils).to receive(:manifest_exists?).and_return(false) end specify { expect(checker.stale_generated_webpack_files).to eq(["manifest.json"]) } @@ -63,10 +61,10 @@ let(:fixture_dirname) { "assets_with_manifest_exist_server_bundle_separate" } before do - require "shakapacker" - allow(ReactOnRails::WebpackerUtils).to receive_messages( + Packer = ReactOnRails::PackerUtils.packer # rubocop:disable Lint/ConstantDefinitionInBlock, RSpec/LeakyConstantDeclaration + allow(ReactOnRails::PackerUtils).to receive_messages( manifest_exists?: true, - webpacker_public_output_path: generated_assets_full_path + packer_public_output_path: generated_assets_full_path ) allow(ReactOnRails.configuration).to receive(:server_bundle_js_file).and_return("server-bundle.js") allow(ReactOnRails::Utils).to receive(:bundle_js_file_path) @@ -74,7 +72,7 @@ .and_return(File.join(generated_assets_full_path, "manifest.json")) allow(ReactOnRails::Utils).to receive(:bundle_js_file_path) .with("server-bundle.js") - .and_raise(Webpacker::Manifest::MissingEntryError) + .and_raise(Packer::Manifest::MissingEntryError) touch_files_in_dir(generated_assets_full_path) end @@ -89,7 +87,7 @@ let(:webpack_generated_files) { %w[client-bundle.js server-bundle.js] } before do - allow(ReactOnRails::WebpackerUtils).to receive(:using_webpacker?).and_return(false) + allow(ReactOnRails::PackerUtils).to receive(:using_packer?).and_return(false) end context "when compiled assets exist and are up-to-date" do diff --git a/spec/react_on_rails/utils_spec.rb b/spec/react_on_rails/utils_spec.rb index a8a19e246..a9ecbfa4d 100644 --- a/spec/react_on_rails/utils_spec.rb +++ b/spec/react_on_rails/utils_spec.rb @@ -1,6 +1,7 @@ # frozen_string_literal: true require_relative "spec_helper" +require ReactOnRails::PackerUtils.packer_type # rubocop:disable Metrics/ModuleLength, Metrics/BlockLength module ReactOnRails @@ -20,34 +21,34 @@ module ReactOnRails described_class.bundle_js_file_path("webpack-bundle.js") end - context "with Webpacker enabled", :webpacker do - let(:webpacker_public_output_path) do + context "with Shakapacker enabled", :shakapacker do + let(:packer_public_output_path) do File.expand_path(File.join(Rails.root, "public/webpack/dev")) end before do allow(ReactOnRails).to receive_message_chain(:configuration, :generated_assets_dir) .and_return("") - allow(Webpacker).to receive_message_chain("dev_server.running?") + allow(ReactOnRails::PackerUtils).to receive_message_chain("packer.dev_server.running?") .and_return(false) - allow(Webpacker).to receive_message_chain("config.public_output_path") - .and_return(webpacker_public_output_path) - allow(ReactOnRails::WebpackerUtils).to receive(:using_webpacker?).and_return(true) + allow(ReactOnRails::PackerUtils).to receive_message_chain("packer.config.public_output_path") + .and_return(packer_public_output_path) + allow(ReactOnRails::PackerUtils).to receive(:using_packer?).and_return(true) end - context "when file in manifest", :webpacker do + context "when file in manifest", :shakapacker do before do - # Note Webpacker manifest lookup is inside of the public_output_path - # [2] (pry) ReactOnRails::WebpackerUtils: 0> Webpacker.manifest.lookup("app-bundle.js") + # Note Shakapacker manifest lookup is inside of the public_output_path + # [2] (pry) ReactOnRails::PackerUtils: 0> Shakapacker.manifest.lookup("app-bundle.js") # "/webpack/development/app-bundle-c1d2b6ab73dffa7d9c0e.js" - allow(Webpacker).to receive_message_chain("manifest.lookup!") + allow(ReactOnRails::PackerUtils).to receive_message_chain("packer.manifest.lookup!") .with("webpack-bundle.js") .and_return("/webpack/dev/webpack-bundle-0123456789abcdef.js") allow(ReactOnRails).to receive_message_chain("configuration.server_bundle_js_file") .and_return("server-bundle.js") end - it { is_expected.to eq("#{webpacker_public_output_path}/webpack-bundle-0123456789abcdef.js") } + it { is_expected.to eq("#{packer_public_output_path}/webpack-bundle-0123456789abcdef.js") } end context "with manifest.json" do @@ -55,15 +56,15 @@ module ReactOnRails described_class.bundle_js_file_path("manifest.json") end - it { is_expected.to eq("#{webpacker_public_output_path}/manifest.json") } + it { is_expected.to eq("#{packer_public_output_path}/manifest.json") } end end - context "without Webpacker enabled" do + context "without a packer enabled" do before do allow(ReactOnRails).to receive_message_chain(:configuration, :generated_assets_dir) .and_return("public/webpack/dev") - allow(ReactOnRails::WebpackerUtils).to receive(:using_webpacker?).and_return(false) + allow(ReactOnRails::PackerUtils).to receive(:using_packer?).and_return(false) end it { is_expected.to eq(File.expand_path(File.join(Rails.root, "public/webpack/dev/webpack-bundle.js"))) } @@ -74,47 +75,49 @@ module ReactOnRails it "returns false if node_modules is blank" do allow(ReactOnRails).to receive_message_chain("configuration.node_modules_location") .and_return("") - allow(Webpacker).to receive_message_chain("config.send").with(:data) - .and_return({}) + allow(ReactOnRails::PackerUtils).to receive_message_chain("packer.config.send").with(:data) + .and_return({}) - expect(described_class.using_webpacker_source_path_is_not_defined_and_custom_node_modules?).to be(false) + expect(described_class.using_packer_source_path_is_not_defined_and_custom_node_modules?).to be(false) end it "returns false if source_path is defined in the config/webpacker.yml and node_modules defined" do allow(ReactOnRails).to receive_message_chain("configuration.node_modules_location") .and_return("client") - allow(Webpacker).to receive_message_chain("config.send").with(:data) - .and_return(source_path: "client/app") + allow(ReactOnRails::PackerUtils).to receive_message_chain("packer.config.send") + .with(:data).and_return(source_path: "client/app") - expect(described_class.using_webpacker_source_path_is_not_defined_and_custom_node_modules?).to be(false) + expect(described_class.using_packer_source_path_is_not_defined_and_custom_node_modules?).to be(false) end it "returns true if node_modules is not blank and the source_path is not defined in config/webpacker.yml" do allow(ReactOnRails).to receive_message_chain("configuration.node_modules_location") .and_return("node_modules") - allow(Webpacker).to receive_message_chain("config.send").with(:data) - .and_return({}) + allow(ReactOnRails::PackerUtils).to receive_message_chain("packer.config.send").with(:data) + .and_return({}) - expect(described_class.using_webpacker_source_path_is_not_defined_and_custom_node_modules?).to be(true) + expect(described_class.using_packer_source_path_is_not_defined_and_custom_node_modules?).to be(true) end end - describe ".server_bundle_js_file_path with Webpacker enabled" do + describe ".server_bundle_js_file_path with Shakapacker enabled" do before do allow(Rails).to receive(:root).and_return(Pathname.new(".")) - allow(ReactOnRails::WebpackerUtils).to receive(:using_webpacker?).and_return(true) - allow(Webpacker).to receive_message_chain("config.public_output_path") + allow(ReactOnRails::PackerUtils).to receive(:using_packer?).and_return(true) + allow(ReactOnRails::PackerUtils).to receive_message_chain("packer.config.public_output_path") .and_return(Pathname.new("public/webpack/development")) end - context "with server file not in manifest", :webpacker do + context "with server file not in manifest", :shakapacker do it "returns the unhashed server path" do server_bundle_name = "server-bundle.js" allow(ReactOnRails).to receive_message_chain("configuration.server_bundle_js_file") .and_return(server_bundle_name) - allow(Webpacker).to receive_message_chain("manifest.lookup!") + allow(ReactOnRails::PackerUtils.packer).to receive_message_chain("manifest.lookup!") .with(server_bundle_name) - .and_raise(Webpacker::Manifest::MissingEntryError) + .and_raise(Object.const_get( + ReactOnRails::PackerUtils.packer_type.capitalize + )::Manifest::MissingEntryError) path = described_class.server_bundle_js_file_path @@ -122,15 +125,18 @@ module ReactOnRails end end - context "with server file in the manifest, used for client", :webpacker do + context "with server file in the manifest, used for client", :shakapacker do it "returns the correct path hashed server path" do + Packer = ReactOnRails::PackerUtils.packer # rubocop:disable Lint/ConstantDefinitionInBlock, RSpec/LeakyConstantDeclaration allow(ReactOnRails).to receive_message_chain("configuration.server_bundle_js_file") .and_return("webpack-bundle.js") allow(ReactOnRails).to receive_message_chain("configuration.same_bundle_for_client_and_server") .and_return(true) - allow(Webpacker).to receive_message_chain("manifest.lookup!") + allow(Packer).to receive_message_chain("manifest.lookup!") .with("webpack-bundle.js") .and_return("webpack/development/webpack-bundle-123456.js") + allow(Packer).to receive_message_chain("dev_server.running?") + .and_return(false) path = described_class.server_bundle_js_file_path expect(path).to end_with("public/webpack/development/webpack-bundle-123456.js") @@ -143,13 +149,13 @@ module ReactOnRails .and_return("webpack-bundle.js") allow(ReactOnRails).to receive_message_chain("configuration.same_bundle_for_client_and_server") .and_return(true) - allow(Webpacker).to receive_message_chain("dev_server.running?") + allow(ReactOnRails::PackerUtils).to receive_message_chain("packer.dev_server.running?") .and_return(true) - allow(Webpacker).to receive_message_chain("dev_server.protocol") + allow(ReactOnRails::PackerUtils).to receive_message_chain("packer.dev_server.protocol") .and_return("http") - allow(Webpacker).to receive_message_chain("dev_server.host_with_port") + allow(ReactOnRails::PackerUtils).to receive_message_chain("packer.dev_server.host_with_port") .and_return("localhost:3035") - allow(Webpacker).to receive_message_chain("manifest.lookup!") + allow(ReactOnRails::PackerUtils).to receive_message_chain("packer.manifest.lookup!") .with("webpack-bundle.js") .and_return("/webpack/development/webpack-bundle-123456.js") @@ -161,16 +167,16 @@ module ReactOnRails end context "with dev-server running, and server file in the manifest, and separate client/server files", - :webpacker do + :shakapacker do it "returns the correct path hashed server path" do allow(ReactOnRails).to receive_message_chain("configuration.server_bundle_js_file") .and_return("server-bundle.js") allow(ReactOnRails).to receive_message_chain("configuration.same_bundle_for_client_and_server") .and_return(false) - allow(Webpacker).to receive_message_chain("manifest.lookup!") + allow(ReactOnRails::PackerUtils).to receive_message_chain("packer.manifest.lookup!") .with("server-bundle.js") .and_return("webpack/development/server-bundle-123456.js") - allow(Webpacker).to receive_message_chain("dev_server.running?") + allow(ReactOnRails::PackerUtils).to receive_message_chain("packer.dev_server.running?") .and_return(true) path = described_class.server_bundle_js_file_path @@ -342,6 +348,13 @@ module ReactOnRails it { is_expected.to eq("") } end + + describe ".gem_available?" do + it "calls Gem.loaded_specs" do + expect(Gem).to receive(:loaded_specs) + described_class.gem_available?("nonexistent_gem") + end + end end end end