thunderclap 0.2.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d963e093a6776630e06506d17fd134580aada7d34b49f7f15ffd5954e3d126fd
4
- data.tar.gz: 8727865f5b57bb0397597967b517c95ce6d5152063add4d2e7e7998b4e4dbd28
3
+ metadata.gz: 9996754205e7580e652dd0622226851d5496cb2513523c971e664cf0fa5f8c48
4
+ data.tar.gz: cb9514b3288a2fbcbee147faf31c2fafcc4f70c3142663302eb17af5086e94c8
5
5
  SHA512:
6
- metadata.gz: 127fc5274c7d111a2ab30ea5b1db9af9380623fa1f057430692ac720fead8b2bcd5da1b6e117fbbd717fdeb58f245c9cd4b6cec0f7d2884d2030ef46472d650b
7
- data.tar.gz: 858ee900705a960f21419537202986a652dc23685c7987045d139eb0695b847f3614615a77cb5525d5d21db4f585dac7a9ff044c99f276aec45c4550d85f3119
6
+ metadata.gz: 228c9fee9e1af3f9eabb562e0741e3e8e27d0ab31329bbc85da51f66007230f2bb7b7bbc16fa7a0ad64f899e3f36b3382c603d1a7f34317e396f8a9577f0eb86
7
+ data.tar.gz: 70f444d6a373a8416669611bacf8f326d4308cd7d58dc009e3ed6718e4fc0930c8d34eacd05fef0704944a56be036631e1d1d701a6fcdb74845b47b815657136
@@ -6,7 +6,7 @@ module ThunderclapHelper
6
6
  #
7
7
  # @param auto_dismiss_delay [Integer] The delay in milliseconds before the flash message automatically dismisses.
8
8
  # @return [String] The rendered flash message.
9
- def flash
10
- render 'thunderclap/partials/flash'
9
+ def render_thunderclap(flash: nil)
10
+ render 'thunderclap/partials/flash', flash_object: flash
11
11
  end
12
12
  end
@@ -1 +1,34 @@
1
- Flash
1
+ <ul>
2
+ <% flash_object.each do |type, msg| %>
3
+ <li>
4
+ <div>
5
+ <span>
6
+ <% if local_assigns[:flash_type] == "notice" %>
7
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="#31cb00" class="w-6 h-6">
8
+ <path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75 11.25 15 15 9.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z" />
9
+ </svg>
10
+ <% elsif local_assigns[:flash_type] == "alert" %>
11
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="#c1121f" class="w-6 h-6">
12
+ <path stroke-linecap="round" stroke-linejoin="round" d="m9.75 9.75 4.5 4.5m0-4.5-4.5 4.5M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z" />
13
+ </svg>
14
+ <% end %>
15
+ </span>
16
+
17
+ <p><%= msg %></p>
18
+
19
+ <button type="button">
20
+ <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="#6c757d" class="w-5 h-5">
21
+ <path stroke-linecap="round" stroke-linejoin="round" d="M6 18 18 6M6 6l12 12" />
22
+ </svg>
23
+ </button>
24
+ </div>
25
+
26
+ <% if local_assigns[:redirect] %>
27
+ <%= link_to(
28
+ local_assigns[:redirect][:copy],
29
+ local_assigns[:redirect][:path]
30
+ ) %>
31
+ <% end %>
32
+ </li>
33
+ <% end %>
34
+ </ul>
@@ -1,3 +1,3 @@
1
1
  module Thunderclap
2
- VERSION = "0.2.0"
2
+ VERSION = "0.4.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thunderclap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - LuigiR0jas