stimulus_reflex 3.3.0 → 3.4.0.pre0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of stimulus_reflex might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +55 -8
- data/Gemfile.lock +66 -65
- data/README.md +5 -2
- data/lib/generators/stimulus_reflex/config_generator.rb +14 -0
- data/lib/generators/{stimulus_reflex_generator.rb → stimulus_reflex/stimulus_reflex_generator.rb} +0 -0
- data/lib/generators/{templates → stimulus_reflex/templates}/app/javascript/controllers/%file_name%_controller.js.tt +0 -0
- data/lib/generators/{templates → stimulus_reflex/templates}/app/javascript/controllers/application_controller.js.tt +0 -0
- data/lib/generators/{templates → stimulus_reflex/templates}/app/reflexes/%file_name%_reflex.rb.tt +0 -0
- data/lib/generators/{templates → stimulus_reflex/templates}/app/reflexes/application_reflex.rb.tt +0 -0
- data/lib/generators/stimulus_reflex/templates/config/initializers/stimulus_reflex.rb +9 -0
- data/lib/stimulus_reflex.rb +1 -2
- data/lib/stimulus_reflex/broadcasters/broadcaster.rb +3 -7
- data/lib/stimulus_reflex/broadcasters/page_broadcaster.rb +2 -2
- data/lib/stimulus_reflex/broadcasters/selector_broadcaster.rb +2 -2
- data/lib/stimulus_reflex/configuration.rb +24 -0
- data/lib/stimulus_reflex/element.rb +8 -0
- data/lib/stimulus_reflex/reflex.rb +21 -18
- data/lib/stimulus_reflex/sanity_checker.rb +36 -18
- data/lib/stimulus_reflex/version.rb +1 -1
- data/lib/tasks/stimulus_reflex/install.rake +11 -8
- data/package.json +63 -0
- data/stimulus_reflex.gemspec +40 -0
- data/tags +98 -0
- data/test/generators/stimulus_reflex_generator_test.rb +1 -0
- data/test/tmp/app/reflexes/application_reflex.rb +12 -0
- data/test/tmp/app/reflexes/user_reflex.rb +33 -0
- data/yarn.lock +6261 -0
- metadata +25 -15
- data/lib/stimulus_reflex/channel.rb +0 -110
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81b721f2742cc09bd39632481e120723205409806d86a0e98e99954fc10b4974
|
4
|
+
data.tar.gz: ca698e3f7b6f3c2fe740429313b166605ad3bab37a74dae4b4fadc4f7e983a21
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 88c0a588d1e9e538bf53ad2a40cfcd504d4715ee9cef23c0aaf8a41909c8cd28243030e02ea9b9daf9c4dc56874e1c7f34decf082e21ea18195cf9523c830dc6
|
7
|
+
data.tar.gz: c021b8e46203b36abb2386ad50f999bd05c396e0bec0ba943a667ceccc213ea24d6f3ac310c0eff922c518165b3879dcbd3ddae320c78b78821529514ee5d021
|
data/CHANGELOG.md
CHANGED
@@ -2,7 +2,57 @@
|
|
2
2
|
|
3
3
|
## [Unreleased](https://github.com/hopsoft/stimulus_reflex/tree/HEAD)
|
4
4
|
|
5
|
-
[Full Changelog](https://github.com/hopsoft/stimulus_reflex/compare/v3.3.0
|
5
|
+
[Full Changelog](https://github.com/hopsoft/stimulus_reflex/compare/v3.3.0...HEAD)
|
6
|
+
|
7
|
+
**Implemented enhancements:**
|
8
|
+
|
9
|
+
- Move StimulusReflex::Channel to app/ and allow for a configurable parent channel [\#346](https://github.com/hopsoft/stimulus_reflex/pull/346) ([leastbad](https://github.com/leastbad))
|
10
|
+
- tab isolation mode v2 [\#335](https://github.com/hopsoft/stimulus_reflex/pull/335) ([leastbad](https://github.com/leastbad))
|
11
|
+
- Delegate flash to the request [\#334](https://github.com/hopsoft/stimulus_reflex/pull/334) ([hopsoft](https://github.com/hopsoft))
|
12
|
+
- Opt-in form serialization & params overriding [\#325](https://github.com/hopsoft/stimulus_reflex/pull/325) ([s-s](https://github.com/s-s))
|
13
|
+
- Exit on failed sanity check, provide config to skip exit [\#318](https://github.com/hopsoft/stimulus_reflex/pull/318) ([RolandStuder](https://github.com/RolandStuder))
|
14
|
+
|
15
|
+
**Fixed bugs:**
|
16
|
+
|
17
|
+
- Console exception when reflex updates a page that didn't trigger the update [\#336](https://github.com/hopsoft/stimulus_reflex/issues/336)
|
18
|
+
- AlpineJS components not reinitalised after reflex [\#329](https://github.com/hopsoft/stimulus_reflex/issues/329)
|
19
|
+
- Encoding changes from UTF-8 to ASCII-8BIT [\#202](https://github.com/hopsoft/stimulus_reflex/issues/202)
|
20
|
+
|
21
|
+
**Closed issues:**
|
22
|
+
|
23
|
+
- ActionController::RoutingError with Rails 6 Engines [\#342](https://github.com/hopsoft/stimulus_reflex/issues/342)
|
24
|
+
- Wrong input name parsing [\#321](https://github.com/hopsoft/stimulus_reflex/issues/321)
|
25
|
+
- Stimulus' controllers are not reconnecting after reflex, why? [\#314](https://github.com/hopsoft/stimulus_reflex/issues/314)
|
26
|
+
- Rendering issue [\#289](https://github.com/hopsoft/stimulus_reflex/issues/289)
|
27
|
+
- Documentation Request for a Rails 6.x app with 5.2 defaults [\#265](https://github.com/hopsoft/stimulus_reflex/issues/265)
|
28
|
+
|
29
|
+
**Merged pull requests:**
|
30
|
+
|
31
|
+
- \[docs\] StimulusReflex.debug= on left hand side [\#348](https://github.com/hopsoft/stimulus_reflex/pull/348) ([drnic](https://github.com/drnic))
|
32
|
+
- Fix page morphs inside Rails engines [\#344](https://github.com/hopsoft/stimulus_reflex/pull/344) ([leastbad](https://github.com/leastbad))
|
33
|
+
- Use Webpacker folder if available [\#343](https://github.com/hopsoft/stimulus_reflex/pull/343) ([coorasse](https://github.com/coorasse))
|
34
|
+
- feat: create a more robust package.json [\#340](https://github.com/hopsoft/stimulus_reflex/pull/340) ([ParamagicDev](https://github.com/ParamagicDev))
|
35
|
+
- Make StimulusReflex configurable and add an initializer [\#339](https://github.com/hopsoft/stimulus_reflex/pull/339) ([RolandStuder](https://github.com/RolandStuder))
|
36
|
+
- Aliases method\_name to action\_name [\#338](https://github.com/hopsoft/stimulus_reflex/pull/338) ([obie](https://github.com/obie))
|
37
|
+
- remove isolate concept and make behavior default [\#332](https://github.com/hopsoft/stimulus_reflex/pull/332) ([leastbad](https://github.com/leastbad))
|
38
|
+
- add signed/unsigned accessors to element [\#330](https://github.com/hopsoft/stimulus_reflex/pull/330) ([joshleblanc](https://github.com/joshleblanc))
|
39
|
+
- merge environment into ApplicationController and descendants [\#328](https://github.com/hopsoft/stimulus_reflex/pull/328) ([leastbad](https://github.com/leastbad))
|
40
|
+
- Move form-data merge logic to the server-side [\#327](https://github.com/hopsoft/stimulus_reflex/pull/327) ([marcoroth](https://github.com/marcoroth))
|
41
|
+
- fix for PR\#317 which was preventing server messages [\#326](https://github.com/hopsoft/stimulus_reflex/pull/326) ([leastbad](https://github.com/leastbad))
|
42
|
+
- introduce tab isolation mode [\#324](https://github.com/hopsoft/stimulus_reflex/pull/324) ([leastbad](https://github.com/leastbad))
|
43
|
+
- Force request encodings to be UTF-8 instead of ASCII-8BIT after a reflex [\#320](https://github.com/hopsoft/stimulus_reflex/pull/320) ([marcoroth](https://github.com/marcoroth))
|
44
|
+
- Append short section about resetting a form [\#319](https://github.com/hopsoft/stimulus_reflex/pull/319) ([julianrubisch](https://github.com/julianrubisch))
|
45
|
+
- lifecycle refactor: introduce new finalize stage, global reflexes dictionary [\#317](https://github.com/hopsoft/stimulus_reflex/pull/317) ([leastbad](https://github.com/leastbad))
|
46
|
+
- Update events.md [\#316](https://github.com/hopsoft/stimulus_reflex/pull/316) ([gahia](https://github.com/gahia))
|
47
|
+
- Proposal: Reduce bundle size and add a bundler for Stimulus Reflex javascript [\#315](https://github.com/hopsoft/stimulus_reflex/pull/315) ([ParamagicDev](https://github.com/ParamagicDev))
|
48
|
+
|
49
|
+
## [v3.3.0](https://github.com/hopsoft/stimulus_reflex/tree/v3.3.0) (2020-09-22)
|
50
|
+
|
51
|
+
[Full Changelog](https://github.com/hopsoft/stimulus_reflex/compare/v3.3.0.pre6...v3.3.0)
|
52
|
+
|
53
|
+
## [v3.3.0.pre6](https://github.com/hopsoft/stimulus_reflex/tree/v3.3.0.pre6) (2020-09-20)
|
54
|
+
|
55
|
+
[Full Changelog](https://github.com/hopsoft/stimulus_reflex/compare/v3.3.0.pre5...v3.3.0.pre6)
|
6
56
|
|
7
57
|
**Implemented enhancements:**
|
8
58
|
|
@@ -197,10 +247,6 @@
|
|
197
247
|
|
198
248
|
[Full Changelog](https://github.com/hopsoft/stimulus_reflex/compare/v3.2.2.pre0...v3.2.2.pre1)
|
199
249
|
|
200
|
-
**Implemented enhancements:**
|
201
|
-
|
202
|
-
- Make element even more user friendly [\#210](https://github.com/hopsoft/stimulus_reflex/pull/210) ([hopsoft](https://github.com/hopsoft))
|
203
|
-
|
204
250
|
**Fixed bugs:**
|
205
251
|
|
206
252
|
- Session lost after throw :abort [\#221](https://github.com/hopsoft/stimulus_reflex/issues/221)
|
@@ -219,6 +265,7 @@
|
|
219
265
|
- Add a halted lifecycle event [\#190](https://github.com/hopsoft/stimulus_reflex/issues/190)
|
220
266
|
- Allow extractElementAttributes to use a checkbox list [\#147](https://github.com/hopsoft/stimulus_reflex/issues/147)
|
221
267
|
- reflex\_name restriction loosening [\#212](https://github.com/hopsoft/stimulus_reflex/pull/212) ([leastbad](https://github.com/leastbad))
|
268
|
+
- Make element even more user friendly [\#210](https://github.com/hopsoft/stimulus_reflex/pull/210) ([hopsoft](https://github.com/hopsoft))
|
222
269
|
- Form parameters [\#204](https://github.com/hopsoft/stimulus_reflex/pull/204) ([jasoncharnes](https://github.com/jasoncharnes))
|
223
270
|
- Map hashes in incoming arguments using with\_indifferent\_access [\#203](https://github.com/hopsoft/stimulus_reflex/pull/203) ([jaredcwhite](https://github.com/jaredcwhite))
|
224
271
|
- Combine dataset with data-attributes from parent elements on reflex call [\#200](https://github.com/hopsoft/stimulus_reflex/pull/200) ([marcoroth](https://github.com/marcoroth))
|
@@ -244,7 +291,7 @@
|
|
244
291
|
- Loosen Rails requirement to 5.2 with instructions [\#205](https://github.com/hopsoft/stimulus_reflex/pull/205) ([jasoncharnes](https://github.com/jasoncharnes))
|
245
292
|
- Fix undefined is not an object for Object.keys in log.js [\#201](https://github.com/hopsoft/stimulus_reflex/pull/201) ([marcoroth](https://github.com/marcoroth))
|
246
293
|
- Small typo/grammar fix in quickstart doc. [\#198](https://github.com/hopsoft/stimulus_reflex/pull/198) ([acoffman](https://github.com/acoffman))
|
247
|
-
- Add halted lifecycle event [\#193](https://github.com/hopsoft/stimulus_reflex/pull/193) ([
|
294
|
+
- Add halted lifecycle event [\#193](https://github.com/hopsoft/stimulus_reflex/pull/193) ([websebdev](https://github.com/websebdev))
|
248
295
|
- 147 extract multiple checkbox values [\#175](https://github.com/hopsoft/stimulus_reflex/pull/175) ([julianrubisch](https://github.com/julianrubisch))
|
249
296
|
|
250
297
|
## [v3.2.1](https://github.com/hopsoft/stimulus_reflex/tree/v3.2.1) (2020-05-09)
|
@@ -283,11 +330,12 @@
|
|
283
330
|
- Replace uuid4 dependency with function in repo [\#181](https://github.com/hopsoft/stimulus_reflex/pull/181) ([jonathan-s](https://github.com/jonathan-s))
|
284
331
|
- Allow channel exceptions to be rescuable [\#180](https://github.com/hopsoft/stimulus_reflex/pull/180) ([dark-panda](https://github.com/dark-panda))
|
285
332
|
- add console log messages for every reflex call [\#163](https://github.com/hopsoft/stimulus_reflex/pull/163) ([marcoroth](https://github.com/marcoroth))
|
286
|
-
- add reflex callbacks [\#160](https://github.com/hopsoft/stimulus_reflex/pull/160) ([
|
333
|
+
- add reflex callbacks [\#160](https://github.com/hopsoft/stimulus_reflex/pull/160) ([websebdev](https://github.com/websebdev))
|
287
334
|
|
288
335
|
**Fixed bugs:**
|
289
336
|
|
290
337
|
- Pluralize the generated class name, so that will match with the file name [\#178](https://github.com/hopsoft/stimulus_reflex/pull/178) ([darkrubyist](https://github.com/darkrubyist))
|
338
|
+
- Remove unneeded registerConsumer logic [\#158](https://github.com/hopsoft/stimulus_reflex/pull/158) ([hopsoft](https://github.com/hopsoft))
|
291
339
|
|
292
340
|
**Closed issues:**
|
293
341
|
|
@@ -341,7 +389,6 @@
|
|
341
389
|
**Fixed bugs:**
|
342
390
|
|
343
391
|
- Unable to register the ActionCable Consumer [\#156](https://github.com/hopsoft/stimulus_reflex/issues/156)
|
344
|
-
- Remove unneeded registerConsumer logic [\#158](https://github.com/hopsoft/stimulus_reflex/pull/158) ([hopsoft](https://github.com/hopsoft))
|
345
392
|
|
346
393
|
**Closed issues:**
|
347
394
|
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
stimulus_reflex (3.
|
4
|
+
stimulus_reflex (3.4.0.pre0)
|
5
5
|
cable_ready (>= 4.3.0)
|
6
6
|
nokogiri
|
7
7
|
rack
|
@@ -11,56 +11,56 @@ PATH
|
|
11
11
|
GEM
|
12
12
|
remote: https://rubygems.org/
|
13
13
|
specs:
|
14
|
-
actioncable (6.0.3.
|
15
|
-
actionpack (= 6.0.3.
|
14
|
+
actioncable (6.0.3.4)
|
15
|
+
actionpack (= 6.0.3.4)
|
16
16
|
nio4r (~> 2.0)
|
17
17
|
websocket-driver (>= 0.6.1)
|
18
|
-
actionmailbox (6.0.3.
|
19
|
-
actionpack (= 6.0.3.
|
20
|
-
activejob (= 6.0.3.
|
21
|
-
activerecord (= 6.0.3.
|
22
|
-
activestorage (= 6.0.3.
|
23
|
-
activesupport (= 6.0.3.
|
18
|
+
actionmailbox (6.0.3.4)
|
19
|
+
actionpack (= 6.0.3.4)
|
20
|
+
activejob (= 6.0.3.4)
|
21
|
+
activerecord (= 6.0.3.4)
|
22
|
+
activestorage (= 6.0.3.4)
|
23
|
+
activesupport (= 6.0.3.4)
|
24
24
|
mail (>= 2.7.1)
|
25
|
-
actionmailer (6.0.3.
|
26
|
-
actionpack (= 6.0.3.
|
27
|
-
actionview (= 6.0.3.
|
28
|
-
activejob (= 6.0.3.
|
25
|
+
actionmailer (6.0.3.4)
|
26
|
+
actionpack (= 6.0.3.4)
|
27
|
+
actionview (= 6.0.3.4)
|
28
|
+
activejob (= 6.0.3.4)
|
29
29
|
mail (~> 2.5, >= 2.5.4)
|
30
30
|
rails-dom-testing (~> 2.0)
|
31
|
-
actionpack (6.0.3.
|
32
|
-
actionview (= 6.0.3.
|
33
|
-
activesupport (= 6.0.3.
|
31
|
+
actionpack (6.0.3.4)
|
32
|
+
actionview (= 6.0.3.4)
|
33
|
+
activesupport (= 6.0.3.4)
|
34
34
|
rack (~> 2.0, >= 2.0.8)
|
35
35
|
rack-test (>= 0.6.3)
|
36
36
|
rails-dom-testing (~> 2.0)
|
37
37
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
38
|
-
actiontext (6.0.3.
|
39
|
-
actionpack (= 6.0.3.
|
40
|
-
activerecord (= 6.0.3.
|
41
|
-
activestorage (= 6.0.3.
|
42
|
-
activesupport (= 6.0.3.
|
38
|
+
actiontext (6.0.3.4)
|
39
|
+
actionpack (= 6.0.3.4)
|
40
|
+
activerecord (= 6.0.3.4)
|
41
|
+
activestorage (= 6.0.3.4)
|
42
|
+
activesupport (= 6.0.3.4)
|
43
43
|
nokogiri (>= 1.8.5)
|
44
|
-
actionview (6.0.3.
|
45
|
-
activesupport (= 6.0.3.
|
44
|
+
actionview (6.0.3.4)
|
45
|
+
activesupport (= 6.0.3.4)
|
46
46
|
builder (~> 3.1)
|
47
47
|
erubi (~> 1.4)
|
48
48
|
rails-dom-testing (~> 2.0)
|
49
49
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
50
|
-
activejob (6.0.3.
|
51
|
-
activesupport (= 6.0.3.
|
50
|
+
activejob (6.0.3.4)
|
51
|
+
activesupport (= 6.0.3.4)
|
52
52
|
globalid (>= 0.3.6)
|
53
|
-
activemodel (6.0.3.
|
54
|
-
activesupport (= 6.0.3.
|
55
|
-
activerecord (6.0.3.
|
56
|
-
activemodel (= 6.0.3.
|
57
|
-
activesupport (= 6.0.3.
|
58
|
-
activestorage (6.0.3.
|
59
|
-
actionpack (= 6.0.3.
|
60
|
-
activejob (= 6.0.3.
|
61
|
-
activerecord (= 6.0.3.
|
53
|
+
activemodel (6.0.3.4)
|
54
|
+
activesupport (= 6.0.3.4)
|
55
|
+
activerecord (6.0.3.4)
|
56
|
+
activemodel (= 6.0.3.4)
|
57
|
+
activesupport (= 6.0.3.4)
|
58
|
+
activestorage (6.0.3.4)
|
59
|
+
actionpack (= 6.0.3.4)
|
60
|
+
activejob (= 6.0.3.4)
|
61
|
+
activerecord (= 6.0.3.4)
|
62
62
|
marcel (~> 0.3.1)
|
63
|
-
activesupport (6.0.3.
|
63
|
+
activesupport (6.0.3.4)
|
64
64
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
65
65
|
i18n (>= 0.7, < 2)
|
66
66
|
minitest (~> 5.1)
|
@@ -94,7 +94,7 @@ GEM
|
|
94
94
|
nokogiri (1.10.10)
|
95
95
|
mini_portile2 (~> 2.4.0)
|
96
96
|
parallel (1.19.2)
|
97
|
-
parser (2.7.
|
97
|
+
parser (2.7.2.0)
|
98
98
|
ast (~> 2.4.1)
|
99
99
|
pry (0.12.2)
|
100
100
|
coderay (~> 1.1.0)
|
@@ -104,50 +104,51 @@ GEM
|
|
104
104
|
rack (2.2.3)
|
105
105
|
rack-test (1.1.0)
|
106
106
|
rack (>= 1.0, < 3)
|
107
|
-
rails (6.0.3.
|
108
|
-
actioncable (= 6.0.3.
|
109
|
-
actionmailbox (= 6.0.3.
|
110
|
-
actionmailer (= 6.0.3.
|
111
|
-
actionpack (= 6.0.3.
|
112
|
-
actiontext (= 6.0.3.
|
113
|
-
actionview (= 6.0.3.
|
114
|
-
activejob (= 6.0.3.
|
115
|
-
activemodel (= 6.0.3.
|
116
|
-
activerecord (= 6.0.3.
|
117
|
-
activestorage (= 6.0.3.
|
118
|
-
activesupport (= 6.0.3.
|
107
|
+
rails (6.0.3.4)
|
108
|
+
actioncable (= 6.0.3.4)
|
109
|
+
actionmailbox (= 6.0.3.4)
|
110
|
+
actionmailer (= 6.0.3.4)
|
111
|
+
actionpack (= 6.0.3.4)
|
112
|
+
actiontext (= 6.0.3.4)
|
113
|
+
actionview (= 6.0.3.4)
|
114
|
+
activejob (= 6.0.3.4)
|
115
|
+
activemodel (= 6.0.3.4)
|
116
|
+
activerecord (= 6.0.3.4)
|
117
|
+
activestorage (= 6.0.3.4)
|
118
|
+
activesupport (= 6.0.3.4)
|
119
119
|
bundler (>= 1.3.0)
|
120
|
-
railties (= 6.0.3.
|
120
|
+
railties (= 6.0.3.4)
|
121
121
|
sprockets-rails (>= 2.0.0)
|
122
122
|
rails-dom-testing (2.0.3)
|
123
123
|
activesupport (>= 4.2.0)
|
124
124
|
nokogiri (>= 1.6)
|
125
125
|
rails-html-sanitizer (1.3.0)
|
126
126
|
loofah (~> 2.3)
|
127
|
-
railties (6.0.3.
|
128
|
-
actionpack (= 6.0.3.
|
129
|
-
activesupport (= 6.0.3.
|
127
|
+
railties (6.0.3.4)
|
128
|
+
actionpack (= 6.0.3.4)
|
129
|
+
activesupport (= 6.0.3.4)
|
130
130
|
method_source
|
131
131
|
rake (>= 0.8.7)
|
132
132
|
thor (>= 0.20.3, < 2.0)
|
133
133
|
rainbow (3.0.0)
|
134
134
|
rake (13.0.1)
|
135
135
|
redis (4.2.2)
|
136
|
-
regexp_parser (1.
|
136
|
+
regexp_parser (1.8.2)
|
137
137
|
rexml (3.2.4)
|
138
|
-
rubocop (0.
|
138
|
+
rubocop (1.0.0)
|
139
139
|
parallel (~> 1.10)
|
140
|
-
parser (>= 2.7.1.
|
140
|
+
parser (>= 2.7.1.5)
|
141
141
|
rainbow (>= 2.2.2, < 4.0)
|
142
|
-
regexp_parser (>= 1.
|
142
|
+
regexp_parser (>= 1.8)
|
143
143
|
rexml
|
144
|
-
rubocop-ast (>= 0.
|
144
|
+
rubocop-ast (>= 0.6.0)
|
145
145
|
ruby-progressbar (~> 1.7)
|
146
146
|
unicode-display_width (>= 1.4.0, < 2.0)
|
147
|
-
rubocop-ast (
|
148
|
-
parser (>= 2.7.1.
|
149
|
-
rubocop-performance (1.
|
150
|
-
rubocop (>= 0.
|
147
|
+
rubocop-ast (1.1.0)
|
148
|
+
parser (>= 2.7.1.5)
|
149
|
+
rubocop-performance (1.8.1)
|
150
|
+
rubocop (>= 0.87.0)
|
151
|
+
rubocop-ast (>= 0.4.0)
|
151
152
|
ruby-progressbar (1.10.1)
|
152
153
|
sprockets (4.0.2)
|
153
154
|
concurrent-ruby (~> 1.0)
|
@@ -156,9 +157,9 @@ GEM
|
|
156
157
|
actionpack (>= 4.0)
|
157
158
|
activesupport (>= 4.0)
|
158
159
|
sprockets (>= 3.0.0)
|
159
|
-
standard (0.
|
160
|
-
rubocop (
|
161
|
-
rubocop-performance (
|
160
|
+
standard (0.8.1)
|
161
|
+
rubocop (= 1.0.0)
|
162
|
+
rubocop-performance (= 1.8.1)
|
162
163
|
standardrb (1.0.0)
|
163
164
|
standard
|
164
165
|
thor (1.0.1)
|
@@ -169,7 +170,7 @@ GEM
|
|
169
170
|
websocket-driver (0.7.3)
|
170
171
|
websocket-extensions (>= 0.1.0)
|
171
172
|
websocket-extensions (0.1.5)
|
172
|
-
zeitwerk (2.4.
|
173
|
+
zeitwerk (2.4.1)
|
173
174
|
|
174
175
|
PLATFORMS
|
175
176
|
ruby
|
data/README.md
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
<img alt="License: MIT" src="https://img.shields.io/badge/license-MIT-brightgreen.svg" target="_blank" />
|
12
12
|
</a>
|
13
13
|
<a href="http://blog.codinghorror.com/the-best-code-is-no-code-at-all/" target="_blank">
|
14
|
-
<img alt="Lines of Code" src="https://img.shields.io/badge/lines_of_code-
|
14
|
+
<img alt="Lines of Code" src="https://img.shields.io/badge/lines_of_code-1322-brightgreen.svg?style=flat" />
|
15
15
|
</a>
|
16
16
|
<a href="https://docs.stimulusreflex.com/" target="_blank">
|
17
17
|
<img alt="Documentation" src="https://img.shields.io/badge/documentation-yes-brightgreen.svg" />
|
@@ -27,6 +27,9 @@
|
|
27
27
|
<img alt="JavaScript Code Style" src="https://img.shields.io/badge/JavaScript_Code_Style-prettier_standard-ff69b4.svg" />
|
28
28
|
</a>
|
29
29
|
<br />
|
30
|
+
<a href="https://www.codacy.com/manual/hopsoft/stimulus_reflex/dashboard?utm_source=github.com&utm_medium=referral&utm_content=hopsoft/stimulus_reflex&utm_campaign=Badge_Grade" target="_blank">
|
31
|
+
<img alt="Code Quality" src="https://app.codacy.com/project/badge/Grade/d1d72a7060f5467b8696884351cf477f"/>
|
32
|
+
</a>
|
30
33
|
<a href="https://codeclimate.com/github/hopsoft/stimulus_reflex/maintainability" target="_blank">
|
31
34
|
<img alt="Maintainability" src="https://api.codeclimate.com/v1/badges/2b24fdbd1ae37a24bedb/maintainability" />
|
32
35
|
</a>
|
@@ -74,7 +77,7 @@ This project strives to live up to the vision outlined in [The Rails Doctrine](h
|
|
74
77
|
|
75
78
|
## 👩👩👧 Discord Community
|
76
79
|
|
77
|
-
Please join over
|
80
|
+
Please join over 600 of us on [Discord](https://discord.gg/XveN625) for support getting started, as well as active discussions around Rails, StimulusJS and CableReady.
|
78
81
|
|
79
82
|
![](https://img.shields.io/discord/629472241427415060)
|
80
83
|
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "rails/generators"
|
4
|
+
|
5
|
+
module StimulusReflex
|
6
|
+
class ConfigGenerator < Rails::Generators::Base
|
7
|
+
desc "Creates an StimulusReflex configuration file in config/initializers"
|
8
|
+
source_root File.expand_path("templates", __dir__)
|
9
|
+
|
10
|
+
def copy_config_file
|
11
|
+
copy_file "config/initializers/stimulus_reflex.rb"
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
data/lib/generators/{stimulus_reflex_generator.rb → stimulus_reflex/stimulus_reflex_generator.rb}
RENAMED
File without changes
|
File without changes
|
File without changes
|
data/lib/generators/{templates → stimulus_reflex/templates}/app/reflexes/%file_name%_reflex.rb.tt
RENAMED
File without changes
|
data/lib/generators/{templates → stimulus_reflex/templates}/app/reflexes/application_reflex.rb.tt
RENAMED
File without changes
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
StimulusReflex.configure do |config|
|
4
|
+
# Enable/disable whether startup should be aborted when the sanity checks fail
|
5
|
+
# config.exit_on_failed_sanity_checks = true
|
6
|
+
|
7
|
+
# Override the parent class that the StimulusReflex ActionCable channel inherits from
|
8
|
+
# config.parent_channel = "ApplicationCable::Channel"
|
9
|
+
end
|
data/lib/stimulus_reflex.rb
CHANGED
@@ -9,15 +9,14 @@ require "action_cable"
|
|
9
9
|
require "nokogiri"
|
10
10
|
require "cable_ready"
|
11
11
|
require "stimulus_reflex/version"
|
12
|
+
require "stimulus_reflex/configuration"
|
12
13
|
require "stimulus_reflex/reflex"
|
13
14
|
require "stimulus_reflex/element"
|
14
|
-
require "stimulus_reflex/channel"
|
15
15
|
require "stimulus_reflex/sanity_checker"
|
16
16
|
require "stimulus_reflex/broadcasters/broadcaster"
|
17
17
|
require "stimulus_reflex/broadcasters/nothing_broadcaster"
|
18
18
|
require "stimulus_reflex/broadcasters/page_broadcaster"
|
19
19
|
require "stimulus_reflex/broadcasters/selector_broadcaster"
|
20
|
-
require "generators/stimulus_reflex_generator"
|
21
20
|
|
22
21
|
module StimulusReflex
|
23
22
|
class Engine < Rails::Engine
|
@@ -24,22 +24,18 @@ module StimulusReflex
|
|
24
24
|
false
|
25
25
|
end
|
26
26
|
|
27
|
-
def
|
27
|
+
def broadcast_message(subject:, body: nil, data: {}, error: nil)
|
28
28
|
logger.error "\e[31m#{body}\e[0m" if subject == "error"
|
29
29
|
cable_ready[stream_name].dispatch_event(
|
30
30
|
name: "stimulus-reflex:server-message",
|
31
31
|
detail: {
|
32
32
|
reflexId: data["reflexId"],
|
33
33
|
stimulus_reflex: data.merge(
|
34
|
-
|
35
|
-
server_message: {subject: subject, body:
|
34
|
+
morph: to_sym,
|
35
|
+
server_message: {subject: subject, body: error&.to_s}
|
36
36
|
)
|
37
37
|
}
|
38
38
|
)
|
39
|
-
end
|
40
|
-
|
41
|
-
def broadcast_message(subject:, body: nil, data: {})
|
42
|
-
enqueue_message subject: subject, body: body, data: data
|
43
39
|
cable_ready.broadcast
|
44
40
|
end
|
45
41
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
module StimulusReflex
|
4
4
|
class PageBroadcaster < Broadcaster
|
5
5
|
def broadcast(selectors, data)
|
6
|
-
reflex.controller.process reflex.
|
6
|
+
reflex.controller.process reflex.params[:action]
|
7
7
|
page_html = reflex.controller.response.body
|
8
8
|
|
9
9
|
return unless page_html.present?
|
@@ -18,7 +18,7 @@ module StimulusReflex
|
|
18
18
|
children_only: true,
|
19
19
|
permanent_attribute_name: permanent_attribute_name,
|
20
20
|
stimulus_reflex: data.merge({
|
21
|
-
|
21
|
+
morph: to_sym
|
22
22
|
})
|
23
23
|
)
|
24
24
|
end
|