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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e90a72439838b37ad270197654dd4f5b3f537aa2898af4c0ca14fa46697028b3
4
- data.tar.gz: 80ec851dcc2fc70844455a900e6eed90786e99c023ef4ee16c67f5f08ae16e9c
3
+ metadata.gz: ef4762edbead247433532ce39a4a655326a424caf6cc2fb93e11af0ed5b1e132
4
+ data.tar.gz: 395632d72dfa0383cf1e0abb3dfe976834785d8077e4582fbed7f6566efbcae8
5
5
  SHA512:
6
- metadata.gz: 7015cdfc3fa0344936ca9fec047504404b545eb79c11a6a9614c411fdba1bdb512376f9d7fcd9c9954bb0345ecf68fbfc1bd023d453bfe3dbc41cffc13056275
7
- data.tar.gz: 261be6fef738aa329d964c081fb452caae2a5b930aa7631e39721a69a39111d3bbe3849b05650f69b42da621b47a4928ddf176586208e5d7373b645893fee67b
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.3.gem
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?
@@ -23,7 +23,8 @@ class HotwireNative::V1::Ios::PathConfigurationsController < ActionController::B
23
23
  "^/users/edit$"
24
24
  ],
25
25
  "properties": {
26
- "context": "default"
26
+ "context": "default",
27
+ "pull_to_refresh_enabled": true
27
28
  }
28
29
  },
29
30
  {
@@ -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] ||= {}
@@ -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 = [ "title", "item" ]
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,5 @@
1
1
  import { BridgeComponent, BridgeElement } from "@hotwired/hotwire-native-bridge"
2
+ // aka UIMenu
2
3
 
3
4
  // Docs:
4
5
  // https://blog.corsego.com/hotwire-native-ui-menu-dropdown
@@ -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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HotwireNativeRails
4
- VERSION = "0.3.5"
4
+ VERSION = "0.4.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hotwire_native_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.5
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yaro Shm