importmap-rails 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5fd79cf4031e5503a22e3013a53a35fb7ae5c3e11b1ace5791dd36429a6e5237
4
- data.tar.gz: 3f993fba70aa37b5f80c4133c3e1a8aa64fc1b3d29096cf2d1bff823e5c9add5
3
+ metadata.gz: af8555e15d3527fb4cfa9fe96e9b23c62b19ad49071ea52d7791340ba8667266
4
+ data.tar.gz: 5ad2c59b8d549a5afd05505c5d957343db6eeb09947d21b69e96f0e483c5f0dc
5
5
  SHA512:
6
- metadata.gz: cd7593f33ed2ff9c74b6c669f10a948cf2ee750ec136f269ff8d311c7851b7a3f2dbb81bb93c44ad505417a341c72169efdf6daf294f521a32179abdd4c2447f
7
- data.tar.gz: 6e1f7fa74597f4407e03999433a20f1470fb2cb7cfa876b1d3e457cac14dffa08bdefe99110a42761ea736c13f356f50eeebfbaf5b4460d266fbd958ff99a837
6
+ metadata.gz: c743d9f4de29b6cda4b32fa866d3e8b30cfde1f68c1122fb0a29e4fa0fc33108e40a3d5deb4ebd7389268d952de78011df6367c5ed301bc621b7547ad8c19304
7
+ data.tar.gz: e640cf67cdc9fffc259619baede7a3b2c9f6d37c94bebb251d55a2b572500e045e3e16596ab7f5bd08e3915210ed96440c907ae644e21a3425c1f2ca385b658f
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2021 Basecamp
1
+ Copyright (c) 2022 Basecamp
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Importmap for Rails
2
2
 
3
- [Import maps](https://github.com/WICG/import-maps) let you import JavaScript modules using logical names that map to versioned/digested files – directly from the browser. So you can [build modern JavaScript applications using JavaScript libraries made for ESM without the need for transpiling or bundling](https://world.hey.com/dhh/modern-web-apps-without-javascript-bundling-or-transpiling-a20f2755).This frees you from needing Webpack, Yarn, npm, or any other part of the JavaScript toolchain. All you need is the asset pipeline that's already included in Rails.
3
+ [Import maps](https://github.com/WICG/import-maps) let you import JavaScript modules using logical names that map to versioned/digested files – directly from the browser. So you can [build modern JavaScript applications using JavaScript libraries made for ES modules (ESM) without the need for transpiling or bundling](https://world.hey.com/dhh/modern-web-apps-without-javascript-bundling-or-transpiling-a20f2755). This frees you from needing Webpack, Yarn, npm, or any other part of the JavaScript toolchain. All you need is the asset pipeline that's already included in Rails.
4
4
 
5
- With this approach you'll ship many small JavaScript files instead of one big JavaScript file. Thanks to HTTP/2 that no longer carries a material performance penalty during the initial transport, and in fact offers substantial benefits over the long run due to better caching dynamics. Whereas before any change to any JavaScript file included in your big bundle would invalidate the cache for the the whole bundle, now only the cache for that single file is invalidated.
5
+ With this approach you'll ship many small JavaScript files instead of one big JavaScript file. Thanks to HTTP/2 that no longer carries a material performance penalty during the initial transport, and in fact offers substantial benefits over the long run due to better caching dynamics. Whereas before any change to any JavaScript file included in your big bundle would invalidate the cache for the whole bundle, now only the cache for that single file is invalidated.
6
6
 
7
7
  There's [native support for import maps in Chrome/Edge 89+](https://caniuse.com/?search=importmap), and [a shim available](https://github.com/guybedford/es-module-shims) for any browser with basic ESM support. So your app will be able to work with all the evergreen browsers.
8
8
 
@@ -11,9 +11,8 @@ There's [native support for import maps in Chrome/Edge 89+](https://caniuse.com/
11
11
 
12
12
  Importmap for Rails is automatically included in Rails 7+ for new applications, but you can also install it manually in existing applications:
13
13
 
14
- 1. Add `importmap-rails` to your Gemfile with `gem 'importmap-rails'`
15
- 2. Run `./bin/bundle install`
16
- 3. Run `./bin/rails importmap:install`
14
+ 1. Run `./bin/bundle add importmap-rails`
15
+ 2. Run `./bin/rails importmap:install`
17
16
 
18
17
  Note: In order to use JavaScript from Rails frameworks like Action Cable, Action Text, and Active Storage, you must be running Rails 7.0+. This was the first version that shipped with ESM compatible builds of these libraries.
19
18
 
@@ -42,7 +41,7 @@ to 1 of the 3 viable ways of loading ES Module javascript packages.
42
41
  For example:
43
42
 
44
43
  ```rb
45
- # config/importmaps.rb
44
+ # config/importmap.rb
46
45
  pin "react", to: "https://ga.jspm.io/npm:react@17.0.2/index.js"
47
46
  ```
48
47
 
@@ -224,6 +223,41 @@ pin_all_from File.expand_path("../app/assets/javascripts", __dir__)
224
223
  ```
225
224
 
226
225
 
226
+ ## Selectively importing modules
227
+
228
+ You can selectively import your javascript modules on specific pages.
229
+
230
+ Create your javascript in `app/javascript`:
231
+
232
+ ```js
233
+ // /app/javascript/checkout.js
234
+ // some checkout specific js
235
+ ```
236
+
237
+ Pin your js file:
238
+
239
+ ```rb
240
+ # config/importmap.rb
241
+ # ... other pins...
242
+ pin "checkout"
243
+ ```
244
+
245
+ Import your module on the specific page. Note: you'll likely want to use a `content_for` block on the specifc page/partial, then yield it in your layout.
246
+
247
+ ```erb
248
+ <% content_for :head do %>
249
+ <%= javascript_import_module_tag "checkout" %>
250
+ <% end %>
251
+ ```
252
+
253
+ **Important**: The `javascript_import_module_tag` should come after your `javascript_importmap_tags`
254
+
255
+ ```erb
256
+ <%= javascript_importmap_tags %>
257
+ <%= yield(:head) %>
258
+ ```
259
+
260
+
227
261
  ## Include a digest of the import map in your ETag
228
262
 
229
263
  If you're using [ETags](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag) generated by Rails helpers like `stale?` or `fresh_when`, you need to include the digest of the import map into this calculation. Otherwise your application will return 302 cache responses even when your JavaScript assets have changed. You can avoid this with something like: