hotwire_native_rails 0.3.5 → 0.4.1

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: f97c2f9c30c5a5dfd25c07123c9a525682c75cb0070dd73ad58c738a2520e7a9
4
+ data.tar.gz: 30165a99d3cb916c63fc452229069be475a167086a132ea272d04e139a4fee0e
5
5
  SHA512:
6
- metadata.gz: 7015cdfc3fa0344936ca9fec047504404b545eb79c11a6a9614c411fdba1bdb512376f9d7fcd9c9954bb0345ecf68fbfc1bd023d453bfe3dbc41cffc13056275
7
- data.tar.gz: 261be6fef738aa329d964c081fb452caae2a5b930aa7631e39721a69a39111d3bbe3849b05650f69b42da621b47a4928ddf176586208e5d7373b645893fee67b
6
+ metadata.gz: aa950e7ed3f06c09efe76c941fc6e5a526abc94ba4fb4c68f6a5debeaeb23a03dfbe4090acd9cd459a4a0acf7619933f075b859134fe29dbd891210adae305b5
7
+ data.tar.gz: c8aec60e28771debaae4d2065d2c9c38931c7d164b39f400534e76343f9d00861487ca45bee58a2ee7239e22372430c6027053529c9c030f38fb32fd6ea252a3
data/README.md CHANGED
@@ -24,7 +24,7 @@ Recommended to use with [my fork of iOS Hotwire Native starter app](https://gith
24
24
  - `viewport_meta_tag` - forbid zooming on mobile/native
25
25
  - use `data: { turbo_action: replace_if_native }` to submit authentication forms & forms in modals
26
26
  - `:mobile` request variant. `index.html+mobile.erb`
27
- - override link_to to not open internal links in in-app browser on native app
27
+ - override `link_to` to not open internal links in in-app browser on native app
28
28
  - conditionally override page `<title>` for native apps
29
29
 
30
30
  #### CSS
@@ -33,11 +33,13 @@ Recommended to use with [my fork of iOS Hotwire Native starter app](https://gith
33
33
  #### Bridge Components
34
34
  - install Hotwire Native Bridge (works with Importmaps and Node)
35
35
  - add default bridge components (`Form`, `Menu`, `Button`)
36
- - add `Nav` (UIMenu) bridge component
36
+ - add `Nav` (UIMenu) component
37
+ - add `Review Prompt` component
37
38
  - `bridge_form_with` - easily apply Bridge `Form` component
38
39
 
39
40
  #### Path Configuration
40
41
  - `path_configuration_controller` for `ios` and `android`
42
+ - Tabs controller - re-route native tabs
41
43
 
42
44
  ## Development
43
45
 
@@ -54,7 +56,7 @@ Make a release to rubygems:
54
56
  # 2. zip the gem
55
57
  gem build hotwire_native_rails.gemspec
56
58
  # 3. push the zip to rubygems
57
- gem push hotwire_native_rails-0.3.3.gem
59
+ gem push hotwire_native_rails-0.4.0.gem
58
60
  ```
59
61
 
60
62
  - [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] ||= {}
@@ -3,6 +3,27 @@ import { BridgeComponent } from "@hotwired/hotwire-native-bridge"
3
3
  // https://native.hotwired.dev/ios/bridge-components
4
4
  // Docs:
5
5
  // https://blog.corsego.com/hotwire-native-bridge-button
6
+
7
+ // Example:
8
+ // Text button:
9
+ // <a href="/posts" data-controller="bridge--button" data-bridge-title="Posts">
10
+ // Posts
11
+ // </a>
12
+ //
13
+ // Icon button:
14
+ // <a href="/posts" data-controller="bridge--button" data-bridge-title="Posts" data-bridge-ios-image="play.circle">
15
+ // Posts
16
+ // </a>
17
+ //
18
+ // Icon button on the left (right by default):
19
+ // <a href="/posts" data-controller="bridge--button" data-bridge-title="Posts" data-bridge-ios-image="play.circle" data-bridge-side="left">
20
+ // Posts
21
+ // </a>
22
+ //
23
+ // Text with a click event:
24
+ // <div data-controller="bridge--button" data-bridge-title="Search" data-bridge-ios-image="magnifyingglass.circle" class="hidden" data-action="click->dialog#open">
25
+ // Search
26
+ // </div>
6
27
  export default class extends BridgeComponent {
7
28
  static component = "button"
8
29
 
@@ -13,7 +34,7 @@ export default class extends BridgeComponent {
13
34
  const title = element.bridgeAttribute("title")
14
35
  const image = element.bridgeAttribute("ios-image")
15
36
  const side = element.bridgeAttribute("side") || "right"
16
- this.send("connect", {title, image, side}, () => {
37
+ this.send("connect", { title, image, side }, () => {
17
38
  this.element.click()
18
39
  })
19
40
  }
@@ -4,9 +4,11 @@ import { BridgeElement } from "@hotwired/hotwire-native-bridge"
4
4
  // https://github.com/hotwired/hotwire-native-demo/blob/main/public/javascript/controllers/bridge/form_controller.js
5
5
  // Docs:
6
6
  // https://blog.corsego.com/hotwire-native-form-component
7
+
8
+ // Replace form_with with bridge_form_with
7
9
  export default class extends BridgeComponent {
8
10
  static component = "form"
9
- static targets = [ "submit" ]
11
+ static targets = ["submit"]
10
12
 
11
13
  connect() {
12
14
  super.connect()
@@ -1,12 +1,16 @@
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
+ // Question - can I have multiple menus on the same page?
6
+
3
7
  // Source:
4
8
  // https://github.com/hotwired/hotwire-native-demo/blob/main/public/javascript/controllers/bridge/menu_controller.js
5
9
  // Docs:
6
10
  // https://blog.corsego.com/hotwire-native-bridge-menu-component
7
11
  export default class extends BridgeComponent {
8
12
  static component = "menu"
9
- static targets = [ "title", "item" ]
13
+ static targets = ["title", "item"]
10
14
 
11
15
  show(event) {
12
16
  if (this.enabled) {
@@ -19,7 +23,7 @@ export default class extends BridgeComponent {
19
23
  const title = new BridgeElement(this.titleTarget).title
20
24
  const items = this.makeMenuItems(this.itemTargets)
21
25
 
22
- this.send("display", { title, items }, message => {
26
+ this.send("display", { title, items }, message => {
23
27
  const selectedIndex = message.data.selectedIndex
24
28
  const selectedItem = new BridgeElement(this.itemTargets[selectedIndex])
25
29
 
@@ -1,7 +1,14 @@
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
6
+
7
+ // Example:
8
+ // <%= tag.div data: { controller: 'bridge--nav', bridge_side: 'left', bridge_image: 'person.circle' } do %>
9
+ // <%= link_to "Users", users_path, data: { bridge__nav_target: 'item', bridge_image: 'person.circle' } %>
10
+ // <%= link_to "Tasks", tasks_path, data: { bridge__nav_target: 'item', bridge_image: 'checklist' } %>
11
+ // <% end %>
5
12
  export default class extends BridgeComponent {
6
13
  static component = "nav"
7
14
  static targets = ["item"]
@@ -1,9 +1,23 @@
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:
5
8
  // https://blog.corsego.com/hotwire-native-bridge-menu-component
6
9
 
10
+ // Example:
11
+ // <div data-controller="bridge--menu" class="hotwire-native:hidden">
12
+ // <button
13
+ // data-controller="bridge--overflow-menu"
14
+ // data-action="click->bridge--menu#show click->menu#show">
15
+ // Open Menu
16
+ // </button>
17
+ // <p data-bridge--menu-target="title">Select an option</p>
18
+ // <%= link_to "Edit", edit_task_path(@task), data: {"bridge--menu-target": "item"} %>
19
+ // <%= button_to "Destroy", @task, method: :delete, data: {"bridge--menu-target": "item", turbo_confirm: "Are you sure?" } %>
20
+ // </div>
7
21
  export default class extends BridgeComponent {
8
22
  static component = "overflow-menu"
9
23
 
@@ -1,6 +1,9 @@
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
+ // Example:
6
+ // <meta data-controller="bridge--review-prompt" />
4
7
  export default class extends BridgeComponent {
5
8
  static component = "review-prompt"
6
9
 
@@ -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.1"
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.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yaro Shm