view_component_reflex 3.1.14.pre4 → 3.1.14.pre5
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: 5a7111c46b8da709628cef557dee26756076264734e18975bdcc39735f3d7171
|
4
|
+
data.tar.gz: c9d10a5c3928d777c76248c22eb2c9bcc33ddd1a7bbf0caa60e60321022b2dc8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7bb30effed81a878acedd50102e7c3db49777cb3d4c9d287245a940fef762751cafbdba5a2a1500ed24c6cc7d25e969fb44e9fcc1a3feb6d440ab00d3697baa3
|
7
|
+
data.tar.gz: ab91076e03ad19c59c148ad59e7161e72588620e572fc44d0693c64d7d1bfcf72b870c8a2b31568cbf46a88fcce8d12e025a5c0644976ce6508d7422640e2a2b
|
@@ -7,7 +7,14 @@ module ViewComponentReflex
|
|
7
7
|
def init_stimulus_reflex
|
8
8
|
factory = ViewComponentReflex::ReflexFactory.new(self)
|
9
9
|
@stimulus_reflex ||= factory.reflex
|
10
|
-
|
10
|
+
|
11
|
+
# Always wire up new callbacks in development
|
12
|
+
if Rails.env.development?
|
13
|
+
reset_callbacks
|
14
|
+
wire_up_callbacks
|
15
|
+
elsif factory.new? # only wire up callbacks in production if they haven't been wired up yet
|
16
|
+
wire_up_callbacks
|
17
|
+
end
|
11
18
|
end
|
12
19
|
|
13
20
|
def queue_callback(key, args, blk)
|
@@ -40,6 +47,11 @@ module ViewComponentReflex
|
|
40
47
|
queue_callback(:around, args, blk)
|
41
48
|
end
|
42
49
|
|
50
|
+
def reset_callbacks
|
51
|
+
# SR uses :process as the underlying callback key
|
52
|
+
@stimulus_reflex.reset_callbacks(:process)
|
53
|
+
end
|
54
|
+
|
43
55
|
def wire_up_callbacks
|
44
56
|
register_callbacks(:before)
|
45
57
|
register_callbacks(:after)
|
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.pre5
|
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-09-
|
11
|
+
date: 2021-09-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|