hotwire_native_rails 0.4.0 → 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: ef4762edbead247433532ce39a4a655326a424caf6cc2fb93e11af0ed5b1e132
4
- data.tar.gz: 395632d72dfa0383cf1e0abb3dfe976834785d8077e4582fbed7f6566efbcae8
3
+ metadata.gz: f97c2f9c30c5a5dfd25c07123c9a525682c75cb0070dd73ad58c738a2520e7a9
4
+ data.tar.gz: 30165a99d3cb916c63fc452229069be475a167086a132ea272d04e139a4fee0e
5
5
  SHA512:
6
- metadata.gz: 45b8fe38cb9060b0bf09f430cef6996dd0b83b53890305ed1d87a11c2ba7cbda7f0e1745d3231b78e42b22f2cf1c24ae8d43531f8323aaf3e61ca0ec702f4950
7
- data.tar.gz: 6c2c5c1a9282675ea337a7837a0355e69ebdfb901f2a2fde318d0ef8da60944f5ad2ff8244d1e957cd3e6d0cb4d6eeb9c2efb7cf55ce5c4790e480f9dc46380b
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.5.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)
@@ -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()
@@ -2,6 +2,7 @@ import { BridgeComponent } from "@hotwired/hotwire-native-bridge"
2
2
  import { BridgeElement } from "@hotwired/hotwire-native-bridge"
3
3
  // aka Action Sheet
4
4
  // open a menu by clicking an HTML element
5
+ // Question - can I have multiple menus on the same page?
5
6
 
6
7
  // Source:
7
8
  // https://github.com/hotwired/hotwire-native-demo/blob/main/public/javascript/controllers/bridge/menu_controller.js
@@ -3,6 +3,12 @@ import { BridgeComponent, BridgeElement } from "@hotwired/hotwire-native-bridge"
3
3
 
4
4
  // Docs:
5
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 %>
6
12
  export default class extends BridgeComponent {
7
13
  static component = "nav"
8
14
  static targets = ["item"]
@@ -7,6 +7,17 @@ import { BridgeComponent } from "@hotwired/hotwire-native-bridge"
7
7
  // Docs:
8
8
  // https://blog.corsego.com/hotwire-native-bridge-menu-component
9
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>
10
21
  export default class extends BridgeComponent {
11
22
  static component = "overflow-menu"
12
23
 
@@ -2,6 +2,7 @@ import { BridgeComponent } from "@hotwired/hotwire-native-bridge"
2
2
  // Docs:
3
3
  // https://blog.corsego.com/hotwire-native-leave-a-review-bridge-component
4
4
 
5
+ // Example:
5
6
  // <meta data-controller="bridge--review-prompt" />
6
7
  export default class extends BridgeComponent {
7
8
  static component = "review-prompt"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module HotwireNativeRails
4
- VERSION = "0.4.0"
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.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yaro Shm