Я пытаюсь добавить камень toastr в мой проект Rails 6. У меня также есть установленный драгоценный камень.
Я не понимаю webpacker и как сделать toastr-rails дружественным к webpacker.
Я прочитал всю документацию. Не говорите мне, чтобы прочитать документацию.
Это то, что я пробовал
yarn add toastr
Затем в своем файле assets / packs / application.js я добавил
@import 'toastr'
И в свой файл assets / stylesheets / application.scss я добавил
*= require_toastr
Наконец, мой layouts / application.html.erb имеет этот код
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<% unless flash.empty? %>
<script type="text/javascript">
<% flash.each do |f| %>
<% type = f[0].to_s %>
toastr['<%= type %>']('<%= f[1] %>');
<% end %>
</script>
<% end %>
<%= yield %>
</body>
</html>```
I don't get the toast notifications.
I don't get any notifications.
But this code works on my Rails 4 project.