简体   繁体   English

将 stimulus 和 importmaps 添加到现有的 Rails 6.1 应用程序

[英]Adding stimulus and importmaps to an existing Rails 6.1 app

I've got a Rails 6.1 app which has been upgraded from Rails 4 -> 5 -> 6, so it's mature.我有一个 Rails 6.1 应用程序,它已从 Rails 4 -> 5 -> 6 升级,所以它很成熟。

It still uses asset pipeline and with the future of Rails 7.0 I'm going to keep it that way.它仍然使用资产管道,随着 Rails 7.0 的未来,我将保持这种方式。 I wanted to start using stimulus + importmaps , so I've followed along with the install.我想开始使用stimulus + importmaps ,所以我跟着安装。

After installing importmaps and stimulus through hotwire I'm getting the following errors in Firefox 91 when loading my app;通过热线安装 importmaps 和 stimulus 后,我在加载我的应用程序时在 Firefox 91 中收到以下错误;

Uncaught SyntaxError: import declarations may only appear at top level of a module
Uncaught TypeError: Error resolving module specifier “application”. Relative module specifiers must start with “./”, “../” or “/”.

My importmap.rb我的importmap.rb

Rails.application.config.importmap.draw do
  pin "@hotwired/stimulus", to: "stimulus.js"
  pin "@hotwired/stimulus-importmap-autoloader", to: "stimulus-importmap-autoloader.js"
  pin_all_from "app/javascript/controllers", under: "controllers"

  pin "application"

  # Use libraries available via the asset pipeline (locally or via gems). # Rails 7.0 required
  # pin "@rails/actioncable", to: "actioncable.esm.js"     
  # pin "@rails/activestorage", to: "activestorage.esm.js" 

  # Use libraries directly from JavaScript CDNs (see https://www.skypack.dev, https://esm.sh, https://www.jsdelivr.com/esm)
  # pin "vue", to: "https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.esm.browser.js"
  # pin "d3", to: "https://esm.sh/d3?bundle"

  # Pin vendored modules by first adding the following to app/assets/config/manifest.js:
  # //= link_tree ../../../vendor/assets/javascripts .js
  # pin_all_from "vendor/assets/javascripts"
end

I've kept all my javascript in app/assets/javascripts directory which should still be handled by the asset pipeline.我将所有 javascript 保存在 app/assets/javascripts 目录中,该目录仍应由资产管道处理。

I've got the following app/assets/javascripts/importmap.json.erb我有以下 app/assets/javascripts/importmap.json.erb

{
  "imports": { 
    "turbo": "<%= asset_path "turbo" %>",
    <%= importmap_list_with_stimulus_from "app/assets/javascripts/controllers", "app/assets/javascripts/libraries" %>
  }
}

application.js is; application.js 是;

// This is the main application.js, there can only be one.
//
// Configure your import map in config/importmap.rb

// import "@rails/actioncable"   // Rails 7.0 required
// import "@rails/activestorage" // Rails 7.0 required

import "@hotwired/stimulus-importmap-autoloader"

I also have the following line in my application.html.erb我的应用程序中也有以下行。html.erb

<%= stylesheet_link_tag    "application" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
<%= javascript_include_tag "turbo", type: "module-shim" %>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<%= yield :head %>
<%= javascript_importmap_tags %>

manifest.js is;清单.js 是;

//= link_tree ../images
//= link_directory ../javascripts .js
//= link_directory ../stylesheets .css
//= link_tree ../javascripts

Edit编辑

Checking the Elements tab in Chrome and I've already loaded es-module-shims but in Firefox I still get the errors;检查 Chrome 中的元素选项卡,我已经加载了 es-module-shims 但在 Firefox 中我仍然收到错误;

Uncaught SyntaxError: import declarations may only appear at top level of a module
Uncaught TypeError: Error resolving module specifier “application”. Relative module specifiers must start with “./”, “../” or “/”.

Here is the code which loads the es-module-shim这是加载 es-module-shim 的代码

<script src="/assets/es-module-shims-e320a414bc4656be79c9c722c91afd9bc40140edf48616fbf72fb2da3c1fdcaa.js" async="async" data-turbo-track="reload"></script>
<script type="module">import "application"</script>

Edit编辑

The following error can be safely ignored;可以安全地忽略以下错误;

Uncaught TypeError: Error resolving module specifier “application”. Relative module specifiers must start with “./”, “../” or “/”.

Ref: https://github.com/rails/importmap-rails#expected-errors-from-using-the-es-module-shim参考: https://github.com/rails/importmap-rails#expected-errors-from-using-the-es-module-shim

Edit编辑

The other error disappeared when I changed my application.html.erb head to the following当我将 application.html.erb 更改为以下内容时,另一个错误消失了

<%= csrf_meta_tags %>
<%= csp_meta_tag %>

<%= stylesheet_link_tag    "application" %>
<%= javascript_importmap_tags %>

<meta name="viewport" content="width=device-width, initial-scale=1.0">
<%= yield :head %>

Firefox does not support importmaps natively. Firefox 本身不支持 importmaps。 You need to add a polyfill from https://github.com/guybedford/es-module-shims .您需要从https://github.com/guybedford/es-module-shims添加一个 polyfill。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM