hotwire_native_rails 0.3.4 → 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: a96d149563790f2885469e0917ffc47b2f499aef6f9c14a2b22872f3433a52bc
4
- data.tar.gz: b1f9d15ceb4ba725a31557017a1650359af17daeae30db2f0d2cca86f193a7b9
3
+ metadata.gz: ef4762edbead247433532ce39a4a655326a424caf6cc2fb93e11af0ed5b1e132
4
+ data.tar.gz: 395632d72dfa0383cf1e0abb3dfe976834785d8077e4582fbed7f6566efbcae8
5
5
  SHA512:
6
- metadata.gz: 6c24c35ed1a3fd220e14423164a1cba2697b01755341630bc35ea88c4080d8c9eff5c9167f29c67c68fcb42ebceec99b3fce471d66c4eed4a35b073e117473f8
7
- data.tar.gz: 5aec65172e6cff6b2b10594a3d7e20431132d68760bb07afdef6deb58ad31e9eeb27cf015678bc67078b29c47960366a61d16d8cf3aa7c6e776c8d7fa1a1d0f9
6
+ metadata.gz: 45b8fe38cb9060b0bf09f430cef6996dd0b83b53890305ed1d87a11c2ba7cbda7f0e1745d3231b78e42b22f2cf1c24ae8d43531f8323aaf3e61ca0ec702f4950
7
+ data.tar.gz: 6c2c5c1a9282675ea337a7837a0355e69ebdfb901f2a2fde318d0ef8da60944f5ad2ff8244d1e957cd3e6d0cb4d6eeb9c2efb7cf55ce5c4790e480f9dc46380b
data/.gitignore CHANGED
@@ -6,3 +6,4 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+ /hotwire_native_rails-*.gem
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?
@@ -0,0 +1,19 @@
1
+ # in the Native app, define absolute paths
2
+ # redirect these absolute paths to the correct controller actions based on context like
3
+ # current_user, current_organization, etc.
4
+ # redirect_to user_path(current_user) if current_user&.present?
5
+ class HotwireNative::TabsController < ActionController::Base
6
+ # def tab0
7
+ # redirect_to root_path
8
+ # end
9
+
10
+ def tab1
11
+ redirect_to organizations_path
12
+ end
13
+
14
+ def tab2
15
+ redirect_to edit_user_registration_path
16
+ end
17
+
18
+ # add more tabs (max 5)
19
+ end
@@ -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.4"
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.4
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yaro Shm
@@ -29,6 +29,7 @@ files:
29
29
  - hotwire_native_rails.gemspec
30
30
  - lib/generators/hotwire_native/hotwire_native_generator.rb
31
31
  - lib/generators/hotwire_native/templates/controllers/concerns/device_format.rb
32
+ - lib/generators/hotwire_native/templates/controllers/hotwire_native/tabs_controller.rb
32
33
  - lib/generators/hotwire_native/templates/controllers/hotwire_native/v1/android/path_configurations_controller.rb
33
34
  - lib/generators/hotwire_native/templates/controllers/hotwire_native/v1/ios/path_configurations_controller.rb
34
35
  - lib/generators/hotwire_native/templates/helpers/hotwire_native_helper.rb