react_on_rails 11.1.7 → 12.0.0.pre.beta.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +320 -0
  3. data/.eslintignore +2 -1
  4. data/.eslintrc +30 -2
  5. data/.github/FUNDING.yml +1 -0
  6. data/.gitignore +3 -1
  7. data/.prettierignore +10 -0
  8. data/.prettierrc +23 -0
  9. data/.release-it.json +3 -0
  10. data/.rubocop.yml +37 -11
  11. data/.travis.yml +10 -20
  12. data/CHANGELOG.md +86 -3
  13. data/CONTRIBUTING.md +61 -80
  14. data/Gemfile +3 -5
  15. data/{COMM-LICENSE → REACT-ON-RAILS-PRO-LICENSE} +6 -9
  16. data/README.md +117 -68
  17. data/Rakefile +0 -7
  18. data/SUMMARY.md +12 -12
  19. data/book.json +5 -5
  20. data/docs/additional-reading/asset-pipeline.md +8 -16
  21. data/docs/additional-reading/images.md +1 -1
  22. data/docs/additional-reading/rails_view_rendering_from_inline_javascript.md +2 -1
  23. data/docs/additional-reading/react-helmet.md +30 -10
  24. data/docs/additional-reading/react-router.md +52 -75
  25. data/docs/additional-reading/server-rendering-tips.md +12 -7
  26. data/docs/additional-reading/upgrade-webpacker-v3-to-v4.md +10 -0
  27. data/docs/api/javascript-api.md +3 -3
  28. data/docs/api/redux-store-api.md +4 -2
  29. data/docs/api/view-helpers-api.md +17 -14
  30. data/docs/basics/configuration.md +64 -61
  31. data/docs/basics/deployment.md +1 -2
  32. data/docs/basics/generator-details.md +1 -1
  33. data/docs/basics/i18n.md +44 -22
  34. data/docs/basics/installation-into-an-existing-rails-app.md +2 -2
  35. data/docs/basics/minitest-configuration.md +31 -0
  36. data/docs/basics/react-server-rendering.md +3 -1
  37. data/docs/basics/recommended-project-structure.md +24 -1
  38. data/docs/basics/{generator-functions-and-railscontext.md → render-functions-and-railscontext.md} +59 -21
  39. data/docs/basics/rspec-configuration.md +2 -2
  40. data/docs/basics/upgrading-react-on-rails.md +61 -3
  41. data/docs/basics/webpack-configuration.md +26 -1
  42. data/docs/contributor-info/errors-with-hooks.md +45 -0
  43. data/docs/contributor-info/pull-requests.md +44 -0
  44. data/docs/misc/doctrine.md +1 -1
  45. data/docs/{misc-pending → outdated}/code-splitting.md +13 -9
  46. data/docs/{additional-reading → outdated}/heroku-deployment.md +0 -6
  47. data/docs/{basics → outdated}/how-react-on-rails-works.md +2 -2
  48. data/docs/{misc-pending → outdated}/manual-installation-overview.md +5 -5
  49. data/docs/{additional-reading → outdated}/rails-assets-relative-paths.md +3 -3
  50. data/docs/{misc-pending → outdated}/rails-assets.md +4 -7
  51. data/docs/{misc → outdated}/rails3.md +0 -0
  52. data/docs/testimonials/hvmn.md +25 -0
  53. data/docs/testimonials/resortpass.md +13 -0
  54. data/docs/testimonials/testimonials.md +28 -0
  55. data/docs/tutorial.md +157 -25
  56. data/jest.config.js +4 -0
  57. data/lib/generators/react_on_rails/dev_tests_generator.rb +2 -1
  58. data/lib/generators/react_on_rails/generator_helper.rb +4 -6
  59. data/lib/generators/react_on_rails/install_generator.rb +2 -0
  60. data/lib/generators/react_on_rails/templates/base/base/app/javascript/bundles/HelloWorld/components/HelloWorld.jsx +9 -8
  61. data/lib/generators/react_on_rails/templates/redux/base/app/javascript/bundles/HelloWorld/components/HelloWorld.jsx +4 -8
  62. data/lib/generators/react_on_rails/templates/redux/base/app/javascript/bundles/HelloWorld/store/helloWorldStore.js +1 -3
  63. data/lib/react_on_rails.rb +4 -1
  64. data/lib/react_on_rails/configuration.rb +15 -23
  65. data/lib/react_on_rails/error.rb +2 -0
  66. data/lib/react_on_rails/git_utils.rb +2 -0
  67. data/lib/react_on_rails/helper.rb +110 -159
  68. data/lib/react_on_rails/json_output.rb +1 -1
  69. data/lib/react_on_rails/json_parse_error.rb +2 -0
  70. data/lib/react_on_rails/locales/base.rb +142 -0
  71. data/lib/react_on_rails/locales/to_js.rb +37 -0
  72. data/lib/react_on_rails/locales/to_json.rb +27 -0
  73. data/lib/react_on_rails/prerender_error.rb +11 -15
  74. data/lib/react_on_rails/react_component/render_options.rb +4 -0
  75. data/lib/react_on_rails/server_rendering_js_code.rb +42 -0
  76. data/lib/react_on_rails/server_rendering_pool/ruby_embedded_java_script.rb +85 -60
  77. data/lib/react_on_rails/test_helper/ensure_assets_compiled.rb +7 -8
  78. data/lib/react_on_rails/utils.rb +19 -20
  79. data/lib/react_on_rails/version.rb +1 -1
  80. data/lib/react_on_rails/version_checker.rb +5 -1
  81. data/lib/react_on_rails/webpacker_utils.rb +21 -2
  82. data/lib/tasks/assets.rake +5 -45
  83. data/lib/tasks/locale.rake +8 -2
  84. data/package-scripts.yml +49 -0
  85. data/package.json +41 -31
  86. data/rakelib/dummy_apps.rake +1 -9
  87. data/rakelib/example_type.rb +3 -1
  88. data/rakelib/examples.rake +3 -0
  89. data/rakelib/lint.rake +2 -7
  90. data/rakelib/node_package.rake +2 -2
  91. data/rakelib/release.rake +3 -2
  92. data/rakelib/run_rspec.rake +5 -18
  93. data/react_on_rails.gemspec +3 -5
  94. data/tsconfig.json +14 -0
  95. data/webpackConfigLoader.js +5 -4
  96. data/yarn.lock +7042 -2327
  97. metadata +40 -57
  98. data/Gemfile.rails32 +0 -74
  99. data/docs/additional-reading/babel.md +0 -5
  100. data/docs/additional-reading/hot-reloading-rails-development.md +0 -57
  101. data/docs/api/ruby-api-hot-reload-view-helpers.md +0 -44
  102. data/docs/testimonials.md +0 -11
  103. data/lib/react_on_rails/assets_precompile.rb +0 -150
  104. data/lib/react_on_rails/locales_to_js.rb +0 -136
@@ -1,4 +1,6 @@
1
1
  # RSpec Configuration
2
+ _Click [here for minitest](./minitest-configuration.md)_
3
+
2
4
  Because you will probably want to run RSpec tests that rely on compiled webpack assets (typically, your integration/feature specs where `js: true`), you will want to ensure you don't accidentally run tests on missing or stale webpack assets. If you did use stale Webpack assets, you will get invalid test results as your tests do not use the very latest JavaScript code.
3
5
 
4
6
  ReactOnRails provides a helper method called `ReactOnRails::TestHelper.configure_rspec_to_compile_assets`. Call this method from inside of the `RSpec.configure` block in your `spec/rails_helper.rb` file, passing the config as an argument. See file [lib/react_on_rails/test_helper.rb](../../lib/react_on_rails/test_helper.rb) for more details. You can customize this to your particular needs by replacing any of the default components used by `ReactOnRails::TestHelper.configure_rspec_to_compile_assets`.
@@ -55,8 +57,6 @@ If you want to speed up the re-compiling process so you don't wait to run your t
55
57
 
56
58
  [spec/dummy](https://github.com/shakacode/react_on_rails/tree/master/spec/dummy) contains examples of how to set the proc files for this purpose.
57
59
 
58
- If you want to use a testing framework other than RSpec, please submit let us know on the changes you need to do and we'll update the docs.
59
-
60
60
  ![2016-01-27_02-36-43](https://cloud.githubusercontent.com/assets/1118459/12611951/7c56d070-c4a4-11e5-8a80-9615f99960d9.png)
61
61
 
62
62
  ![2016-01-27_03-18-05](https://cloud.githubusercontent.com/assets/1118459/12611975/a8011654-c4a4-11e5-84f9-1baca4835b4b.png)
@@ -5,12 +5,70 @@ If you would like help in migrating between React on Rails versions or help with
5
5
 
6
6
  We specialize in helping companies to quickly and efficiently move from versions before 9 to current. The older versions use the Rails asset pipeline to package client assets. The current and recommended way is to use Webpack 4 for asset preparation. You may also need help migrating from the `rails/webpacker`'s Webpack configuration to a better setup ready for Server Side Rendering.
7
7
 
8
+ ## Upgrading to v13
9
+ * Make sure that you are on a relatively more recent version of rails and webpacker.
10
+ * Updated API for ReactOnRails.register.
11
+
12
+ In order to solve the issues regarding React Hooks compatibility, the number of parameters
13
+ for functions is used to determine if you have a render function that will get invoked to
14
+ return a React component, or you are registering a React component defined by a function.
15
+
16
+ Registered Objects are of the following types:
17
+
18
+ ##### Correct
19
+ Either of these will work:
20
+ 1. Take **2 params** and return **a React function or class component**. A function component is a function
21
+ that takes zero or one params and returns a React Element, like JSX.
22
+ ```js
23
+ export default (props, _railsContext) => () => <Component {...props} />;
24
+ ```
25
+
26
+ 2. Take only zero or one params and you return a React Element, often JSX.
27
+ ```js
28
+ export default (props) => <Component {...props} />;
29
+ ```
30
+ ##### Broken, as this function takes two params and it returns a React Element from a JSX Literal
31
+ ```js
32
+ export default (props, _railsContext) => <Component {...props} />;
33
+ ```
34
+
35
+ If you make this mistake, you'll get this warning
36
+ `Warning: React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: <Fragment />. Did you accidentally export a JSX literal instead of a component?`
37
+
38
+ And this error:
39
+ `react-dom.development.js:23965 Uncaught Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: object.`
40
+
41
+ In this example, you need to wrap the `<Component {...props} />` in a function call like this which
42
+ results in the return value being a React function component.
43
+
44
+ ```js
45
+ export default (props, _railsContext) => () => <Component {...props} />;
46
+ ```
47
+
48
+ If you have a pure component, taking one or zero parameters, and you have an unnecessary function
49
+ wrapper such that you're returning a function rather than a React Element, then:
50
+
51
+ 1. You won't see anything render.
52
+ 2. You will see this warning in development mode: `Warning: Functions are not valid as a React child. This may happen if you return a Component instead of <Component /> from render. Or maybe you meant to call this function rather than return it.`
53
+
54
+ ---------
55
+
56
+ ## Upgrading rails/webpacker from v3 to v4
57
+ ### Custom Webpack build file
58
+ The default value for `extract_css` is **false** in `config/webpack.yml`. Custom webpack builds should set this value to true or else no CSS link tags are generated. You have a custom webpack build if you are not using [rails/webpacker](https://github.com/rails/webpacker to setup your Webpack configuration.
59
+
60
+ ```yml
61
+ default: &default
62
+ # other stuff
63
+ extract_css: true
64
+ # by default, extract and emit a css file. The default is false
65
+ ```
66
+
8
67
  ## Upgrading to version 11
9
68
  * Remove `server_render_method` from config/initializers/react_on_rails.rb. Alternate server rendering methods are part of React on Rails Pro. If you want to use a custom renderer, contact justin@shakacode.com. We have a custom node rendering solution in production for egghead.io.
10
69
  * Remove your usage of ENV["TRACE_REACT_ON_RAILS"] usage. You can get all tracing with either specifying **`trace`** at your component or in your config/initializers/react_on_rails.rb file.
11
70
  * ReactOnRails::Utils.server_bundle_file_name and ReactOnRails::Utils.bundle_file_name were removed. React on Rails Pro contains upgrades to enable component and other types caching with React on Rails.
12
71
 
13
-
14
72
  ## Upgrading to version 10
15
73
 
16
74
  Pretty simple:
@@ -32,8 +90,8 @@ Reason for doing this: This enables your webpack bundles to bypass the Rails ass
32
90
  ##### ...while keeping your `client` directory
33
91
  * `.gitignore`: add `/public/webpack/*`
34
92
  * `Gemfile`: bump `react_on_rails` and add `webpacker`
35
- * layout views: anything bundled by webpack will need to be requested by a `javascript_pack_tag` or `stylesheet_pack_tag`.
36
- * Search your codebase for javascript_include_tag. Use the
93
+ * layout views: anything bundled by webpack will need to be requested by a `javascript_pack_tag` or `stylesheet_pack_tag`.
94
+ * Search your codebase for javascript_include_tag. Use the
37
95
  * `config/initializers/assets.rb`: we no longer need to modify `Rails.application.config.assets.paths` or append anything to `Rails.application.config.assets.precompile`.
38
96
  * `config/initializers/react_on_rails.rb`:
39
97
  * Delete `config.generated_assets_dir`. Webpacker's config now supplies this information
@@ -1,5 +1,16 @@
1
1
  # Webpack Configuration: custom setup for Webpack or rails/webpacker?
2
2
 
3
+ ## Webpack vs. rails/webpacker
4
+
5
+ [Webpack](https://webpack.js.org) is the JavaScript npm package that prepares all your client-side assets. The Rails asset pipeline used to be the preferable way to prepare client-side assets.
6
+
7
+ [rails/webpacker](https://github.com/rails/webpacker) is the Ruby gem that mainly gives us 2 things:
8
+
9
+ 1. View helpers for placing the Webpack bundles on your Rails views. React on Rails depends on these view helpers.
10
+ 2. A layer of abstraction on top of Webpack customization. This is great for demo projects, but most real world projects will want a customized version of Webpack.
11
+
12
+ # React on Rails
13
+
3
14
  Version 9 of React on Rails added support for the rails/webpacker view helpers so that Webpack produced assets would no longer pass through the Rails asset pipeline. As part of this change, React on Rails added a configuration option to support customization of the node_modules directory. This allowed React on Rails to support the rails/webpacker configuration of the Webpack configuration.
4
15
 
5
16
  A key decision in your use React on Rails is whether you go with the rails/webpacker default setup or the traditional React on Rails setup of putting all your client side files under the `/client` directory. While there are technically 2 independent choices involved, the directory structure and the mechanism of Webpack configuration, for simplicity sake we'll assume that these choices go together.
@@ -12,7 +23,21 @@ The [ShakaCode Team](http://www.shakacode.com) _recommends_ this approach for pr
12
23
 
13
24
  The two best examples of this pattern are the [react-webpack-rails-tutorial](https://github.com/shakacode/react-webpack-rails-tutorial) and the integration test example in [spec/dummy](https://github.com/shakacode/react_on_rails/tree/master/spec/dummy).
14
25
 
15
- In this case, you don't need to understand the nuances of customization of your Wepback config via the [Webpacker mechanism](./docs/additional-reading/webpack-tips.md).
26
+ In this case, you don't need to understand the nuances of customization of your Webpack config via the [Webpacker mechanism](./docs/additional-reading/webpack-tips.md).
27
+
28
+ You can access values in the `config/webpacker.yml`
29
+
30
+ ```js
31
+ const { config, devServer } = require('@rails/webpacker');
32
+ ```
33
+
34
+ You will want consider using some of the same values set in these files:
35
+
36
+ * https://github.com/rails/webpacker/blob/master/package/environments/base.js
37
+ * https://github.com/rails/webpacker/blob/master/package/environments/development.js
38
+
39
+ **Note**, if your node_modules directory is not at the top level of the Rails project, then you will need to set the
40
+ ENV value of WEBPACKER_CONFIG to the location of the `config/webpacker.yml` file per [rails/webpacker PR 2561](https://github.com/rails/webpacker/pull/2561).
16
41
 
17
42
  ## Option 2: Default Generator Setup: rails/webpacker app/javascript
18
43
 
@@ -0,0 +1,45 @@
1
+ # Invalid hook call error
2
+
3
+ ```
4
+ react.development.js:1465 Uncaught Error: Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
5
+ 1. You might have mismatching versions of React and the renderer (such as React DOM)
6
+ 2. You might be breaking the Rules of Hooks
7
+ 3. You might have more than one copy of React in the same app
8
+ See https://fb.me/react-invalid-hook-call for tips about how to debug and fix this problem.
9
+ ```
10
+
11
+ The main reason to get this is due to multiple versions of React installed.
12
+
13
+ ```
14
+ cd <top level>
15
+ npm ls react
16
+
17
+ cd spec/dummy
18
+ npm ls react
19
+ ```
20
+
21
+ For the second one, you might get:
22
+
23
+ ```
24
+ react_on_rails@ /Users/justin/shakacode/react-on-rails/react_on_rails/spec/dummy
25
+ ├── react@16.13.1
26
+ └─┬ react-on-rails@12.0.0 -> /Users/justin/shakacode/react-on-rails/react_on_rails invalid
27
+ └── react@16.13.1 extraneous
28
+
29
+ npm ERR! invalid: react-on-rails@12.0.0 /Users/justin/shakacode/react-on-rails/react_on_rails/spec/dummy/node_modules/react-on-rails
30
+ npm ERR! extraneous: react@16.13.1 /Users/justin/shakacode/react-on-rails/react_on_rails/spec/dummy/node_modules/react-on-rails/node_modules/react
31
+ ```
32
+
33
+ Make sure there is only one version of React installed!
34
+
35
+ If you used yarn link, then you'll have two versions of React installed.
36
+
37
+ Instead use [Yalc](https://github.com/whitecolor/yalc).
38
+
39
+ ```
40
+ cd <top level>
41
+ yalc publish
42
+
43
+ cd spec/dummy
44
+ yalc link react-on-rails
45
+ ```
@@ -0,0 +1,44 @@
1
+ # Pull Requests
2
+
3
+ ## Checklist before Committing
4
+ 1. `rake`: runs all linters and specs (you need Docker setup, see below)
5
+ 2. Did you need any more tests for your change?
6
+ 3. Did you document your change? Update the README.md?
7
+ 4. Did you add a CHANGELOG.md entry?
8
+
9
+
10
+ For non-doc fixes:
11
+
12
+ * Provide changelog entry in the [unreleased section of the CHANGELOG.md](https://github.com/shakacode/react_on_rails/blob/master/CHANGELOG.md#unreleased).
13
+ * Ensure CI passes and that you added a test that passes with the fix and fails without the fix.
14
+ * Squash all commits down to one with a nice commit message *ONLY* once final review is given. Make sure this single commit is rebased on top of master.
15
+ * Please address all code review comments.
16
+ * Ensure that docs are updated accordingly if a feature is added.
17
+
18
+ ## Commit Messages
19
+
20
+ From [How to Write a Git Commit Message](http://chris.beams.io/posts/git-commit/)
21
+
22
+ #### The seven rules of a great git commit message
23
+ > Keep in mind: This has all been said before.
24
+
25
+ 1. Separate subject from body with a blank line
26
+ 1. Limit the subject line to 50 characters
27
+ 1. Capitalize the subject line
28
+ 1. Do not end the subject line with a period
29
+ 1. Use the imperative mood in the subject line
30
+ 1. Wrap the body at 72 characters
31
+ 1. Use the body to explain what and why vs. how
32
+
33
+ ## Doc Changes
34
+
35
+ When making doc changes, we want the change to work on both the gitbook and the regular github site. The issue is that non-doc files will not go to the gitbook site, so doc references to non doc files must use the github URL.
36
+
37
+ ### Links to other docs:
38
+ * When making references to doc files, use a relative URL path like:
39
+ `[Installation Overview](docs/basics/installation-overview.md)`
40
+
41
+ * When making references to source code files, use a full url path like:
42
+ `[spec/dummy/config/initializers/react_on_rails.rb](https://github.com/shakacode/react_on_rails/tree/master/spec/dummy/config/initializers/react_on_rails.rb)`
43
+
44
+
@@ -19,7 +19,7 @@ The React on Rails setup provides several key components related to front-end de
19
19
  6. Happiness for us is actively participating in open source, so we want to be where the action is, which is with the npm libraries on github.com.
20
20
  7. You can get set up on React on Rails **FAST** using our application generator.
21
21
  8. By placing all client-side development inside of the `/client` directory, pure JavaScript developers can productively do development separate from Rails. Instead of Rails APIs, stub APIs on an express server can provide a simple backend, allowing for rapid iteration of UI prototypes.
22
- 9. Just because we're not relying on the Rails asset pipeline for ES6 conversion does not mean that we're deploying Rails apps in any different way. We still use the asset pipeline to include our Webpack compiled JavaScript. This only requires a few small modifications, as explained in our doc [Heroku Deployment](../additional-reading/heroku-deployment.md).
22
+ 9. Just because we're not relying on the Rails asset pipeline for ES6 conversion does not mean that we're deploying Rails apps in any different way. We still use the asset pipeline to include our Webpack compiled JavaScript. This only requires a few small modifications, as explained in our doc [Heroku Deployment](docs/outdated/heroku-deployment.md).
23
23
 
24
24
  ## Convention over Configuration
25
25
  * React on Rails has taken the hard work out of figuring out the JavaScript tooling that works best with Rails. Not only could you spend lots of time researching different tooling, but then you'd have to figure out how to splice it all together. This is where a lot of "JavaScript fatigue" comes from. The following keep the code clean and consistent:
@@ -1,6 +1,10 @@
1
- # Code Splitting
1
+ # Code Splitting (Outdated)
2
2
 
3
- *Note: This document needs updating for Webpack v4, React-Router v4, and using webpacker.*
3
+ _Note: This document is outdated._ Please email [justin@shakacode.com](mailto:justin@shakacode.com)
4
+ if you would be interested in help with code splitting using
5
+ [loadable-components.com](https://loadable-components.com/docs) with React on Rails.
6
+
7
+ -----
4
8
 
5
9
  What is code splitting? From the webpack documentation:
6
10
 
@@ -17,11 +21,11 @@ Let's say you're requesting a page that needs to fetch a code chunk from the ser
17
21
  > (server) <div data-reactroot="
18
22
  <!--This comment is here because the comment beginning on line 13 messes up Sublime's markdown parsing-->
19
23
 
20
- Different markup is generated on the client than on the server. Why does this happen? When you register a component or generator function with `ReactOnRails.register`, react on rails will render the component as soon as the page loads. However, react-router renders a comment while waiting for the code chunk to be fetched from the server. This means that react will tear all of the server rendered code out of the DOM, and then rerender it a moment later once the code chunk arrives from the server, defeating most of the purpose of server rendering.
24
+ Different markup is generated on the client than on the server. Why does this happen? When you register a component or render function with `ReactOnRails.register`, react on rails will render the component as soon as the page loads. However, react-router renders a comment while waiting for the code chunk to be fetched from the server. This means that react will tear all of the server rendered code out of the DOM, and then rerender it a moment later once the code chunk arrives from the server, defeating most of the purpose of server rendering.
21
25
 
22
26
  ### The solution
23
27
 
24
- To prevent this, you have to wait until the code chunk is fetched before doing the initial render on the client side. To accomplish this, react on rails allows you to register a renderer. This works just like registering a generator function, except that the function you pass takes three arguments: `renderer(props, railsContext, domNodeId)`, and is responsible for calling `ReactDOM.render` to render the component to the DOM. React on rails will automatically detect when a generator function takes three arguments, and will not call `ReactDOM.render`, instead allowing you to control the initial render yourself.
28
+ To prevent this, you have to wait until the code chunk is fetched before doing the initial render on the client side. To accomplish this, react on rails allows you to register a renderer. This works just like registering a render function, except that the function you pass takes three arguments: `renderer(props, railsContext, domNodeId)`, and is responsible for calling `ReactDOM.render` or `ReactDOM.hydrate` to render the component to the DOM. React on rails will automatically detect when a render function takes three arguments, and will **not** call `ReactDOM.render` or `ReactDOM.hydrate`, instead allowing you to control the initial render yourself. Note, you have to be careful to call `ReactDOM.hydrate` rather than `ReactDOM.render` if you are are server rendering.
25
29
 
26
30
  Here's an example of how you might use this in practice:
27
31
 
@@ -34,7 +38,7 @@ Here's an example of how you might use this in practice:
34
38
 
35
39
  #### clientRegistration.js
36
40
  ```js
37
- import ReactOnRails from 'react-on-rails';
41
+ import ReactOnRails from 'node_package/lib/ReactOnRails';
38
42
  import NavigationApp from './NavigationApp';
39
43
 
40
44
  // Note that we're importing a different RouterApp than in serverRegistration.js
@@ -78,7 +82,7 @@ import { Provider } from 'react-redux';
78
82
 
79
83
  import routes from '../routes/routes';
80
84
 
81
-
85
+ // NOTE how this function takes 3 params, and is thus responsible for calling ReactDOM.render
82
86
  const RouterAppRenderer = (props, railsContext, domNodeId) => {
83
87
  const store = ReactOnRails.getStore('applicationStore');
84
88
  const history = browserHistory;
@@ -115,7 +119,7 @@ See:
115
119
 
116
120
  - [spec/dummy/client/app/startup/clientRegistration.jsx](https://github.com/shakacode/react_on_rails/tree/master/spec/dummy/client/app/startup/clientRegistration.jsx)
117
121
  - [spec/dummy/client/app/startup/serverRegistration.jsx](https://github.com/shakacode/react_on_rails/tree/master/spec/dummy/client/app/startup/serverRegistration.jsx)
118
- - [spec/dummy/client/app/startup/DeferredRenderAppRenderer.jsx](https://github.com/shakacode/react_on_rails/tree/master/spec/dummy/client/app/startup/DeferredRenderAppRenderer.jsx) <-- Code splitting implemented here
122
+ - [spec/dummy/client/app/startup/DeferredRenderAppClient](https://github.com/shakacode/react_on_rails/tree/master/spec/dummy/client/app/startup/DeferredRenderAppClient.jsx)<-- Code splitting implemented here
119
123
  - [spec/dummy/client/app/startup/DeferredRenderAppServer.jsx](https://github.com/shakacode/react_on_rails/tree/master/spec/dummy/client/app/startup/DeferredRenderAppServer.jsx)
120
124
  - [spec/dummy/client/app/components/DeferredRender.jsx](https://github.com/shakacode/react_on_rails/tree/master/spec/dummy/client/app/components/DeferredRender.jsx)
121
125
  - [spec/dummy/client/app/components/DeferredRenderAsyncPage.jsx](https://github.com/shakacode/react_on_rails/tree/master/spec/dummy/client/app/components/DeferredRenderAsyncPage.jsx)
@@ -130,7 +134,7 @@ If you're going to try to do code splitting with server rendered routes, you'll
130
134
 
131
135
  The reason is we do server rendering with ExecJS, which is not capable of doing anything asynchronous. It would be impossible to asyncronously fetch a code chunk while server rendering. See [this issue](https://github.com/shakacode/react_on_rails/issues/477) for a discussion.
132
136
 
133
- Also, do not attempt to register a renderer on the server. Instead, register either a generator function or a component. If you register a renderer in the server bundle, you'll get an error when react on rails tries to server render the component.
137
+ Also, do not attempt to register a renderer on the server. Instead, register either a render function or a component. If you register a renderer in the server bundle, you'll get an error when react on rails tries to server render the component.
134
138
 
135
139
  ## How does Webpack know where to find my code chunks?
136
140
 
@@ -146,7 +150,7 @@ config = {
146
150
 
147
151
  This causes Webpack to prepend the code chunk filename with `/assets/` in the request url. The react on rails sets up the webpack config to put webpack bundles in `app/assets/javascripts/webpack`, and modifies `config/initializers/assets.rb` so that rails detects the bundles. This means that when we prepend the request url with `/assets/`, rails will know what webpack is asking for.
148
152
 
149
- See [rails-assets.md](rails-assets.md) to learn more about static assets.
153
+ See [rails-assets.md](docs/outdated/rails-assets.md) to learn more about static assets.
150
154
 
151
155
  If you forget to set the public path, webpack will request the code chunk at `/{filename}`. This will cause the request to be handled by the Rails router, which will send back a 404 response, assuming that you don't have a catch-all route. In your javascript console, you'll get the following error:
152
156
 
@@ -2,10 +2,8 @@
2
2
  The generator has created the necessary files and gems for deployment to Heroku. If you have installed manually, you will need to provide these files yourself:
3
3
 
4
4
  + `Procfile`: used by Heroku and Foreman to start the Puma server
5
- + `12factor` gem: required by Heroku if using a version before Rails 5 (see their [README](https://github.com/heroku/rails_12factor#rails-5) for more information if upgrading from a lower version)
6
5
  + `'puma'` gem: recommended Heroku webserver
7
6
  + `config/puma.rb`: Puma webserver config file
8
- + `/package.json`: Top level package.json which must contain `"scripts": { "postinstall": "cd client && npm install" }`
9
7
 
10
8
  If you want to see an updated example deployed to Heroku, please visit the [github.com/shakacode/react-webpack-rails-tutorial](https://github.com/shakacode/react-webpack-rails-tutorial).
11
9
 
@@ -17,10 +15,6 @@ This is how the `assets:precompile` rake task gets modified by `react_on_rails`.
17
15
  Rake::Task["assets:precompile"]
18
16
  .clear_prerequisites
19
17
  .enhance([:environment, "react_on_rails:assets:compile_environment"])
20
- .enhance do
21
- Rake::Task["react_on_rails:assets:symlink_non_digested_assets"].invoke
22
- Rake::Task["react_on_rails:assets:delete_broken_symlinks"].invoke
23
- end
24
18
  ```
25
19
 
26
20
  For an example of how to do this, see the [dummy app](https://github.com/shakacode/react_on_rails/blob/master/spec/dummy/lib/tasks/assets.rake).
@@ -32,9 +32,9 @@ Each time you change your client code, you will need to re-generate the bundles
32
32
 
33
33
  Simply run `foreman start -f Procfile.dev`. [Example](spec/dummy/Procfile.static).
34
34
 
35
- On production deployments that use asset precompilation, such as Heroku deployments, React on Rails, by default, will automatically run webpack to build your JavaScript bundles. You configure the command used as `config.build_production_command` in your [config/initializers/react_on_rails.rb](./configuration.md).
35
+ On production deployments that use asset precompilation, such as Heroku deployments, React on Rails, by default, will automatically run webpack to build your JavaScript bundles. You configure the command used as `config.build_production_command` in your [config/initializers/react_on_rails.rb](docs/basics/configuration.md).
36
36
 
37
- You can see the source code for what gets added to your precompilation [here](https://github.com/shakacode/react_on_rails/tree/master/lib/tasks/assets.rake). For more information on this topic, see [the doc on Heroku deployment](docs/additional-reading/heroku-deployment.md#more-details-on-precompilation-using-webpack-to-create-javascript-assets).
37
+ You can see the source code for what gets added to your precompilation [here](https://github.com/shakacode/react_on_rails/tree/master/lib/tasks/assets.rake). For more information on this topic, see [the doc on Heroku deployment](docs/outdated/heroku-deployment.md#more-details-on-precompilation-using-webpack-to-create-javascript-assets).
38
38
 
39
39
  If you have used the provided generator, these bundles will automatically be added to your `.gitignore` to prevent extraneous noise from re-generated code in your pull requests. You will want to do this manually if you do not use the provided generator.
40
40
 
@@ -14,17 +14,17 @@ The only requirements within this directory for basic React on Rails integration
14
14
  1. Your webpack configuration files:
15
15
  1. Create outputs in a directory like `/public/webpack`, which is customizable in your `config/initializers/react_on_rails.rb`.
16
16
  1. Provide server rendering if you wish to use that feature.
17
- 1. Your JavaScript code "registers" any components and stores per the ReactOnRails APIs of ReactOnRails.register(components) and ReactOnRails.registerStore(stores). See API docs in [README.md](../../README.md) and the [ReactOnRails.js source](../../node_package/src/ReactOnRails.js).
17
+ 1. Your JavaScript code "registers" any components and stores per the ReactOnRails APIs of ReactOnRails.register(components) and ReactOnRails.registerStore(stores). See API docs in [README.md](README.md) and the [ReactOnRails.js source](../../node_package/src/ReactOnRails.js).
18
18
  1. Set your registration file as an "entry" point in your Webpack configs.
19
19
  1. Add the [Manifest plugin](https://github.com/danethurber/webpack-manifest-plugin) to your config. For examples see [dummy config](../../spec/dummy/client/webpack.client.base.config.js).
20
20
  The default path: `public/webpack` can be loaded with webpackConfigLoader as shown in the dummy example.
21
21
  1. You create scripts in `client/package.json` per the example apps. These are used for building your Webpack assets. Also do this for your top level `package.json`.
22
22
 
23
23
  ## Rails Steps (outside of /client)
24
- 1. Add `gem "webpacker"` to the Gemfile, run bundle. The gem provides the `stylesheet_pack_tag` and `javascript_pack_tag` helpers which is used to load the bundled assets to your layouts.[Dummy Example](../../spec/dummy/app/views/layouts/application.html.erb)
25
- 1. Configure the `config/initializers/react_on_rails.rb`. You can adjust some necessary settings and defaults. See file [spec/dummy/config/initializers/react_on_rails.rb](../../spec/dummy/config/initializers/react_on_rails.rb) for a detailed example of configuration, including comments on the different values to configure.
24
+ 1. Add `gem "webpacker"` to the Gemfile, run bundle. The gem provides the `stylesheet_pack_tag` and `javascript_pack_tag` helpers which is used to load the bundled assets to your layouts.[Dummy Example](spec/dummy/app/views/layouts/application.html.erb)
25
+ 1. Configure the `config/initializers/react_on_rails.rb`. You can adjust some necessary settings and defaults. See file [spec/dummy/config/initializers/react_on_rails.rb](spec/dummy/config/initializers/react_on_rails.rb) for a detailed example of configuration, including comments on the different values to configure.
26
26
  1. Configure your Procfiles per the example apps. These are at the root of your Rails installation.
27
- 1. Configure your top level JavaScript files for inclusion in your layout. You'll want a version that you use for static assets, and you want a file for any files in your setup that are not part of your webpack build. The reason for this is for use with hot-reloading. If you are not using hot reloading, then you only need to configure your `application.js` file to include your Webpack generated files. For more information on hot reloading, see [Hot Reloading of Assets For Rails Development](../additional-reading/hot-reloading-rails-development.md)
28
- 1. If you are deploying to Heroku, see [heroku-deployment.md](/docs/additional-reading/heroku-deployment.md)
27
+ 1. Configure your top level JavaScript files for inclusion in your layout. You'll want a version that you use for static assets, and you want a file for any files in your setup that are not part of your webpack build. The reason for this is for use with hot-reloading. If you are not using hot reloading, then you only need to configure your `application.js` file to include your Webpack generated files.
28
+ 1. If you are deploying to Heroku, see [heroku-deployment.md](/docs/outdated/heroku-deployment.md)
29
29
 
30
30
  If I missed anything, please submit a PR or file an issue.
@@ -1,4 +1,4 @@
1
- *Note: this doc needs updating to reflect how v8.x+ no longer puts Webpack generated files through the asset pipeline. PR's welcome!*
1
+ *Note: this doc reflects using Sprockets for assets and has not been updated for rails/webpacker*
2
2
 
3
3
  # Using Webpack bundled assets with the Rails Asset Pipeline
4
4
 
@@ -77,7 +77,7 @@ Note: _You can output these files in the asset pipeline wherever you see fit. My
77
77
 
78
78
  Lastly, we will set the publicPath to our file(s). This will be the endpoint on our rails web server that you can visit to reach the asset (if you don't know how this works, read the [intro](#using-webpack-bundled-assets-with-the-rails-asset-pipeline)). If you've been following the previous steps, you know that we set our outputPath for our assets to be absolute at `app/assets/webpack/webpack-assets/`, which your rails app should end up hosting at `/assets/webpack-assets/file-name+hash.ext` when the server is run.
79
79
 
80
- Note: _If you're having a hard time figuring out what an asset's path will be on your rails server, simply run `rake assets:precompile` and `cd public/`. The path from there to your file will then be the path/url on your web server to that asset. On top of this, it is also a good idea to check out [this doc](../misc-pending/rails-assets.md) to understand how `react_on_rails` allows us to access these files after precompilation, when Rails applies another hash onto the asset._
80
+ Note: _If you're having a hard time figuring out what an asset's path will be on your rails server, simply run `rake assets:precompile` and `cd public/`. The path from there to your file will then be the path/url on your web server to that asset. On top of this, it is also a good idea to check out [this doc](docs/outdated/rails-assets.md) to understand how `react_on_rails` allows us to access these files after precompilation, when Rails applies another hash onto the asset._
81
81
 
82
82
  Our publicPath setting will match the path to our outputted assets on our rails web server. Given our assets in this example will be outputted to `/app/assets/webpack/webpack-assets/` and hosted at `/assets/webpack-assets/`, our publicPath would be:
83
83
 
@@ -192,4 +192,4 @@ module.exports = {
192
192
  };
193
193
  ```
194
194
 
195
- If you'd like to understand how react_on_rails handles these bundled assets after asset precompilation and in production mode, check out: [Rails Assets](../misc-pending/rails-assets.md).
195
+ If you'd like to understand how react_on_rails handles these bundled assets after asset precompilation and in production mode, check out: [Rails Assets](docs/outdated/rails-assets.md).
@@ -33,21 +33,18 @@ fail to load.
33
33
  _If you are interested in learning how to use assets in your React components, read this doc: [Webpack, the Asset Pipeline, and Using Assets w/ React](../additional-reading/rails-assets-relative-paths.md)._
34
34
 
35
35
  ## The Solution: Symlink Original File Names to New File Names
36
+ _Note, this solution was removed in v14. If you're intersted in this symlink solution, please create
37
+ a github issue._
38
+
36
39
  React on Rails creates symlinks of non-digested versions (original webpack digested file names)
37
40
  to the Rails deployed digested versions when doing a Rails assets compile. The solution is
38
41
  implemented using `assets:precompile` after-hook in
39
- file [lib/tasks/assets.rake](../../lib/tasks/assets.rake)
42
+ file [lib/tasks/assets.rake](lib/tasks/assets.rake)
40
43
  The assets for symlinking are defined by `config.symlink_non_digested_assets_regex` in
41
44
  `config/initializers/react_on_rails.rb`.
42
45
 
43
- ## Disabling the Symlinking
44
- To disable symlinks set this parameter to `nil`.
45
-
46
-
47
46
  ## Example from /spec/dummy
48
47
 
49
- If you run
50
-
51
48
  ```
52
49
  cd spec/dummy
53
50
  RAILS_ENV=production bundle exec rake assets:precompile
File without changes
@@ -0,0 +1,25 @@
1
+ # HVMN Testimonial, Written by Paul Benigeri, October 12, 2018
2
+
3
+ For some years, we used React on Rails for server-side rendering at [HVMN](https://hvmn.com). Our entire backend was already built in Rails, and we love React. As a content & e-commerce site, server-side rendering is critical, for UX performance and SEO crawler indexing.
4
+
5
+ During the 12 months leading up to our React on Rails Pro transition, our traffic grew 10x. Our team of 2 engineers was focused on shipping features, and we started to face performance issues. We had some fragment caching of our React server rending, but it didn’t work that well.
6
+
7
+ I discussed our growing pains with Justin, and as it turned out, ShakaCode just came out with React on Rails Pro and set it up on [egghead.io](https://egghead.io). The performance improvements were impressive, and Justin’s team was an ideal partner to help with the integration.
8
+
9
+ We decided to give it a shot. Over three weeks, the ShakaCode team helped us migrate to React on Rails Pro, set up Webpack v4, migrated our entire asset pipeline to Webpack v4.
10
+
11
+ Results were great. Our blog and product pages are 80-90% faster after that effort. The improved fragment caching was quick to set up and made a huge dent in our average server response times. We also observed an additional drop in response times when ShakaCode shipped the standalone Node server-side React renderer.
12
+
13
+ Working with ShakaCode was a pleasure. Justin is one of the smartest Rails architects I know, and his team was responsive and productive.
14
+
15
+ The price we paid for the consultation + the React on Rails pro license has already been made back a couple of times from hosting fees alone. The entire process was super hands off, and our core team was able to focus on shipping new feature during that sprint.
16
+
17
+ If you have any questions, please reach out.
18
+
19
+ Paul Benigeri, Head of E-Commerce
20
+
21
+ [paul@hvmn.com](mailto:paul@hvmn.com), [LinkedIn](https://www.linkedin.com/in/benigeri/)
22
+
23
+ Related Article: [HVMN’s 90% Reduction in Server Response Time from React on Rails Pro](https://blog.shakacode.com/hvmns-90-reduction-in-server-response-time-from-react-on-rails-pro-eb08226687db)
24
+
25
+ [![image](https://user-images.githubusercontent.com/1118459/46911126-577abd00-ceee-11e8-86c6-6703ff80fc2f.png)](https://www.linkedin.com/in/benigeri/)
@@ -0,0 +1,13 @@
1
+ # ResortPass Testimonial, by Leora Juster, December 10, 2018
2
+
3
+ Many can write code that "works." Even fewer can write sophisticated code that both works and reflects a deep understanding of the technologies and paradigms involved. Only a select few can do the aforementioned while assisting in managing the expectations and time constraints of less technically informed members of software product teams to make the best design decisions possible. Justin and his team were instrumental in assisting us in setting design foundations and standards for our transition to a react on rails application. Just three months of work with the team at Shaka code and we have a main page of our application server-side rendering at exponentially improved speeds. The code and CSS files are well-organized and contain repeatable patterns easy to understand, allowing my team to build on what has already been accomplished. I learned a great deal from my interactions with Justin and his team, as they are just as great teachers as they are developers, and feel like I get to continually learn from them as I build on top of their code. Their different support and pro plan options make it easy to build a continuous professional relationship despite fluctuations in my team's funding, and their team is always extremely personable, punctual, and professional.
4
+
5
+ Leora Juster, Full-Stack Lead Software Developer
6
+
7
+ [LinkedIn](https://www.linkedin.com/in/leora-juster-38933050)
8
+
9
+ ![image](https://user-images.githubusercontent.com/1118459/50050877-30399b00-00ab-11e9-9e52-2977de45ccae.png)
10
+
11
+ [ResortPass](https://resortpass.com/)
12
+
13
+ [![2018-12-15_20-48-35](https://user-images.githubusercontent.com/1118459/50050866-03858380-00ab-11e9-8588-461112f8045b.png)](https://resortpass.com/)