render_turbo_stream 4.3.12 → 4.3.14

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: 6491dd2f6c65045c5582fb2dd5ea07c3b8f02b3f279c33631f153c014008a068
4
- data.tar.gz: 4532b772e1cf4978567853cc9db83d46d15017f934356e92b4dff6bdba1daae0
3
+ metadata.gz: a7cdf1b3f0af6bf441e0c0d08919985aaa0a83ef49671724860cdb8e6ff45521
4
+ data.tar.gz: 23e55905c875439a1203a970fca7a9f72bde401de75d886849ed604213d05db6
5
5
  SHA512:
6
- metadata.gz: 53f8f75f1403116b7096ee222f609d646db438d862f06ed076bcd585c37004b8123a1af46fa0b1e43acc5ef95ce9cc87554e5d1b35018fab9126d79c1b4c1b21
7
- data.tar.gz: acd8dcd1f6c361128db23f83529568bd010f558e1702536d8547c2ec337f040c4abe7de636ce7ca49e14e7ae8ecdc3e6b98185c117ad62b0ca8ffada55e895af
6
+ metadata.gz: 1bfed3d855085bbd4834b5cce5fa13351e3fac306082172b8cc78525c677515b66de762b2291b08c2c25321e5b7c2e52e245560e465e27bb8ff5154029307189
7
+ data.tar.gz: d7d0257d9b7210c5f1516cd7fee00765942d6222b32e4ec9338d4c2f452e2ffcce432a7242208045acd7c49fcffedcbdfe7ccabb979fb1b51c7da843fdc5b9db
data/README.md CHANGED
@@ -17,8 +17,6 @@ Has a testing strategy.
17
17
  An overview of how we design a rails-7 application with turbo
18
18
  is [published on dev.to](https://dev.to/chmich/rails-7-vite-wrapping-up-1pia).
19
19
 
20
- Hope it helps :)
21
-
22
20
  **Chris**
23
21
 
24
22
  ## Installation
@@ -45,7 +43,7 @@ Create a Initializer
45
43
  ActionView::Base.send :include, RenderTurboStream::ViewHelpers
46
44
  ```
47
45
 
48
- spec/rails_helper.rb (We are using rspec instead of minitest)
46
+ spec/rails_helper.rb (for rspec)
49
47
 
50
48
  ```ruby
51
49
  RSpec.configure do |config|
@@ -67,6 +65,10 @@ Required Configurations for Flash Partial
67
65
 
68
66
  # In case of redirection a flash cannot be sent by TurboStream
69
67
  config.x.render_turbo_stream.allow_channel_to_me_for_turbo_stream_save = true
68
+
69
+ config.x.render_turbo_stream.store_last_saved_object = true # default: false
70
+ # saves the last successful saved record into session['last_saved_object'] as global_id
71
+ # this can be accessed by view_helper #last_saved_object
70
72
  ```
71
73
 
72
74
  For the latter you have to setup channels, see below.
@@ -135,10 +137,10 @@ render_turbo_stream(
135
137
  )
136
138
  ```
137
139
 
138
- for just rendering a partial there is a special helper:
140
+ for just rendering a partial there is a helper:
139
141
 
140
142
  ```ruby
141
- render_partial(
143
+ stream_partial(
142
144
  'form',
143
145
  locals: {}
144
146
  )
@@ -183,7 +183,11 @@ module RenderTurboStream
183
183
  raise libs.action_errors(turbo_actions).join(', ')
184
184
  end
185
185
 
186
- unless save_action
186
+ if save_action
187
+ if Rails.configuration.x.store_last_saved_object && object.id
188
+ session['last_saved_object'] = object.to_global_id
189
+ end
190
+ else
187
191
  RenderTurboStream::Libs.debug_save_errors(object, flash_controller_action_name)
188
192
  end
189
193
 
@@ -65,7 +65,11 @@ module RenderTurboStream
65
65
  raise libs.action_errors(streams).join(', ')
66
66
  end
67
67
 
68
- unless save_action
68
+ if save_action
69
+ if Rails.configuration.x.store_last_saved_object && object.id
70
+ session['last_saved_object'] = object.to_global_id
71
+ end
72
+ else
69
73
  response.status = 422
70
74
  RenderTurboStream::Libs.debug_save_errors(object, flash_controller_action_name)
71
75
  end
@@ -171,9 +175,8 @@ module RenderTurboStream
171
175
 
172
176
  end
173
177
 
174
-
175
- def render_partial(partial, id: nil, action: :replace, locals: {})
176
- render_turbo_stream([{partial: partial, locals: locals, id: id, action: action}])
178
+ def stream_partial(partial, id: nil, action: :replace, locals: {})
179
+ render_turbo_stream([{ partial: partial, locals: locals, id: id, action: action }])
177
180
  end
178
181
 
179
182
  end
@@ -1,3 +1,3 @@
1
1
  module RenderTurboStream
2
- VERSION = "4.3.12"
2
+ VERSION = "4.3.14"
3
3
  end
@@ -16,5 +16,9 @@ module RenderTurboStream
16
16
  libs.target_id(virt_path, obj)
17
17
  end
18
18
 
19
+ def last_saved_object
20
+ GlobalID::Locator.locate(session[:last_saved_object])
21
+ end
22
+
19
23
  end
20
24
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: render_turbo_stream
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.3.12
4
+ version: 4.3.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - christian
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-17 00:00:00.000000000 Z
11
+ date: 2023-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails