thunderclap 0.2.0 → 0.3.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b864f2762b90fb969134671f4c53c66ed1a2549c506bc6dcb29603602ffecf07
|
4
|
+
data.tar.gz: f8a0a93c185d9600f451e7dbe646c4ad04d0f0a2347f129e5ad7c16c69852aa4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5104cebc661318de90552dbc24476885d423bca5a14bbe3c7049f4846d2993f47a810c31c700fc0fdb26a483b947ec802623150af9fab94b802b057c51aa72f9
|
7
|
+
data.tar.gz: e702b4077d25b63587a253ed08b8a7b22b0d29ccf4b3aa8a7ebb5256c386a0e01f2433f924c7e854a9c63c50cb41c46c6b16face1d3d6abe9a0869f77d898dda
|
@@ -7,6 +7,6 @@ module ThunderclapHelper
|
|
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
9
|
def flash
|
10
|
-
render 'thunderclap/partials/flash'
|
10
|
+
render 'thunderclap/partials/flash', flash_object: flash
|
11
11
|
end
|
12
12
|
end
|
@@ -1 +1,34 @@
|
|
1
|
-
|
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>
|
data/lib/thunderclap/version.rb
CHANGED