view_component_reflex 3.1.14.pre5 → 3.1.14.pre6
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 +4 -4
- data/README.md +25 -0
- data/app/components/view_component_reflex/component.rb +1 -0
- data/lib/view_component_reflex/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a2bc64cc6358619458915ab821a8f690257cb8239c8a5e55986c82f12620b642
|
4
|
+
data.tar.gz: 85fbc21a9c3f2a9ce7331fe2b9aaf67255bb74a98d7f4a5ddece7b75ff6a710c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c80401f2a8ed054f8feaa74fa976eb61d1829ba70bc809e836c887463f20b74dc37f85252c8ae9fcc2f5da0f32f7c12d1856fd3592fc13998929323adee2b334
|
7
|
+
data.tar.gz: cf388efa838d347177ffff53969e2ec7f44acedb51e6257d92a135606d3e9b11d2faf3c3f0866238d70c15f6c81e4798f59991f3fbf82b0a529e56d668e662cb
|
data/README.md
CHANGED
@@ -440,6 +440,31 @@ Otherwise @instance_variables were nil after a reflex
|
|
440
440
|
config.session_store :cache_store
|
441
441
|
```
|
442
442
|
|
443
|
+
## Sidecar assets
|
444
|
+
|
445
|
+
When using ViewComponent generated sidecar assets, the stimulus controller won't resolve properly.
|
446
|
+
To resolve this, override the `self.stimulus_controller` method in your component to the correct method.
|
447
|
+
|
448
|
+
For example, if you have a structure of
|
449
|
+
|
450
|
+
```
|
451
|
+
components/
|
452
|
+
example_component/
|
453
|
+
example_component_controller.js
|
454
|
+
example_component.html.erb
|
455
|
+
example_component.rb
|
456
|
+
```
|
457
|
+
|
458
|
+
You would update your `self.stimulus_controller` method to
|
459
|
+
|
460
|
+
```ruby
|
461
|
+
def self.stimulus_controller
|
462
|
+
"example-component--example-component"
|
463
|
+
end
|
464
|
+
```
|
465
|
+
|
466
|
+
Thanks @omairrazam for this solution
|
467
|
+
|
443
468
|
## License
|
444
469
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
445
470
|
|
@@ -216,6 +216,7 @@ module ViewComponentReflex
|
|
216
216
|
:@helpers, :@controller, :@request, :@tag_builder, :@state_initialized,
|
217
217
|
:@_content_evaluated, :@_render_in_block, :@__vc_controller, :@__vc_helpers,
|
218
218
|
:@__cached_content, :@__vc_variant, :@__vc_content_evaluated, :@__vc_render_in_block,
|
219
|
+
:@original_view_context,
|
219
220
|
]
|
220
221
|
end
|
221
222
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: view_component_reflex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.1.14.
|
4
|
+
version: 3.1.14.pre6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joshua LeBlanc
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-11-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -112,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
112
112
|
- !ruby/object:Gem::Version
|
113
113
|
version: 1.3.1
|
114
114
|
requirements: []
|
115
|
-
rubygems_version: 3.2.
|
115
|
+
rubygems_version: 3.2.9
|
116
116
|
signing_key:
|
117
117
|
specification_version: 4
|
118
118
|
summary: Allow stimulus reflexes in a view component
|