render_turbo_stream 4.3.5 → 4.3.7
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea7913deb2cafba8983dac02703b99af22fdc6258a065ee9a133764bb7b5eb65
|
4
|
+
data.tar.gz: af7c12ff7132866f47467069cd1acaa7a3cba770ad71e52e723f346c7f1ded48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84fb7d4e0a4ed16afe2fffbaa1552e7c805094eec885ba05bb9d5a7339aae0269a027d5194f238bb0e5f4913bcabc9e5c7916067b7e35fbb9f297e5c6e4f8e80
|
7
|
+
data.tar.gz: 5c1889def50f6eca8fa5c733792bb1cd721a399cc7ff3c1a20ff6de7eac988894a42ac9933c16a3ea59fcb68b0fda53a3a39f1549c195c6de5bdd099f1edefed
|
@@ -27,8 +27,8 @@
|
|
27
27
|
<% args[:target] = RenderTurboStream::Libs.fetch_arguments_from_rendered_string(rendered_html)[:target] %>
|
28
28
|
<% if args[:target].present? %>
|
29
29
|
<% Rails.logger.debug(" • Target #{args[:target]} found in #{args[:partial]}") %>
|
30
|
-
<%
|
31
|
-
<% raise
|
30
|
+
<% elsif rendered_html.present? %>
|
31
|
+
<% raise "No target specified by arguments and no target found inside the rendered #{args[:partial].present? ? "partial: #{args[:partial]}" : "template: #{args[:template]}"}: «#{rendered_html}»" %>
|
32
32
|
<% end %>
|
33
33
|
<% end %>
|
34
34
|
|
@@ -22,8 +22,8 @@
|
|
22
22
|
|
23
23
|
<% unless s[:target].present? %>
|
24
24
|
<% s[:target] = RenderTurboStream::Libs.fetch_arguments_from_rendered_string(html)[:target] %>
|
25
|
-
<%
|
26
|
-
<% raise
|
25
|
+
<% if !s[:target].present? && html.present? %>
|
26
|
+
<% raise "No target specified by arguments and no target found inside the rendered #{s[:partial].present? ? "partial: #{s[:partial]}" : "template: #{s[:template]}"}: «#{html}»" %>
|
27
27
|
<% end %>
|
28
28
|
<% end %>
|
29
29
|
|
@@ -9,8 +9,8 @@ module RenderTurboStream
|
|
9
9
|
save_action,
|
10
10
|
object: nil, # object used in save_action, example: @customer
|
11
11
|
|
12
|
-
if_success_redirect_to: nil, # does a regular redirect. Works if you are inside a turbo_frame and just want to redirect inside that frame BUT CANNOT STREAM OTHERS ACTIONS ON THE SAME RESPONSE https://github.com/rails/rails/issues/48056
|
13
|
-
if_success_turbo_redirect_to: nil, # does a full page redirect (break out of all frames by turbo_power redirect)
|
12
|
+
if_success_redirect_to: nil, # does a regular redirect. Works if you are inside a turbo_frame and just want to redirect inside that frame BUT CANNOT STREAM OTHERS ACTIONS ON THE SAME RESPONSE https://github.com/rails/rails/issues/48056. Value can be given as block like "->{article_path(@article)}"
|
13
|
+
if_success_turbo_redirect_to: nil, # does a full page redirect (break out of all frames by turbo_power redirect). Value can be given as block like "->{article_path(@article)}"
|
14
14
|
|
15
15
|
target_id: nil, # IF NIL: the gem grabs inside the rendered content for turbo-frame tag or turbo-target (element from helper of this gem) tag and takes the id from there.
|
16
16
|
partial: nil, # if nil: the gem renders the default template by turbo-stream
|
@@ -1,3 +1,3 @@
|
|
1
1
|
module RenderTurboStream
|
2
|
-
VERSION = "4.3.
|
3
|
-
end
|
2
|
+
VERSION = "4.3.7"
|
3
|
+
end
|