turbo_reflex 0.0.28 → 0.0.30
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/Gemfile.lock +23 -18
- data/README.md +6 -4
- data/app/assets/builds/turbo_reflex.js +6 -1
- data/app/assets/builds/turbo_reflex.js.map +4 -4
- data/app/javascript/index.js +4 -1
- data/lib/turbo_reflex/base.rb +4 -1
- data/lib/turbo_reflex/engine.rb +1 -0
- data/lib/turbo_reflex/version.rb +1 -1
- data/lib/turbo_reflex.rb +1 -0
- data/package.json +7 -5
- data/tags +17624 -2047
- data/turbo_reflex.gemspec +2 -2
- data/yarn.lock +189 -157
- metadata +5 -5
data/app/javascript/index.js
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
import 'turbo_ready'
|
1
2
|
import './turbo'
|
2
3
|
import schema from './schema'
|
3
4
|
import { dispatch, allEvents as events } from './events'
|
@@ -74,7 +75,7 @@ delegates.register('change', [
|
|
74
75
|
delegates.register('submit', [`form[${schema.reflexAttribute}]`])
|
75
76
|
delegates.register('click', [`[${schema.reflexAttribute}]`])
|
76
77
|
|
77
|
-
|
78
|
+
self.TurboReflex = {
|
78
79
|
logger,
|
79
80
|
schema,
|
80
81
|
registerEventDelegate: delegates.register,
|
@@ -92,3 +93,5 @@ export default self.TurboReflex = {
|
|
92
93
|
return state.delta
|
93
94
|
}
|
94
95
|
}
|
96
|
+
|
97
|
+
export default self.TurboReflex
|
data/lib/turbo_reflex/base.rb
CHANGED
@@ -17,11 +17,14 @@ require_relative "attribute_set"
|
|
17
17
|
# * render ...................... Renders Rails templates, partials, etc. (doesn't halt controller request handling)
|
18
18
|
# * render_response ............. Renders a full controller response
|
19
19
|
# * renderer .................... An ActionController::Renderer
|
20
|
-
# * prevent_controller_action ... Prevents the rails controller/action from running (i.e. the reflex handles the response entirely)
|
21
20
|
# * turbo_stream ................ A Turbo Stream TagBuilder
|
22
21
|
# * turbo_streams ............... A list of Turbo Streams to append to the response (also aliased as streams)
|
23
22
|
# * state ....................... An object that stores ephemeral `state`
|
24
23
|
#
|
24
|
+
# They also have access to the following class methods:
|
25
|
+
#
|
26
|
+
# * prevent_controller_action ... Prevents the rails controller/action from running (i.e. the reflex handles the response entirely)
|
27
|
+
#
|
25
28
|
class TurboReflex::Base
|
26
29
|
class << self
|
27
30
|
def preventers
|
data/lib/turbo_reflex/engine.rb
CHANGED
data/lib/turbo_reflex/version.rb
CHANGED
data/lib/turbo_reflex.rb
CHANGED
data/package.json
CHANGED
@@ -1,23 +1,25 @@
|
|
1
1
|
{
|
2
2
|
"name": "turbo_reflex",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.29",
|
4
4
|
"description": "Reflexes for Turbo Frames that help you build robust reactive applications",
|
5
5
|
"main": "app/javascript/index.js",
|
6
6
|
"repository": "https://github.com/hopsoft/turbo_reflex",
|
7
7
|
"author": "Nate Hopkins (hopsoft) <natehop@gmail.com>",
|
8
8
|
"license": "MIT",
|
9
|
+
"dependencies": {
|
10
|
+
"turbo_ready": ">= 0.1.4"
|
11
|
+
},
|
9
12
|
"peerDependencies": {
|
10
|
-
"@hotwired/turbo-rails": ">= 7.
|
11
|
-
"turbo_ready": ">= 0.1"
|
13
|
+
"@hotwired/turbo-rails": ">= 7.2.0"
|
12
14
|
},
|
13
15
|
"devDependencies": {
|
14
|
-
"esbuild": "^0.
|
16
|
+
"esbuild": "^0.16.3",
|
15
17
|
"eslint": "^8.19.0",
|
16
18
|
"flowbite": "^1.5.3",
|
17
19
|
"prettier-standard": "^16.4.1",
|
18
20
|
"rustywind": "^0.15.1"
|
19
21
|
},
|
20
22
|
"scripts": {
|
21
|
-
"build": "esbuild app/javascript/index.js --bundle --minify --sourcemap --format=esm --outfile=app/assets/builds/turbo_reflex.js"
|
23
|
+
"build": "esbuild app/javascript/index.js --bundle --minify --sourcemap --format=esm --target=es2017 --analyze --outfile=app/assets/builds/turbo_reflex.js"
|
22
24
|
}
|
23
25
|
}
|