hotwire_native_rails 0.3.5 → 0.4.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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/generators/hotwire_native/hotwire_native_generator.rb +1 -0
- data/lib/generators/hotwire_native/templates/controllers/hotwire_native/v1/ios/path_configurations_controller.rb +2 -1
- data/lib/generators/hotwire_native/templates/helpers/hotwire_native_helper.rb +4 -0
- data/lib/generators/hotwire_native/templates/javascript/controllers/bridge/menu_controller.js +5 -2
- data/lib/generators/hotwire_native/templates/javascript/controllers/bridge/nav_controller.js +1 -0
- data/lib/generators/hotwire_native/templates/javascript/controllers/bridge/overflow_menu_controller.js +3 -0
- data/lib/generators/hotwire_native/templates/javascript/controllers/bridge/review_prompt_controller.js +2 -0
- data/lib/hotwire_native_rails/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef4762edbead247433532ce39a4a655326a424caf6cc2fb93e11af0ed5b1e132
|
4
|
+
data.tar.gz: 395632d72dfa0383cf1e0abb3dfe976834785d8077e4582fbed7f6566efbcae8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45b8fe38cb9060b0bf09f430cef6996dd0b83b53890305ed1d87a11c2ba7cbda7f0e1745d3231b78e42b22f2cf1c24ae8d43531f8323aaf3e61ca0ec702f4950
|
7
|
+
data.tar.gz: 6c2c5c1a9282675ea337a7837a0355e69ebdfb901f2a2fde318d0ef8da60944f5ad2ff8244d1e957cd3e6d0cb4d6eeb9c2efb7cf55ce5c4790e480f9dc46380b
|
data/README.md
CHANGED
@@ -54,7 +54,7 @@ Make a release to rubygems:
|
|
54
54
|
# 2. zip the gem
|
55
55
|
gem build hotwire_native_rails.gemspec
|
56
56
|
# 3. push the zip to rubygems
|
57
|
-
gem push hotwire_native_rails-0.3.
|
57
|
+
gem push hotwire_native_rails-0.3.5.gem
|
58
58
|
```
|
59
59
|
|
60
60
|
- [Github source](https://github.com/yshmarov/hotwire_native_rails)
|
@@ -39,6 +39,7 @@ class HotwireNativeGenerator < Rails::Generators::Base
|
|
39
39
|
copy_file "javascript/controllers/bridge/form_controller.js", "app/javascript/controllers/bridge/form_controller.js"
|
40
40
|
copy_file "javascript/controllers/bridge/overflow_menu_controller.js", "app/javascript/controllers/bridge/overflow_menu_controller.js"
|
41
41
|
copy_file "javascript/controllers/bridge/nav_controller.js", "app/javascript/controllers/bridge/nav_controller.js"
|
42
|
+
copy_file "javascript/controllers/bridge/review_prompt_controller.js", "app/javascript/controllers/bridge/review_prompt_controller.js"
|
42
43
|
|
43
44
|
run "bin/importmap pin @hotwired/stimulus @hotwired/hotwire-native-bridge" if importmaps?
|
44
45
|
run "yarn add @hotwired/stimulus @hotwired/hotwire-native-bridge" if node?
|
@@ -52,6 +52,10 @@ module HotwireNativeHelper
|
|
52
52
|
end
|
53
53
|
end
|
54
54
|
|
55
|
+
# CAUTION: the submit button has to have a title
|
56
|
+
# BAD: f.submit
|
57
|
+
# GOOD: f.submit "Save"
|
58
|
+
# GOOD: f.submit t('.save')
|
55
59
|
def bridge_form_with(*, **options, &)
|
56
60
|
options[:html] ||= {}
|
57
61
|
options[:html][:data] ||= {}
|
data/lib/generators/hotwire_native/templates/javascript/controllers/bridge/menu_controller.js
CHANGED
@@ -1,12 +1,15 @@
|
|
1
1
|
import { BridgeComponent } from "@hotwired/hotwire-native-bridge"
|
2
2
|
import { BridgeElement } from "@hotwired/hotwire-native-bridge"
|
3
|
+
// aka Action Sheet
|
4
|
+
// open a menu by clicking an HTML element
|
5
|
+
|
3
6
|
// Source:
|
4
7
|
// https://github.com/hotwired/hotwire-native-demo/blob/main/public/javascript/controllers/bridge/menu_controller.js
|
5
8
|
// Docs:
|
6
9
|
// https://blog.corsego.com/hotwire-native-bridge-menu-component
|
7
10
|
export default class extends BridgeComponent {
|
8
11
|
static component = "menu"
|
9
|
-
static targets = [
|
12
|
+
static targets = ["title", "item"]
|
10
13
|
|
11
14
|
show(event) {
|
12
15
|
if (this.enabled) {
|
@@ -19,7 +22,7 @@ export default class extends BridgeComponent {
|
|
19
22
|
const title = new BridgeElement(this.titleTarget).title
|
20
23
|
const items = this.makeMenuItems(this.itemTargets)
|
21
24
|
|
22
|
-
this.send("display", { title, items }, message =>
|
25
|
+
this.send("display", { title, items }, message => {
|
23
26
|
const selectedIndex = message.data.selectedIndex
|
24
27
|
const selectedItem = new BridgeElement(this.itemTargets[selectedIndex])
|
25
28
|
|
@@ -1,4 +1,7 @@
|
|
1
1
|
import { BridgeComponent } from "@hotwired/hotwire-native-bridge"
|
2
|
+
// aka Action Sheet
|
3
|
+
// open a menu by clicking a Native button
|
4
|
+
|
2
5
|
// Source:
|
3
6
|
// https://github.com/hotwired/hotwire-native-demo/blob/main/public/javascript/controllers/bridge/overflow_menu_controller.js
|
4
7
|
// Docs:
|
@@ -1,6 +1,8 @@
|
|
1
1
|
import { BridgeComponent } from "@hotwired/hotwire-native-bridge"
|
2
2
|
// Docs:
|
3
3
|
// https://blog.corsego.com/hotwire-native-leave-a-review-bridge-component
|
4
|
+
|
5
|
+
// <meta data-controller="bridge--review-prompt" />
|
4
6
|
export default class extends BridgeComponent {
|
5
7
|
static component = "review-prompt"
|
6
8
|
|