view_component 2.80.0 → 2.81.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.
Potentially problematic release.
This version of view_component might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/docs/CHANGELOG.md +14 -0
- data/lib/view_component/test_helpers.rb +9 -7
- data/lib/view_component/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bd53c4661f35fd92f4b4cf05bfcd8af23c5a4e6bd60b13a6af492393b75290fe
|
4
|
+
data.tar.gz: def906e9d722ffeb43fc79677c6c3613de4c9f7eec63eecc4d36f0feedfe5785
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f6c8525b8e0b1366e283b870deebc95ae0920c6910846a658590c8665239fbdc1c6f0ef1681c95ee811ac9d7a995a86f7cf6764cb61e636a8e8de305567f2a7
|
7
|
+
data.tar.gz: 447035b6780c59291f2014856703fc73d13838d4765f7185657e6f26b4be60937b561cafac7a994a68c12c68f10f7c0956948cd4c44355f3d0b875d85738e2d4
|
data/docs/CHANGELOG.md
CHANGED
@@ -10,6 +10,20 @@ nav_order: 5
|
|
10
10
|
|
11
11
|
## main
|
12
12
|
|
13
|
+
## 2.81.0
|
14
|
+
|
15
|
+
* Adjust the way response objects are set on the preview controller to work around a recent change in Rails main.
|
16
|
+
|
17
|
+
*Cameron Dutro*
|
18
|
+
|
19
|
+
* Fix typo in "Generate a Stimulus controller" documentation.
|
20
|
+
|
21
|
+
*Ben Trewern*
|
22
|
+
|
23
|
+
* Modify the `render_in_view_context` test helper to forward its args to the block.
|
24
|
+
|
25
|
+
*Cameron Dutro*
|
26
|
+
|
13
27
|
## 2.80.0
|
14
28
|
|
15
29
|
* Move system test endpoint out of the unrelated previews controller.
|
@@ -91,7 +91,7 @@ module ViewComponent
|
|
91
91
|
end
|
92
92
|
|
93
93
|
previews_controller.request.params[:path] = "#{from.preview_name}/#{name}"
|
94
|
-
previews_controller.
|
94
|
+
previews_controller.set_response!(ActionDispatch::Response.new)
|
95
95
|
result = previews_controller.previews
|
96
96
|
|
97
97
|
@rendered_content = result
|
@@ -99,21 +99,23 @@ module ViewComponent
|
|
99
99
|
Nokogiri::HTML.fragment(@rendered_content)
|
100
100
|
end
|
101
101
|
|
102
|
-
# Execute the given block in the view context
|
103
|
-
# `Capybara::Node::Simple`, allowing for
|
102
|
+
# Execute the given block in the view context (using `instance_exec`).
|
103
|
+
# Internally sets `page` to be a `Capybara::Node::Simple`, allowing for
|
104
|
+
# Capybara assertions to be used. All arguments are forwarded to the block.
|
104
105
|
#
|
105
106
|
# ```ruby
|
106
|
-
# render_in_view_context do
|
107
|
-
# render(MyComponent.new)
|
107
|
+
# render_in_view_context(arg1, arg2:) do |arg1, arg2:|
|
108
|
+
# render(MyComponent.new(arg1, arg2))
|
108
109
|
# end
|
109
110
|
#
|
110
111
|
# assert_text("Hello, World!")
|
111
112
|
# ```
|
112
|
-
def render_in_view_context(&block)
|
113
|
+
def render_in_view_context(*args, &block)
|
113
114
|
@page = nil
|
114
|
-
@rendered_content = controller.view_context.instance_exec(&block)
|
115
|
+
@rendered_content = controller.view_context.instance_exec(*args, &block)
|
115
116
|
Nokogiri::HTML.fragment(@rendered_content)
|
116
117
|
end
|
118
|
+
ruby2_keywords(:render_in_view_context) if respond_to?(:ruby2_keywords, true)
|
117
119
|
|
118
120
|
# @private
|
119
121
|
def controller
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: view_component
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.81.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ViewComponent Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|